/* =============================================================================
   NGONACHI FERTILITY HERBAL STORE — Design System
   Deep emerald green + warm cream + metallic gold. Premium, elegant, mobile-first.
   ============================================================================= */

:root {
  --primary: #064E3B;
  --primary-dark: #022C22;
  --primary-light: #0B6B52;
  --secondary: #D4AF37;
  --gold-dark: #B8860B;
  --cream: #FAF7EF;
  --white: #FFFFFF;
  --text-dark: #1F2937;
  --muted: #6B7280;
  --danger: #DC2626;
  --success: #16A34A;
  --border: #E7E1D2;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(6, 78, 59, 0.08);
  --shadow-sm: 0 4px 12px rgba(6, 78, 59, 0.06);
  --font: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--cream);
  font-size: 15px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container-app {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ---------- Buttons ---------- */
.btn-brand {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: .7rem 1.6rem;
  font-weight: 600;
  transition: background .2s ease, transform .15s ease;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-brand:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); }
.btn-gold {
  background: var(--secondary);
  color: var(--primary-dark);
  border: none;
  border-radius: var(--radius-sm);
  padding: .7rem 1.6rem;
  font-weight: 700;
}
.btn-gold:hover { background: var(--gold-dark); color: #fff; }
.btn-outline-brand {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  border-radius: var(--radius-sm);
  padding: .65rem 1.5rem;
  font-weight: 600;
}
.btn-outline-brand:hover { background: var(--primary); color: #fff; }

/* ---------- Top announcement bar ---------- */
.topbar {
  background: var(--primary-dark);
  color: #f5f0e0;
  font-size: .8rem;
  padding: .45rem 0;
}
.topbar a { color: #f5f0e0; opacity: .9; }
.topbar a:hover { opacity: 1; text-decoration: underline; }

/* ---------- Header ---------- */
.site-header { background: var(--white); border-bottom: 1px solid var(--border); }
.brand-logo { display: flex; align-items: center; gap: .6rem; }
.brand-logo .leaf { font-size: 2rem; line-height: 1; }
.brand-logo .brand-text { line-height: 1.15; }
.brand-logo .brand-text .name-line1 { font-weight: 800; color: var(--primary-dark); font-size: 1.05rem; letter-spacing: .02em; display: block; }
.brand-logo .brand-text .name-line2 { font-weight: 800; color: var(--primary); font-size: .78rem; letter-spacing: .08em; display: block; }
.brand-logo .brand-text .tagline { color: var(--gold-dark); font-size: .68rem; font-weight: 600; display: block; }

.search-form { position: relative; }
.search-form select.category-select {
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  background: #f4f1e8;
  font-size: .85rem;
  padding: 0 .5rem;
  max-width: 150px;
}
.search-form input[type="search"] {
  border: 1px solid var(--border);
  border-left: none;
  border-right: none;
  padding: .6rem .9rem;
}
.search-form button {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0 1.1rem;
}
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: var(--shadow);
  z-index: 60;
  max-height: 380px;
  overflow-y: auto;
  display: none;
}
.search-suggestions.show { display: block; }
.search-suggestions .suggestion-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem .8rem;
  border-bottom: 1px solid #f2eee0;
}
.search-suggestions .suggestion-item:hover { background: var(--cream); }
.search-suggestions .suggestion-item img { width: 40px; height: 40px; object-fit: cover; border-radius: 6px; }

.header-icon-btn {
  position: relative;
  color: var(--primary-dark);
  font-size: 1.35rem;
  padding: .25rem .5rem;
}
.header-icon-btn .badge-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--secondary);
  color: var(--primary-dark);
  font-size: .62rem;
  font-weight: 800;
  border-radius: 999px;
  min-width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* ---------- Main nav ---------- */
.main-nav { background: var(--primary); }
.main-nav .nav-link-item {
  color: #eafaf3;
  padding: .75rem 1rem;
  font-size: .88rem;
  font-weight: 600;
  display: inline-block;
}
.main-nav .nav-link-item:hover { color: var(--secondary); }
.main-nav .categories-toggle {
  background: var(--primary-dark);
  font-weight: 700;
}
.main-nav .whatsapp-nav-btn {
  background: #25D366;
  color: #fff !important;
  border-radius: 999px;
  padding: .4rem 1rem !important;
  margin: .35rem 0;
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-top: 3px solid var(--secondary);
  box-shadow: var(--shadow);
  z-index: 50;
  display: none;
  padding: 1.25rem 0;
}
.mega-menu.show { display: block; }
.mega-menu a { color: var(--text-dark); display: block; padding: .3rem 0; font-size: .9rem; }
.mega-menu a:hover { color: var(--primary); font-weight: 600; }

/* ---------- Hero ---------- */
.hero-slide {
  background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 60%);
  color: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 380px;
}
.hero-slide .hero-content { padding: 3rem 2.5rem; max-width: 560px; position: relative; z-index: 2; }
.hero-slide h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: .75rem; }
.hero-slide p.subtitle { color: #dff5ea; font-size: 1.05rem; margin-bottom: 1.25rem; }
.hero-trust-points { list-style: none; padding: 0; margin: 1.25rem 0; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-trust-points li { font-size: .82rem; color: #eafaf3; display: flex; align-items: center; gap: .4rem; }
.hero-slide .hero-image {
  position: absolute; right: 0; top: 0; bottom: 0; width: 45%;
  background-size: cover; background-position: center;
  opacity: .35;
}
@media (min-width: 992px) { .hero-slide .hero-image { opacity: .9; } }
.hero-dots { display: flex; gap: .4rem; justify-content: center; margin-top: 1rem; }
.hero-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: #d8d2c2; padding: 0; }
.hero-dots button.active { background: var(--primary); width: 22px; border-radius: 5px; }

/* ---------- Section headings ---------- */
.section-heading { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1.25rem; }
.section-heading h2 { font-weight: 800; color: var(--primary-dark); font-size: 1.4rem; margin: 0; }
.section-heading .view-all { color: var(--gold-dark); font-weight: 700; font-size: .85rem; }

/* ---------- Category cards ---------- */
.category-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  padding: 1.25rem .75rem;
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
  border: 1px solid var(--border);
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--secondary); }
.category-card .cat-icon-wrap {
  width: 62px; height: 62px; border-radius: 50%; background: var(--cream);
  display: flex; align-items: center; justify-content: center; margin: 0 auto .75rem;
  font-size: 1.6rem; color: var(--primary);
  overflow: hidden;
}
.category-card .cat-icon-wrap img { width: 100%; height: 100%; object-fit: cover; }
.category-card .cat-name { font-weight: 700; font-size: .88rem; color: var(--text-dark); }

/* ---------- Promo banners ---------- */
.promo-banner {
  border-radius: var(--radius);
  padding: 1.75rem;
  color: #fff;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.promo-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2,44,34,.15), rgba(2,44,34,.85)); }
.promo-banner .promo-content { position: relative; z-index: 2; }
.promo-banner h3 { font-weight: 800; font-size: 1.15rem; margin-bottom: .25rem; }
.promo-banner p { font-size: .85rem; margin: 0; color: #eafaf3; }

/* ---------- Product cards ---------- */
.product-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  height: 100%;
  transition: box-shadow .2s ease, transform .2s ease;
  position: relative;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.product-card .product-thumb { position: relative; aspect-ratio: 1 / 1; background: #f4f1e8; overflow: hidden; }
.product-card .product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-card .badge-discount {
  position: absolute; top: .6rem; left: .6rem; background: var(--danger); color: #fff;
  font-size: .7rem; font-weight: 800; padding: .2rem .5rem; border-radius: 999px;
}
.product-card .badge-new {
  position: absolute; top: .6rem; left: .6rem; background: var(--primary); color: #fff;
  font-size: .68rem; font-weight: 800; padding: .2rem .5rem; border-radius: 999px;
}
.product-card .wishlist-btn {
  position: absolute; top: .5rem; right: .5rem; background: #fff; border-radius: 50%;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); color: var(--muted);
}
.product-card .wishlist-btn:hover, .product-card .wishlist-btn.active { color: var(--danger); border-color: var(--danger); }
.product-card .product-body { padding: .85rem .9rem 1rem; }
.product-card .product-cat { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.product-card .product-title {
  font-weight: 700; font-size: .92rem; color: var(--text-dark); margin: .2rem 0 .4rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.5em;
}
.product-card .stars { color: var(--secondary); font-size: .78rem; }
.product-card .price-row { display: flex; align-items: baseline; gap: .5rem; margin: .35rem 0; }
.product-card .price-now { font-weight: 800; color: var(--primary); font-size: 1.02rem; }
.product-card .price-old { color: var(--muted); text-decoration: line-through; font-size: .82rem; }
.product-card .stock-note { font-size: .74rem; color: var(--success); }
.product-card .stock-note.out { color: var(--danger); }
.product-card .add-cart-btn {
  width: 100%; margin-top: .5rem; background: var(--primary); color: #fff; border: none;
  border-radius: var(--radius-sm); padding: .55rem; font-weight: 700; font-size: .85rem;
}
.product-card .add-cart-btn:hover { background: var(--primary-dark); }
.product-card .add-cart-btn:disabled { background: #cbd5d1; cursor: not-allowed; }

/* ---------- Flash deal countdown ---------- */
.countdown-timer { display: flex; gap: .4rem; }
.countdown-timer .cd-box {
  background: var(--primary-dark); color: #fff; border-radius: 6px; padding: .3rem .5rem;
  font-weight: 800; font-size: .85rem; min-width: 40px; text-align: center;
}
.countdown-timer .cd-sep { color: var(--muted); font-weight: 700; }

/* ---------- Trust benefits ---------- */
.trust-item { text-align: center; padding: 1rem; }
.trust-item .trust-icon { font-size: 1.9rem; color: var(--primary); margin-bottom: .5rem; }
.trust-item h4 { font-size: .88rem; font-weight: 700; margin-bottom: .2rem; }
.trust-item p { font-size: .78rem; color: var(--muted); margin: 0; }

/* ---------- Newsletter ---------- */
.newsletter-section { background: var(--primary); color: #fff; border-radius: var(--radius); padding: 2rem; }
.newsletter-section h3 { font-weight: 800; }
.newsletter-section input[type="email"] { border-radius: var(--radius-sm); border: none; padding: .7rem 1rem; }
.newsletter-section button { border-radius: var(--radius-sm); }

/* ---------- Footer ---------- */
.site-footer { background: var(--primary-dark); color: #cfe8dd; margin-top: 3rem; }
.site-footer h5 { color: #fff; font-weight: 700; font-size: .95rem; margin-bottom: 1rem; }
.site-footer a { color: #cfe8dd; font-size: .87rem; display: block; margin-bottom: .5rem; }
.site-footer a:hover { color: var(--secondary); }
.site-footer .footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1rem 0; font-size: .8rem; color: #9db8ac; }
.social-icons a { display: inline-flex; width: 34px; height: 34px; background: rgba(255,255,255,.08); border-radius: 50%; align-items: center; justify-content: center; margin-right: .5rem; }
.social-icons a:hover { background: var(--secondary); color: var(--primary-dark) !important; }

/* ---------- Floating buttons ---------- */
.whatsapp-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 1000;
  background: #25D366; color: #fff; width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.whatsapp-float:hover { color: #fff; transform: scale(1.06); }
.back-to-top {
  position: fixed; bottom: 22px; left: 22px; z-index: 1000;
  background: var(--primary); color: #fff; width: 46px; height: 46px; border-radius: 50%;
  display: none; align-items: center; justify-content: center; font-size: 1.2rem; border: none;
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
}
.back-to-top.show { display: flex; }

.mobile-sticky-cart {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900; background: #fff;
  border-top: 1px solid var(--border); padding: .6rem 1rem; box-shadow: 0 -4px 12px rgba(0,0,0,.08);
  display: flex; gap: .6rem; align-items: center;
}

/* ---------- Toasts ---------- */
.toast-stack { position: fixed; top: 90px; right: 16px; z-index: 1100; display: flex; flex-direction: column; gap: .5rem; }

/* ---------- Skeleton loading ---------- */
.skeleton { background: linear-gradient(90deg, #eee7d6 25%, #f5f0e2 37%, #eee7d6 63%); background-size: 400% 100%; animation: skeleton-loading 1.4s ease infinite; border-radius: 6px; }
@keyframes skeleton-loading { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }

/* ---------- Focus states (accessibility) ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
}

/* ---------- Breadcrumb ---------- */
.brand-breadcrumb { font-size: .82rem; color: var(--muted); margin-bottom: 1rem; }
.brand-breadcrumb a { color: var(--primary); }
.brand-breadcrumb a:hover { text-decoration: underline; }

/* ---------- Empty states ---------- */
.empty-state { text-align: center; padding: 3rem 1rem; color: var(--muted); }
.empty-state .empty-icon { font-size: 3rem; margin-bottom: 1rem; opacity: .5; }

/* ---------- Product detail page ---------- */
.product-gallery { position: sticky; top: 1rem; }
.gallery-main {
  position: relative; aspect-ratio: 1 / 1; background: #f4f1e8; border-radius: var(--radius);
  overflow: hidden; cursor: zoom-in;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.gallery-main.zoomed img { transform: scale(1.8); }
.gallery-badge { position: absolute; top: .75rem; left: .75rem; z-index: 2; }
.gallery-thumbs { display: flex; gap: .6rem; margin-top: .75rem; flex-wrap: wrap; }
.gallery-thumb {
  width: 68px; height: 68px; padding: 0; border-radius: var(--radius-sm); overflow: hidden;
  border: 2px solid var(--border); background: #f4f1e8; cursor: pointer;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--primary); }

.product-info-panel .product-cat { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: .35rem; }
.product-title-lg { font-size: 1.6rem; font-weight: 800; color: var(--text-dark); margin-bottom: .5rem; }
.stars, .stars-lg { color: var(--secondary); }
.stars-lg { font-size: 1.4rem; }
.price-row-lg { display: flex; align-items: baseline; gap: .75rem; flex-wrap: wrap; }
.price-now-lg { font-size: 1.9rem; font-weight: 800; color: var(--primary); }
.price-old-lg { font-size: 1.1rem; color: var(--muted); text-decoration: line-through; }
.badge-discount-inline { background: var(--danger); color: #fff; font-size: .75rem; font-weight: 700; padding: .2rem .55rem; border-radius: 999px; }
.stock-note-lg { font-size: .88rem; font-weight: 700; color: var(--success); margin-bottom: .5rem; }
.stock-note-lg.out { color: var(--danger); }

.variant-selectors .form-select { max-width: 260px; }

.add-cart-btn-lg {
  background: var(--primary); color: #fff; border: none; border-radius: var(--radius-sm);
  padding: .8rem 2rem; font-weight: 700; flex: 1 1 auto; min-width: 180px;
}
.add-cart-btn-lg:hover { background: var(--primary-dark); }
.add-cart-btn-lg:disabled { background: #cbd5d1; cursor: not-allowed; }
.wishlist-btn-lg {
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--border); background: #fff;
  color: var(--muted); font-size: 1.3rem; flex-shrink: 0;
}
.wishlist-btn-lg:hover, .wishlist-btn-lg.active { color: var(--danger); border-color: var(--danger); }

.whatsapp-inquiry-link { display: inline-block; color: #25D366; font-weight: 600; font-size: .9rem; text-decoration: none; }
.whatsapp-inquiry-link:hover { text-decoration: underline; }

.product-meta-list { list-style: none; padding: 0; font-size: .86rem; color: var(--muted); }
.product-meta-list li { margin-bottom: .4rem; }

.product-tabs .nav-tabs { border-bottom: 2px solid var(--border); }
.product-tabs .nav-link {
  color: var(--muted); font-weight: 700; border: none; border-bottom: 3px solid transparent;
  border-radius: 0; padding: .85rem 1.25rem;
}
.product-tabs .nav-link.active { color: var(--primary); border-bottom-color: var(--primary); background: transparent; }
.product-tabs .tab-content { background: #fff; border-color: var(--border) !important; }

.rating-summary-box { background: var(--cream); border-radius: var(--radius); }
.review-item:last-child { border-bottom: none !important; }
.badge-verified { background: var(--success); color: #fff; font-size: .68rem; font-weight: 700; padding: .15rem .5rem; border-radius: 999px; margin-left: .4rem; }
.admin-response-box { background: var(--cream); border-radius: var(--radius-sm); border-left: 3px solid var(--primary); }

.star-rating-input { display: inline-flex; flex-direction: row-reverse; gap: .15rem; }
.star-rating-input input { position: absolute; opacity: 0; pointer-events: none; }
.star-rating-input label { font-size: 1.7rem; color: #d8d2c2; cursor: pointer; line-height: 1; }
.star-rating-input input:checked ~ label,
.star-rating-input label:hover,
.star-rating-input label:hover ~ label { color: var(--secondary); }

/* ---------- Account area ---------- */
.account-page-title { font-size: 1.4rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 1rem; }
.account-sidebar { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: .75rem; display: flex; flex-direction: column; }
.account-sidebar-link {
  display: block; padding: .65rem .9rem; border-radius: var(--radius-sm); color: var(--text-dark);
  font-weight: 600; font-size: .88rem; border: none; background: none; text-align: left; width: 100%;
}
.account-sidebar-link:hover { background: var(--cream); }
.account-sidebar-link.active { background: var(--primary); color: #fff; }
.account-sidebar-logout { color: var(--danger); }
.account-sidebar-logout:hover { background: #fdecec; }

.account-stat-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 1.25rem; text-align: center; }
.account-stat-value { font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.account-stat-label { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .03em; }

.order-status-badge {
  display: inline-block; padding: .25rem .65rem; border-radius: 999px; font-size: .72rem; font-weight: 700;
  background: #eef2f7; color: #475569; text-transform: capitalize;
}
.order-status-badge.status-paid, .order-status-badge.status-delivered, .order-status-badge.status-completed { background: #dcfce7; color: #15803d; }
.order-status-badge.status-pending, .order-status-badge.status-unpaid, .order-status-badge.status-awaiting_payment { background: #fef3c7; color: #92400e; }
.order-status-badge.status-cancelled, .order-status-badge.status-failed, .order-status-badge.status-refunded { background: #fee2e2; color: #b91c1c; }
.order-status-badge.status-processing, .order-status-badge.status-packed, .order-status-badge.status-shipped, .order-status-badge.status-out_for_delivery, .order-status-badge.status-under_review, .order-status-badge.status-payment_under_review { background: #dbeafe; color: #1d4ed8; }

.address-card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.1rem; height: 100%; }
.address-card.is-default { border-color: var(--secondary); }
.address-card .badge-verified { position: absolute; top: .75rem; right: .75rem; background: var(--secondary); color: #fff; }

/* ---------- Cart page ---------- */
.cart-line {
  display: grid; grid-template-columns: 70px 1fr auto 90px 110px auto; align-items: center; gap: 1rem;
  background: #fff; border-radius: var(--radius); padding: 1rem; margin-bottom: .85rem; box-shadow: var(--shadow-sm);
}
.cart-line.unavailable { opacity: .6; }
.cart-line-img { width: 70px; height: 70px; border-radius: var(--radius-sm); overflow: hidden; background: #f4f1e8; }
.cart-line-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-name { font-weight: 700; color: var(--text-dark); }
.cart-line-price { font-weight: 600; color: var(--muted); white-space: nowrap; }
.cart-line-qty input { text-align: center; }
.cart-line-total { white-space: nowrap; color: var(--primary); }
.cart-line-remove { background: none; border: none; color: var(--muted); font-size: 1.4rem; line-height: 1; }
.cart-line-remove:hover { color: var(--danger); }

.cart-summary-box { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 1.5rem; position: sticky; top: 1rem; }

/* ---------- Checkout ---------- */
.payment-method-option {
  display: flex; align-items: center; gap: .75rem; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: .85rem 1rem; margin-bottom: .65rem; cursor: pointer; font-weight: 600; font-size: .9rem;
}
.payment-method-option:has(input:checked) { border-color: var(--primary); background: var(--cream); }
.payment-method-option input { margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .hero-slide h1 { font-size: 1.6rem; }
  .hero-slide .hero-content { padding: 2rem 1.25rem; }
  .main-nav .nav-link-item { padding: .6rem .75rem; }
  .product-gallery { position: static; }
}
@media (max-width: 767.98px) {
  .section-heading h2 { font-size: 1.15rem; }
  .newsletter-section { text-align: center; }
  .product-title-lg { font-size: 1.3rem; }
  .price-now-lg { font-size: 1.5rem; }
  .cart-line { grid-template-columns: 60px 1fr auto; grid-template-areas: "img name remove" "img qty total"; }
  .cart-line-img { grid-area: img; }
  .cart-line-body { grid-area: name; }
  .cart-line-price { display: none !important; }
  .cart-line-qty { grid-area: qty; }
  .cart-line-total { grid-area: total; }
  .cart-line-remove { grid-area: remove; }
}
