.post-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.post-modal-content {
    background: #fff;
    width: 90%;
    max-width: 400px;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.post-modal-content .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    transition: color 0.2s;
}

.post-modal-content .close-btn:hover {
    color: #1AB759;
}

.post-modal-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 20px;
}

.postcode-input-wrapper {
    margin-bottom: 20px;
}

.postcode-input-wrapper label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.postcode-input-wrapper input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 2px solid #D9DBE9;
    border-radius: 10px;
    font-size: 16px;
    color: #333;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.postcode-input-wrapper input:focus {
    border-color: #1AB759;
    box-shadow: 0 0 0 3px rgba(26, 183, 89, 0.2);
}

.postcode-input-wrapper .error {
    color: #E53E3E;
    font-size: 12px;
    margin-top: 8px;
    min-height: 16px;
}

.post-modal-content button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #1AB759, #34D399);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.post-modal-content button:hover {
    background: linear-gradient(to right, #34D399, #1AB759);
}

.post-modal-content button .material-icons-round {
    font-size: 20px;
}

.remaining-amount {
    color: #A80202;
    font-weight: 900;
}

/* Select Area */
.area-select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cfcfcf;
  border-radius: 5px;
  background: #fcfcfc;
  font-size: 1rem;
  color: #222;
  margin-top: 8px;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}

.area-select:focus {
  outline: none;
  border-color: #3b82f6;
  background: #f0f8ff;
}

.area-select option {
  background: #fff;
  color: #222;
}

/* Shipinfo.php  Area */
.mtship-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.mtship-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.mtship-modal-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.mtship-modal-message {
    font-size: 1rem;
    margin-bottom: 20px;
}
.mtship-modal-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.mtship-modal-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}
.mtship-modal-close-button {
    background: #ccc;
    color: #333;
}
.mtship-modal-close-button:hover {
    background: #aaa;
}
.mtship-modal-continue-button {
    background: #1AB759;
    color: white;
}
.mtship-modal-continue-button:hover {
    background: #15944a;
}
.mtship-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-pickup-notice {
  margin: 16px 0 0;
  padding: 14px 16px;
  background: #fff3cd; /* uyarı sarısı */
  color: #7a4900;
  border: 1px solid #fde68a;
  border-left: 6px solid #f59e0b;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.2);
}

.cart-pickup-notice::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  background: #f59e0b;
  color: #fff;
  border-radius: 50%;
  font-weight: 900;
}

.cart-pickup-notice .pickup-label {
  background: #111827;
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
  margin: 0 6px;
  font-weight: 800;
  letter-spacing: 0.5px;
}