/* Mitti Aura forced COD / prepaid checkout */
.ma-checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 10, 0.65);
  z-index: 999999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 12px;
  overflow: auto;
}
.ma-checkout-modal {
  width: min(620px, 100%);
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  font-family: Manrope, Arial, sans-serif;
  color: #332015;
}
.ma-checkout-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: #fffdf7;
  border-bottom: 1px solid #ead7ad;
}
.ma-checkout-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 800;
  color: #3d281b;
}
.ma-checkout-close {
  border: 0;
  background: #fff4da;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 24px;
  cursor: pointer;
}
.ma-offer-bar {
  background: #f7b7d9;
  color: #111;
  text-align: center;
  font-weight: 900;
  padding: 9px 12px;
}
.ma-checkout-body {
  padding: 16px;
}
.ma-summary-card,
.ma-section-card {
  border: 1px solid #ead7ad;
  border-radius: 18px;
  background: #fffdf8;
  margin-bottom: 13px;
  padding: 15px;
}
.ma-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 7px 0;
}
.ma-summary-row.total {
  font-size: 22px;
  font-weight: 900;
  border-top: 1px solid #ead7ad;
  padding-top: 12px;
  margin-top: 12px;
}
.ma-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ma-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ma-field label {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7b5420;
}
.ma-field input,
.ma-field textarea {
  border: 1px solid #dec89e;
  border-radius: 12px;
  padding: 12px;
  font: inherit;
  background: #fff;
  color: #332015;
  box-sizing: border-box;
  width: 100%;
}
.ma-field textarea {
  min-height: 72px;
  resize: vertical;
}
.ma-payment-options {
  display: grid;
  gap: 10px;
}
.ma-pay-option {
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1.5px solid #bdf3bf;
  border-radius: 18px;
  padding: 14px;
  cursor: pointer;
  background: #fff;
}
.ma-pay-option.active {
  border-color: #b07a14;
  background: #fff7e1;
}
.ma-pay-icon {
  font-size: 26px;
  width: 38px;
  text-align: center;
}
.ma-pay-main {
  flex: 1;
}
.ma-pay-title {
  font-size: 18px;
  font-weight: 900;
}
.ma-pay-sub {
  font-size: 14px;
  color: #777;
  margin-top: 2px;
}
.ma-pay-price {
  font-size: 18px;
  font-weight: 900;
}
.ma-checkout-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 16px;
  background: #fffdf7;
  border-top: 1px solid #ead7ad;
}
.ma-place-btn {
  flex: 1;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #263109, #9a660f, #d7a847);
  color: #fff;
  padding: 15px 20px;
  font-weight: 900;
  font-size: 18px;
  cursor: pointer;
}
.ma-sec-btn {
  border: 1px solid #dec89e;
  border-radius: 999px;
  background: #fff;
  padding: 13px 17px;
  font-weight: 900;
  cursor: pointer;
}
.ma-checkout-msg {
  display: none;
  margin: 12px 16px;
  padding: 12px;
  border-radius: 14px;
  background: #fff4d7;
  border: 1px solid #ead7ad;
}
@media (max-width: 680px) {
  .ma-field-grid {
    grid-template-columns: 1fr;
  }
  .ma-checkout-modal {
    border-radius: 20px;
  }
  .ma-pay-title {
    font-size: 16px;
  }
}
