/* ══ MAHATATTVA — WOOCOMMERCE CHECKOUT STYLING ══ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,600&family=Lora:ital,wght@0,400;0,500;1,400&display=swap');

/* ── Page background ── */
.woocommerce-page, .woocommerce-checkout {
  background: #FDF6EF !important;
  font-family: 'Lora', Georgia, serif !important;
}

/* ── Page heading ── */
.woocommerce-checkout h1,
.woocommerce-checkout h2,
.woocommerce-checkout h3 {
  font-family: 'Playfair Display', serif !important;
  color: #0C0C0C !important;
}

/* ── Form section headings ── */
.woocommerce h3#order_review_heading,
.woocommerce-checkout #customer_details h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.3rem !important;
  color: #0C0C0C !important;
  padding-bottom: 12px !important;
  border-bottom: 2px solid rgba(128,0,32,0.15) !important;
  margin-bottom: 24px !important;
}

/* ── Form labels ── */
.woocommerce-checkout label,
.woocommerce-checkout .woocommerce-input-wrapper label {
  font-family: 'Lora', serif !important;
  font-size: 0.85rem !important;
  color: #4A2020 !important;
  letter-spacing: 0.3px !important;
}

/* ── All input fields ── */
.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout input[type="password"],
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  font-family: 'Lora', serif !important;
  font-size: 0.93rem !important;
  color: #1C0A0A !important;
  background: #fff !important;
  border: 1px solid rgba(128,0,32,0.2) !important;
  border-radius: 3px !important;
  padding: 13px 16px !important;
  transition: border-color 0.22s, box-shadow 0.22s !important;
}
.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
  border-color: #800020 !important;
  box-shadow: 0 0 0 3px rgba(128,0,32,0.08) !important;
  outline: none !important;
}

/* ── Order summary box ── */
.woocommerce-checkout-review-order {
  background: #fff !important;
  border: 1px solid rgba(128,0,32,0.13) !important;
  border-radius: 8px !important;
  padding: 28px !important;
  box-shadow: 0 4px 24px rgba(128,0,32,0.07) !important;
}

/* ── Order table ── */
.woocommerce-checkout table.shop_table {
  border: none !important;
  font-family: 'Lora', serif !important;
}
.woocommerce-checkout table.shop_table th {
  font-family: 'Playfair Display', serif !important;
  color: #0C0C0C !important;
  font-size: 0.9rem !important;
  border-bottom: 2px solid rgba(128,0,32,0.12) !important;
  padding: 10px 0 !important;
}
.woocommerce-checkout table.shop_table td {
  font-size: 0.93rem !important;
  color: #4A2020 !important;
  border-bottom: 1px solid rgba(128,0,32,0.07) !important;
  padding: 12px 0 !important;
}
.woocommerce-checkout table.shop_table .order-total td,
.woocommerce-checkout table.shop_table .order-total th {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.1rem !important;
  color: #800020 !important;
  font-weight: 700 !important;
  border-top: 2px solid rgba(128,0,32,0.15) !important;
}

/* ── Coupon / promo section ── */
.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout .checkout_coupon {
  background: #FAF0E8 !important;
  border: 1px solid rgba(128,0,32,0.13) !important;
  border-radius: 4px !important;
  padding: 16px 20px !important;
  font-family: 'Lora', serif !important;
  font-size: 0.9rem !important;
  color: #4A2020 !important;
}

/* ── Place order button ── */
#place_order,
.woocommerce-checkout #place_order {
  background: #800020 !important;
  color: #fff !important;
  font-family: 'Lora', serif !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  padding: 16px 32px !important;
  border: none !important;
  border-radius: 3px !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: background 0.25s, transform 0.22s, box-shadow 0.22s !important;
}
#place_order:hover {
  background: #540015 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(128,0,32,0.35) !important;
}

/* ── Payment method section ── */
.woocommerce-checkout #payment {
  background: #fff !important;
  border: 1px solid rgba(128,0,32,0.13) !important;
  border-radius: 6px !important;
  font-family: 'Lora', serif !important;
}
.woocommerce-checkout #payment ul.payment_methods {
  border-bottom: 1px solid rgba(128,0,32,0.1) !important;
}
.woocommerce-checkout #payment ul.payment_methods li label {
  font-size: 0.93rem !important;
  color: #1C0A0A !important;
}
.woocommerce-checkout #payment div.payment_box {
  background: #FDF6EF !important;
  color: #4A2020 !important;
  font-size: 0.88rem !important;
}
.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: #FDF6EF !important;
}

/* ── Error / notice messages ── */
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-info {
  font-family: 'Lora', serif !important;
  border-top-color: #800020 !important;
  font-size: 0.9rem !important;
}

/* ── Form row spacing ── */
.woocommerce-checkout .form-row {
  margin-bottom: 14px !important;
}

/* ── Required star ── */
.woocommerce-checkout .required {
  color: #800020 !important;
}

/* ── Validation error highlight ── */
.woocommerce-checkout .woocommerce-invalid input {
  border-color: #c0392b !important;
}
.woocommerce-checkout .woocommerce-validated input {
  border-color: #800020 !important;
}










.woocommerce img, .woocommerce-page img {
    height: auto;
    max-width: 40%;
}



.wcf-embed-checkout-form .woocommerce-checkout .col2-set, .wcf-embed-checkout-form .woocommerce-checkout .wcf-col2-set
{
	width: 100%;
}


.woocommerce img, .woocommerce-page img {
    height: auto;
    max-width: 80%;
}