*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #f8f3ea;
  --cream2:     #ede6d3;
  --cream3:     #e2d9c4;
  --forest:     #1a3d1f;
  --forest2:    #254d2b;
  --forest3:    #2e6035;
  --gold:       #c8922a;
  --gold2:      #a87020;
  --gold-light: #e8b84b;
  --text-dark:  #1a1612;
  --text-mid:   #3d3325;
  --text-muted: #6b5f4e;
  --border:     #d4c4a8;
  --border-gold:#c8922a44;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent:  'Cormorant Garamond', Georgia, serif;

  --shadow-sm: 0 1px 2px rgba(26,61,31,0.06), 0 1px 3px rgba(26,61,31,0.05);
  --shadow-md: 0 4px 12px rgba(26,61,31,0.08), 0 2px 4px rgba(26,61,31,0.04);
  --shadow-lg: 0 12px 32px rgba(26,61,31,0.10), 0 4px 12px rgba(26,61,31,0.06);
  --shadow-xl: 0 24px 60px rgba(26,61,31,0.14), 0 8px 20px rgba(26,61,31,0.08);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern', 'liga', 'calt', 'ss01';
}

/* ── Ornamental border SVG helper ── */
.orn-line {
  width: 100%; height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='24' viewBox='0 0 200 24'%3E%3Cline x1='0' y1='12' x2='85' y2='12' stroke='%23c8922a' stroke-width='1'/%3E%3Ccircle cx='100' cy='12' r='4' fill='none' stroke='%23c8922a' stroke-width='1'/%3E%3Cpath d='M92 12 L96 8 L100 12 L104 8 L108 12' stroke='%23c8922a' stroke-width='1' fill='none'/%3E%3Cline x1='115' y1='12' x2='200' y2='12' stroke='%23c8922a' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
  opacity: 0.6;
  margin: 8px 0;
}

/* ── Announcement bar ── */
.announce {
  background: var(--forest); color: #c8bfa0;
  font-family: var(--font-body);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  text-align: center; padding: 10px; overflow: hidden; font-weight: 500;
}
.announce-track {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Nav ── */
nav {
  background: rgba(248,243,234,0.96);
  border-bottom: 1px solid rgba(26,61,31,0.15);
  position: sticky; top: 0; z-index: 100;
  padding: 0 64px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 20px rgba(26,61,31,0.06);
}
.nav-logo {
  display: flex; flex-direction: column; align-items: center;
  cursor: pointer; line-height: 1.1;
}
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 25px; font-weight: 700;
  color: var(--forest); letter-spacing: -0.01em;
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 9px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); font-weight: 500;
}
.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  color: var(--text-mid); text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: color 0.2s; font-family: var(--font-body);
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content:''; position:absolute; bottom:0; left:0; right:0;
  height:1.5px; background:var(--gold);
  transform:scaleX(0); transform-origin:left; transition:transform 0.25s;
}
.nav-links a:hover { color: var(--forest); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right { display: flex; gap: 12px; align-items: center; }
.nav-phone {
  font-size: 13px; color: var(--forest);
  font-weight: 500; letter-spacing: 0.03em;
  display: flex; align-items: center; gap: 6px;
}
.btn-nav {
  background: var(--forest); color: #f0ead8; border: none;
  padding: 10px 22px; border-radius: 50px;
  font-family: var(--font-body); font-size: 13px;
  font-weight: 600; cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; gap: 8px;
  letter-spacing: 0.03em;
}
.btn-nav:hover { background: var(--forest3); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(26,61,31,0.25); }

/* ── Mobile burger + slide-in menu ── */
.nav-burger {
  display: none;
  background: transparent; border: none; cursor: pointer;
  width: 40px; height: 40px; padding: 0;
  position: relative;
}
.nav-burger span {
  position: absolute; left: 9px; right: 9px; height: 2px;
  background: var(--forest); border-radius: 2px;
  transition: transform 0.3s, opacity 0.2s, top 0.3s;
}
.nav-burger span:nth-child(1) { top: 13px; }
.nav-burger span:nth-child(2) { top: 19px; }
.nav-burger span:nth-child(3) { top: 25px; }
.nav-burger.open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

.mobile-menu-backdrop {
  position: fixed; inset: 0; background: rgba(20,30,20,0.45);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
  z-index: 199;
}
.mobile-menu-backdrop.open { opacity: 1; pointer-events: auto; }

.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(82vw, 340px);
  background: var(--cream, #f8f3ea);
  box-shadow: -10px 0 40px rgba(26,61,31,0.18);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.5, 0, 0.2, 1);
  z-index: 200;
  display: flex; flex-direction: column;
  padding: 22px 26px 28px;
  overscroll-behavior: contain;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(26,61,31,0.12);
}
.mobile-menu-close {
  background: transparent; border: none; cursor: pointer;
  font-size: 32px; line-height: 1; color: var(--forest);
  width: 36px; height: 36px; padding: 0;
}
.mobile-menu-links {
  list-style: none; padding: 0; margin: 0;
  flex: 1; display: flex; flex-direction: column; gap: 4px;
  padding-top: 18px;
}
.mobile-menu-links li { opacity: 0; transform: translateX(20px); }
.mobile-menu.open .mobile-menu-links li {
  animation: slideInItem 0.4s forwards;
}
.mobile-menu.open .mobile-menu-links li:nth-child(1) { animation-delay: 0.08s; }
.mobile-menu.open .mobile-menu-links li:nth-child(2) { animation-delay: 0.14s; }
.mobile-menu.open .mobile-menu-links li:nth-child(3) { animation-delay: 0.20s; }
.mobile-menu.open .mobile-menu-links li:nth-child(4) { animation-delay: 0.26s; }
.mobile-menu.open .mobile-menu-links li:nth-child(5) { animation-delay: 0.32s; }
@keyframes slideInItem {
  to { opacity: 1; transform: translateX(0); }
}
.mobile-menu-links a {
  display: block; padding: 14px 4px;
  font-family: var(--font-display);
  font-size: 19px; font-weight: 500;
  color: var(--forest); text-decoration: none;
  border-bottom: 1px solid rgba(26,61,31,0.08);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu-links a:hover,
.mobile-menu-links a:active { color: var(--gold2); padding-left: 8px; }
.mobile-menu-foot {
  padding-top: 18px;
  border-top: 1px solid rgba(26,61,31,0.12);
}
.cart-badge {
  background: var(--gold); color: #fff;
  border-radius: 50%; width: 18px; height: 18px;
  font-size: 10px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}

/* ── Hero ── */
.hero {
  min-height: 88vh;
  background: linear-gradient(160deg, #f0ebe0 0%, #e8dfc9 60%, #ddd4b8 100%);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 0;
  position: relative; overflow: hidden;
}
.hero-left {
  padding: 80px 60px 80px 80px;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--forest); color: #c8bfa0;
  font-family: var(--font-body);
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 50px;
  margin-bottom: 32px; font-weight: 600;
}
.hero-badge::before { content: '✦'; color: var(--gold-light); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 78px);
  font-weight: 700; line-height: 1.06;
  color: var(--forest); margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.hero-title strong { font-weight: 900; display: block; }
.hero-title em { font-style: italic; color: var(--gold2); font-weight: 500; }
.hero-sub {
  font-family: var(--font-body);
  font-size: 17px; color: var(--text-mid);
  line-height: 1.8; max-width: 500px;
  margin-bottom: 44px; font-weight: 300;
}
.hero-sub strong { color: var(--forest); font-weight: 500; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary {
  background: var(--forest);
  color: #f0ead8;
  border: 2px solid var(--forest);
  padding: 15px 36px; border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: pointer;
  font-weight: 500; transition: all 0.25s;
}
.btn-primary:hover {
  background: var(--forest3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,61,31,0.25);
}
.btn-secondary {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
  padding: 15px 36px; border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: pointer;
  font-weight: 500; transition: all 0.25s;
}
.btn-secondary:hover { background: var(--forest); color: #f0ead8; }
.hero-trust {
  display: flex; gap: 28px; flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted);
}
.trust-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--forest); color: #e8d9b0;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; flex-shrink: 0;
}
.hero-right {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: 60px 60px 60px 20px; height: 100%;
}
.hero-img-wrap {
  position: relative;
  width: 420px; height: 520px;
}
.hero-img-frame {
  width: 100%; height: 100%;
  border-radius: 20px;
  border: 2px solid var(--gold);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(26,61,31,0.25), 12px 12px 0 var(--forest);
}
.hero-img-frame img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-img-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--forest);
  color: #e8d9b0;
  border: 2px solid var(--gold);
  border-radius: 50%;
  width: 100px; height: 100px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  line-height: 1.3;
}
.hero-img-badge strong { font-size: 18px; display: block; font-family: var(--font-display); }
/* big decorative leaf bg */
.hero-leaf-bg {
  position: absolute; right: -60px; top: -60px;
  width: 420px; height: 420px; opacity: 0.06;
  pointer-events: none;
}

/* ── Section common ── */
.section-wrap {
  padding: 100px 80px;
  position: relative;
}
.section-wrap.alt { background: var(--cream2); }
.section-wrap.dark {
  background: var(--forest);
  color: var(--cream);
}
.section-center { text-align: center; }
.section-eyebrow {
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.section-eyebrow.left { justify-content: flex-start; }
.section-eyebrow::before, .section-eyebrow::after {
  content: '✦'; font-size: 8px; opacity: 0.6;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 700; line-height: 1.12;
  color: var(--forest); margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-wrap.dark .section-title { color: #e8d9b0; }
.section-title em { font-style: italic; color: var(--gold2); }
.section-wrap.dark .section-title em { color: var(--gold-light); }
.section-desc {
  font-size: 16px; color: var(--text-mid);
  line-height: 1.8; max-width: 600px;
  margin: 0 auto 48px; font-weight: 300;
}
.section-wrap.dark .section-desc { color: #c8bfa8; }

/* ── Gold ornament divider ── */
.gold-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 16px auto 32px;
  width: fit-content;
}
.gold-divider-line { width: 48px; height: 1px; background: var(--gold);
}
.gold-divider-icon { color: var(--gold); font-size: 14px; }

/* ── About section ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-img {
  border-radius: 8px; overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 8px 8px 0 var(--cream3);
}
.about-img img { width: 100%; display: block; }
.about-content .section-title { text-align: left; }
.about-text {
  font-size: 16px; color: var(--text-mid);
  line-height: 1.85; font-weight: 300; margin-bottom: 24px;
}
.about-text strong { color: var(--forest); font-weight: 500; }

/* ── Why Choose Us ── */
.why-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 2px; margin-top: 56px;
}
.why-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(200,180,140,0.2);
  padding: 40px 28px; text-align: center;
  transition: background 0.3s;
  position: relative;
}
.why-card:hover { background: rgba(255,255,255,0.14); }
.why-card:first-child { border-radius: 12px 0 0 12px; }
.why-card:last-child  { border-radius: 0 12px 12px 0; }
.why-icon {
  font-size: 32px; margin-bottom: 16px; display: block;
}
.why-name {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 600;
  color: #e8d9b0; margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.why-desc { font-family: var(--font-body); font-size: 13px; color: #a09880; line-height: 1.65; font-weight: 300; }
.why-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.4s;
}
.why-card:hover .why-line { transform: scaleX(1); }

/* ── Product section ── */
.product-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
  padding: 100px 80px;
  background: var(--cream);
}
.product-gallery {
  position: relative;
}
.product-main-img {
  border-radius: 8px; overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 10px 10px 0 var(--cream2);
  margin-bottom: 16px;
}
.product-main-img img { width: 100%; display: block; }
.product-thumbs {
  display: flex; gap: 12px;
}
.product-thumb {
  width: 80px; height: 80px; border-radius: 6px;
  overflow: hidden; cursor: pointer;
  border: 2px solid var(--border);
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.product-thumb.active { border-color: var(--gold); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info { padding-top: 8px; }
.product-badge-row {
  display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap;
}
.product-badge {
  background: var(--forest); color: #e8d9b0; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; font-family: var(--font-body); font-weight: 500;
}
.product-name {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 700;
  line-height: 1.1; color: var(--forest);
  margin-bottom: 8px; letter-spacing: -0.02em;
}
.product-name em { font-style: italic; color: var(--gold2); }
.product-tagline {
  font-size: 15px; color: var(--text-muted);
  margin-bottom: 20px; font-weight: 300;
}
.product-stars {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 24px;
}
.stars { color: var(--gold); letter-spacing: 2px; }
.review-count { font-size: 13px; color: var(--text-muted); }
.product-features {
  list-style: none; margin-bottom: 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.product-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--text-mid);
}
.feat-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--forest); color: #e8d9b0;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; flex-shrink: 0; font-weight: 700;
}
.product-price-row {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 28px;
}
.product-price {
  font-family: var(--font-display);
  font-size: 52px; font-weight: 700; color: var(--forest);
  letter-spacing: -0.02em;
}
.product-price sup { font-size: 22px; vertical-align: super; }
.product-price-old {
  font-size: 20px; color: var(--text-muted);
  text-decoration: line-through;
  font-family: var(--font-display);
}
.product-price-save {
  background: #e8f5e9; color: var(--forest);
  font-size: 12px; font-weight: 500;
  padding: 3px 10px; border-radius: 20px;
  letter-spacing: 0.05em;
}
.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.qty-label { font-size: 13px; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; }
.qty-ctrl {
  display: flex; align-items: center;
  border: 2px solid var(--border); border-radius: 50px; overflow: hidden;
}
.qty-btn {
  background: var(--cream2); border: none; cursor: pointer;
  width: 40px; height: 40px; font-size: 18px; color: var(--forest);
  transition: background 0.2s;
}
.qty-btn:hover { background: var(--cream3); }
.qty-num {
  width: 48px; text-align: center;
  font-family: var(--font-display); font-size: 20px;
  color: var(--forest);
}
.btn-buy {
  width: 100%; background: var(--forest);
  color: #f0ead8; border: 2px solid var(--forest);
  padding: 18px; border-radius: 50px;
  font-family: var(--font-body); font-size: 15px;
  letter-spacing: 0.05em; text-transform: uppercase;
  cursor: pointer; font-weight: 600; transition: all 0.25s;
  margin-bottom: 12px;
}
.btn-buy:hover {
  background: var(--forest3);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(26,61,31,0.25);
}
.btn-cart {
  width: 100%; background: transparent;
  color: var(--forest); border: 2px solid var(--forest);
  padding: 16px; border-radius: 50px;
  font-family: var(--font-body); font-size: 15px;
  letter-spacing: 0.05em; text-transform: uppercase;
  cursor: pointer; font-weight: 600; transition: all 0.2s;
  margin-bottom: 20px;
}
.btn-cart:hover { background: var(--forest); color: #f0ead8; }
.product-assurances {
  display: flex; gap: 20px; flex-wrap: wrap;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.assurance {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-muted);
}

/* ── How To Use ── */
.how-to-section { padding: 100px 80px; background: var(--cream2); }
.steps-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; margin-top: 56px; position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 56px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.4; z-index: 0;
}
.step-card {
  text-align: center; padding: 0 20px 40px; position: relative; z-index: 1;
}
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--forest); color: #e8d9b0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  margin: 0 auto 20px; border: 2px solid var(--gold);
  position: relative; z-index: 2;
}
.step-icon {
  font-size: 36px; display: block; margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  color: var(--forest); margin-bottom: 4px; letter-spacing: -0.01em;
}
.step-sub {
  font-size: 11px; color: var(--gold2);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.step-desc {
  font-size: 13px; color: var(--text-mid);
  line-height: 1.7; font-weight: 300;
}
.how-to-tagline {
  text-align: center; margin-top: 64px;
  font-family: var(--font-display);
  font-size: 26px; font-style: italic; color: var(--gold2); font-weight: 400;
}

/* ── Benefits ── */
.benefits-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 56px;
}
.benefit-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,180,140,0.25);
  border-radius: 8px; padding: 32px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: background 0.3s;
}
.benefit-card:hover { background: rgba(255,255,255,0.1); }
.benefit-icon-wrap {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(200,146,42,0.15);
  border: 1px solid rgba(200,146,42,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
}
.benefit-title {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 600; color: #e8d9b0; margin-bottom: 8px;
}
.benefit-desc { font-size: 14px; color: #a09880; line-height: 1.7; }

/* ── Reviews ── */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px; padding: 36px;
  position: relative;
  box-shadow: 0 2px 12px rgba(26,61,31,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(26,61,31,0.12);
}
.review-card::before {
  content: '"';
  position: absolute; top: 16px; left: 24px;
  font-family: var(--font-display);
  font-size: 72px; line-height: 1; color: var(--gold);
  opacity: 0.2;
}
.review-stars { color: var(--gold); margin-bottom: 12px; }
.review-text {
  font-family: var(--font-display);
  font-size: 17px; color: var(--text-mid);
  line-height: 1.75; font-style: italic; margin-bottom: 20px;
}
.review-author { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--forest); letter-spacing: 0.03em; }
.review-location { font-size: 12px; color: var(--text-muted); }

/* ── Contact ── */
.contact-section {
  background: var(--cream2);
  padding: 80px; text-align: center;
}
.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 48px; max-width: 800px; margin-left: auto; margin-right: auto;
}
.contact-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 40px 24px; text-align: center;
  transition: all 0.3s;
}
.contact-card:hover { box-shadow: 0 12px 32px rgba(26,61,31,0.12); transform: translateY(-3px); }
.contact-icon { font-size: 32px; margin-bottom: 16px; }
.contact-label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 8px;
}
.contact-value {
  font-family: var(--font-display);
  font-size: 19px; color: var(--forest); font-weight: 600;
}

/* ── Cart Drawer ── */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(26,61,31,0.45);
  backdrop-filter: blur(4px);
  z-index: 500;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 440px; max-width: 100vw;
  background: var(--cream);
  border-left: 2px solid var(--gold);
  z-index: 501;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  background: var(--forest);
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.cart-drawer-title {
  font-family: var(--font-display);
  font-size: 22px; color: #e8d9b0;
  display: flex; align-items: center; gap: 10px;
}
.cart-drawer-count {
  background: var(--gold); color: var(--forest);
  border-radius: 50%; width: 22px; height: 22px;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.cart-drawer-close {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  width: 32px; height: 32px; border-radius: 50%;
  color: #e8d9b0; cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.cart-drawer-close:hover { background: rgba(255,255,255,0.25); }

.cart-drawer-body {
  flex: 1; overflow-y: auto; padding: 24px;
}

.cart-empty {
  text-align: center; padding: 60px 20px;
}
.cart-empty-icon { font-size: 48px; margin-bottom: 16px; }
.cart-empty-text {
  font-family: var(--font-display);
  font-size: 22px; color: var(--text-mid); margin-bottom: 8px;
}
.cart-empty-sub { font-size: 14px; color: var(--text-muted); }

.cart-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 72px; height: 72px; border-radius: 8px;
  overflow: hidden; border: 1px solid var(--border); flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-details { flex: 1; }
.cart-item-name {
  font-size: 14px; font-weight: 500; color: var(--forest);
  margin-bottom: 4px; line-height: 1.4;
}
.cart-item-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.cart-item-qty-row {
  display: flex; align-items: center; justify-content: space-between;
}
.cart-item-qty {
  display: flex; align-items: center;
  border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
}
.cart-item-qty-btn {
  background: var(--cream2); border: none; cursor: pointer;
  width: 30px; height: 30px; font-size: 16px; color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.cart-item-qty-btn:hover { background: var(--cream3); }
.cart-item-qty-num {
  width: 36px; text-align: center; font-size: 14px;
  font-family: var(--font-display); font-size: 18px; color: var(--forest);
}
.cart-item-price {
  font-family: var(--font-display);
  font-size: 20px; color: var(--forest);
}
.cart-item-remove {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); font-size: 18px;
  padding: 4px; transition: color 0.2s; line-height: 1;
  align-self: flex-start; margin-top: 2px;
}
.cart-item-remove:hover { color: #c0392b; }

.cart-drawer-footer {
  border-top: 2px solid var(--border);
  padding: 24px; flex-shrink: 0;
  background: var(--cream);
}
.cart-subtotal-row {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 6px;
}
.cart-subtotal-label { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.cart-subtotal-val {
  font-family: var(--font-display);
  font-size: 26px; color: var(--forest);
}
.cart-shipping-note {
  font-size: 12px; color: var(--text-muted);
  margin-bottom: 18px;
}
.cart-shipping-note span { color: var(--forest); font-weight: 500; }
.btn-razorpay {
  width: 100%;
  background: #072654;
  color: #fff; border: none;
  padding: 17px; border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 500;
  letter-spacing: 0.05em; cursor: pointer;
  transition: all 0.25s; margin-bottom: 10px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-razorpay:hover {
  background: #0a3a7a;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(7,38,84,0.3);
}
.btn-razorpay:disabled { opacity: 0.6; cursor: default; transform: none; }
.razorpay-logo {
  font-size: 11px; letter-spacing: 0.08em; opacity: 0.7;
}
.btn-continue-shop {
  width: 100%; background: transparent; color: var(--forest);
  border: 1px solid var(--border); padding: 13px;
  border-radius: 6px; font-family: var(--font-body);
  font-size: 13px; cursor: pointer; transition: all 0.2s;
  letter-spacing: 0.05em;
}
.btn-continue-shop:hover { border-color: var(--forest); background: var(--cream2); }
.cart-secure-row {
  display: flex; justify-content: center; gap: 16px;
  margin-top: 14px; font-size: 11px; color: var(--text-muted);
}
.cart-secure-item { display: flex; align-items: center; gap: 4px; }

/* ── Razorpay Info Modal ── */
.rz-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(26,61,31,0.65);
  backdrop-filter: blur(6px);
  z-index: 600;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeInRz 0.2s ease;
}
@keyframes fadeInRz { from { opacity: 0; } to { opacity: 1; } }
.rz-modal {
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: 12px;
  width: 100%; max-width: 500px;
  max-height: 90vh; overflow-y: auto;
  animation: slideUpRz 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes slideUpRz {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.rz-modal-header {
  background: #072654; padding: 22px 28px;
  border-radius: 10px 10px 0 0;
  display: flex; align-items: center; justify-content: space-between;
}
.rz-modal-title {
  font-family: var(--font-display);
  font-size: 22px; color: #fff;
  display: flex; align-items: center; gap: 10px;
}
.rz-modal-close {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  width: 32px; height: 32px; border-radius: 50%;
  color: #fff; cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.rz-modal-close:hover { background: rgba(255,255,255,0.25); }
.rz-modal-body { padding: 28px; }

.rz-steps { display: flex; gap: 0; margin-bottom: 28px; }
.rz-step-pip {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; transition: all 0.3s;
  background: var(--cream2); border: 1px solid var(--border); color: var(--text-muted);
}
.rz-step-pip.active { background: #072654; border-color: #072654; color: #fff; }
.rz-step-pip.done { background: rgba(7,38,84,0.1); border-color: #072654; color: #072654; }
.rz-step-label {
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-muted); margin-left: 6px; white-space: nowrap;
}
.rz-step-label.active { color: #072654; font-weight: 500; }
.rz-step-line {
  flex: 1; height: 1px; background: var(--border); margin: 0 8px; align-self: center;
  transition: background 0.3s;
}
.rz-step-line.done { background: #072654; }

.form-grid { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.form-input {
  background: #fff; border: 1px solid var(--border);
  color: var(--text-dark); border-radius: 6px;
  padding: 12px 14px; font-family: var(--font-body);
  font-size: 14px; transition: border-color 0.2s; outline: none;
}
.form-input:focus { border-color: #072654; }
.form-input::placeholder { color: var(--text-muted); }
.form-input.err { border-color: #c0392b; }

.order-sum-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.order-sum-swatch {
  width: 52px; height: 52px; border-radius: 8px;
  border: 1px solid var(--border); overflow: hidden; flex-shrink: 0;
}
.order-sum-swatch img { width: 100%; height: 100%; object-fit: cover; }
.order-sum-details { flex: 1; }
.order-sum-name { font-size: 14px; font-weight: 500; color: var(--forest); line-height: 1.4; }
.order-sum-meta { font-size: 12px; color: var(--text-muted); }
.order-sum-price { font-family: var(--font-display); font-size: 22px; color: var(--forest); }
.order-lines { padding: 14px 0; }
.order-line { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-mid); padding: 4px 0; }
.order-line.total {
  border-top: 1px solid var(--border); margin-top: 8px; padding-top: 12px;
  font-size: 16px; font-weight: 500; color: var(--forest);
}
.order-line .amt { font-family: var(--font-display); font-size: 18px; }
.order-line.total .amt { font-size: 24px; color: #072654; }

.rz-pay-methods {
  display: flex; gap: 8px; margin: 16px 0 20px; flex-wrap: wrap;
}
.rz-pay-method {
  border: 1px solid var(--border); border-radius: 6px;
  padding: 8px 14px; font-size: 12px; color: var(--text-mid);
  display: flex; align-items: center; gap: 6px;
  background: #fff;
}
.rz-powered {
  text-align: center; font-size: 11px; color: var(--text-muted);
  margin-top: 16px; letter-spacing: 0.04em;
}
.rz-powered strong { color: #072654; }

.btn-rz-pay {
  width: 100%; background: #072654; color: #fff; border: none;
  padding: 17px; border-radius: 6px; font-family: var(--font-body);
  font-size: 15px; font-weight: 500; letter-spacing: 0.06em;
  cursor: pointer; transition: all 0.2s; margin-top: 20px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-rz-pay:hover { background: #0a3a7a; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(7,38,84,0.3); }
.btn-rz-pay:disabled { opacity: 0.65; cursor: default; transform: none; }

.success-screen { text-align: center; padding: 24px 0; }
.success-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(26,61,31,0.08); border: 2px solid var(--forest);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; margin: 0 auto 24px;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes popIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.success-title {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 300; color: var(--forest); margin-bottom: 12px;
}
.success-sub {
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
  max-width: 340px; margin: 0 auto 32px;
}
.success-order-id {
  display: inline-block;
  background: var(--cream2); border: 1px solid var(--border);
  border-radius: 6px; padding: 10px 20px;
  font-size: 13px; color: var(--text-mid);
  margin-bottom: 24px; letter-spacing: 0.04em;
}
.success-order-id strong { color: var(--forest); font-weight: 600; }

/* ── Toast ── */
.toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--forest); border: 1px solid var(--gold);
  border-radius: 4px; padding: 14px 28px;
  color: #e8d9b0; font-size: 13px;
  z-index: 2000; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  pointer-events: none; letter-spacing: 0.04em;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── Footer ── */
footer {
  background: var(--forest);
  color: #c8bfa8; padding: 60px 80px 40px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 48px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700; color: #e8d9b0; margin-bottom: 4px; letter-spacing: -0.01em;
}
.footer-brand-sub {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 16px;
}
.footer-about {
  font-size: 14px; color: #9a9080; line-height: 1.75; font-weight: 300;
  margin-bottom: 20px;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic; font-size: 18px; color: var(--gold-light);
}
.footer-col-title {
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: #9a9080; text-decoration: none; font-size: 14px;
  transition: color 0.2s; font-weight: 300;
}
.footer-links a:hover { color: #e8d9b0; }
.footer-bottom {
  border-top: 1px solid rgba(200,180,140,0.15);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: #6a6050;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  nav { padding: 0 18px; height: 64px; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-burger { display: block; }
  .btn-nav-cart { padding: 9px 16px; font-size: 12px; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 60px 24px; }
  .hero-right { display: none; }
  .section-wrap, .how-to-section, .contact-section { padding: 64px 24px; }
  .product-section { grid-template-columns: 1fr; padding: 64px 24px; }
  .about-grid { grid-template-columns: 1fr; }

  /* Difference section → horizontal slider */
  .why-grid-wrap {
    margin: 56px -24px 0;
    position: relative;
  }
  .why-grid {
    grid-template-columns: none;
    display: flex; gap: 14px;
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 24px 18px;
    margin-top: 0;
  }
  .why-grid::-webkit-scrollbar { display: none; }
  .why-card {
    flex: 0 0 78%;
    scroll-snap-align: center;
    border-radius: 14px !important;
    padding: 36px 22px !important;
  }
  .why-card:first-child,
  .why-card:last-child { border-radius: 14px !important; }
  .why-slider-hint {
    text-align: center;
    font-family: var(--font-body);
    font-size: 11px; letter-spacing: 0.22em;
    color: rgba(200,180,140,0.55);
    text-transform: uppercase;
    padding-top: 4px;
  }

  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 48px 24px 32px; }
}

/* Hide swipe hint on desktop */
@media (min-width: 961px) {
  .why-slider-hint { display: none; }
}

/* Smaller phones */
@media (max-width: 480px) {
  nav { padding: 0 14px; }
  .btn-nav-cart span,
  .btn-nav-cart {
    font-size: 0;
    width: 40px; height: 40px;
    padding: 0; justify-content: center;
    border-radius: 50%;
  }
  .btn-nav-cart svg { width: 16px; height: 16px; }
  .why-card { flex: 0 0 84%; }
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--forest); }

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Extra polish pass ── */
.section-eyebrow {
  font-family: var(--font-body) !important;
  font-size: 11px !important; font-weight: 600 !important;
  letter-spacing: 0.18em !important;
}
.section-eyebrow::before, .section-eyebrow::after { content: none !important; }

.section-title em { color: var(--gold2); font-style: italic; }
.section-wrap.dark .section-title em { color: var(--gold-light); }

/* Feature list items */
.product-features li { font-family: var(--font-body); font-size: 13.5px; font-weight: 400; color: var(--text-mid); }

/* Product tagline */
.product-tagline { font-family: var(--font-body); font-size: 14px; color: var(--text-muted); font-weight: 400; letter-spacing: 0.01em; }

/* Product stars */
.stars { font-size: 15px; letter-spacing: 3px; }
.review-count { font-family: var(--font-body); font-size: 13px; color: var(--text-muted); }

/* About text */
.about-text { font-family: var(--font-body); font-size: 16px; line-height: 1.85; font-weight: 300; }

/* Hero trust */
.hero-trust-item { font-family: var(--font-body); font-size: 13px; }

/* Step descriptions */
.step-desc { font-family: var(--font-body); font-size: 13px; color: var(--text-mid); line-height: 1.7; font-weight: 300; }
.step-sub { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.1em; }

/* Assurance items */
.assurance { font-family: var(--font-body); font-size: 12.5px; }

/* Footer links */
.footer-links a { font-family: var(--font-body); font-size: 14px; }
.footer-col-title { font-family: var(--font-body); font-size: 10.5px; letter-spacing: 0.18em; }
.footer-about { font-family: var(--font-body); font-size: 14px; line-height: 1.8; }
.footer-tagline { font-family: var(--font-display); font-style: italic; font-size: 17px; color: var(--gold-light); }
.footer-bottom { font-family: var(--font-body); }

/* Nav phone */
.nav-phone { font-family: var(--font-body); font-size: 13px; }

/* Cart & modal */
.cart-drawer-title { font-family: var(--font-display) !important; font-weight: 700 !important; }
.cart-item-name { font-family: var(--font-body); font-size: 14px; font-weight: 500; }
.cart-empty-text { font-family: var(--font-display) !important; }
.rz-modal-title { font-family: var(--font-display) !important; font-weight: 700 !important; }
.success-title { font-family: var(--font-display) !important; font-weight: 700 !important; }
.order-sum-name { font-family: var(--font-body); font-weight: 600; }
.form-label { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.1em; }
.form-input { font-family: var(--font-body) !important; }
.btn-modal-next, .btn-rz-pay, .btn-razorpay { font-family: var(--font-body) !important; font-weight: 600 !important; }

/* Benefit cards */
.benefit-desc { font-family: var(--font-body); font-size: 14px; line-height: 1.7; }

/* Review location */
.review-location { font-family: var(--font-body); font-size: 12px; color: var(--text-muted); }

/* Cart item price */
.cart-item-price { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.cart-subtotal-val { font-family: var(--font-display); font-size: 28px; font-weight: 700; }
.order-line .amt { font-family: var(--font-display); font-size: 18px; font-weight: 600; }
.order-line.total .amt { font-size: 26px; }

/* Smooth all transitions */
button { transition: all 0.2s cubic-bezier(0.4,0,0.2,1); }

/* Hero section bg upgrade */
.hero { background: linear-gradient(145deg, #f5ede0 0%, #ede2ca 50%, #e2d5b5 100%) !important; }

/* Card hover shadows */
.why-card { border-radius: 0; }
.why-card:first-child { border-radius: 14px 0 0 14px; }
.why-card:last-child { border-radius: 0 14px 14px 0; }

/* Product section bg */
.product-section { background: #faf6ef !important; }

/* Section alt bg */
.section-wrap.alt { background: #ede8da !important; }
.how-to-section { background: #f0e9d8 !important; }

/* ──────────── Modern UI Pass v2 ──────────── */

/* Body typography */
body {
  font-size: 16px !important;
  line-height: 1.65 !important;
  letter-spacing: -0.005em;
}

/* Sharper, more confident headings */
.hero-title,
.section-title,
.product-name,
.cart-drawer-title,
.rz-modal-title,
.success-title,
.footer-brand-name {
  letter-spacing: -0.025em !important;
}

/* Hero refinements */
.hero-sub {
  font-size: 18px !important;
  line-height: 1.7 !important;
  font-weight: 400 !important;
  color: #4a3f30 !important;
}
.hero-badge {
  font-size: 11px !important;
  letter-spacing: 0.14em !important;
  padding: 8px 20px !important;
  box-shadow: var(--shadow-sm);
}
.hero-img-frame {
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-xl), 12px 12px 0 var(--forest) !important;
}
.hero-img-badge {
  box-shadow: var(--shadow-md);
}

/* Buttons — modern, less shouty */
.btn-primary, .btn-secondary {
  border-radius: var(--radius-sm) !important;
  letter-spacing: 0.04em !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  text-transform: none !important;
  padding: 14px 32px !important;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { box-shadow: var(--shadow-lg) !important; }

.btn-buy, .btn-cart {
  border-radius: 14px !important;
  letter-spacing: 0.03em !important;
  font-size: 14.5px !important;
  text-transform: none !important;
  font-weight: 600 !important;
  padding: 16px !important;
}
.btn-buy { box-shadow: var(--shadow-md); }
.btn-buy:hover { box-shadow: var(--shadow-xl) !important; }

.btn-nav {
  border-radius: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  box-shadow: var(--shadow-sm);
}

.btn-razorpay, .btn-rz-pay {
  border-radius: 10px !important;
  letter-spacing: 0.02em !important;
  font-weight: 600 !important;
}

/* Cards — softer, modern radius */
.review-card {
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212,196,168,0.5) !important;
}
.review-card:hover { box-shadow: var(--shadow-lg) !important; }

.contact-card {
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212,196,168,0.5) !important;
}
.contact-card:hover { box-shadow: var(--shadow-lg) !important; }

.benefit-card { border-radius: var(--radius-md) !important; }

/* Reading text — improve readability */
.about-text,
.section-desc,
.benefit-desc,
.review-text,
.step-desc,
.footer-about,
.product-tagline {
  color: #4a3f30 !important;
}
.review-text {
  font-style: normal !important;
  color: #2e2820 !important;
  font-weight: 400 !important;
}

/* Product price — refined */
.product-price { letter-spacing: -0.03em !important; }
.product-price sup { font-size: 24px; top: -0.4em; }

/* Section eyebrow — modern small caps look */
.section-eyebrow {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: var(--gold2) !important;
  letter-spacing: 0.16em !important;
}

/* Nav — cleaner */
nav {
  height: 76px !important;
  box-shadow: 0 1px 0 rgba(26,61,31,0.06) !important;
}
.nav-links a {
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em;
}

/* Cart drawer — softer */
.cart-drawer { box-shadow: -16px 0 50px rgba(26,61,31,0.15) !important; }

/* Inputs — modern focus */
.form-input {
  border-radius: 10px !important;
  font-size: 15px !important;
  padding: 13px 16px !important;
  transition: all 0.2s !important;
}
.form-input:focus {
  border-color: #072654 !important;
  box-shadow: 0 0 0 3px rgba(7,38,84,0.1);
}

/* Subtle section padding tweak for breathing room */
.section-wrap, .product-section, .how-to-section {
  padding-top: 110px;
  padding-bottom: 110px;
}

/* Why cards — modern */
.why-card { padding: 44px 28px !important; }
.why-name {
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  font-size: 16px !important;
}

/* Smoother global transitions on links/cards */
a, .why-card, .review-card, .contact-card, .benefit-card, .step-card {
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* Selection color */
::selection {
  background: var(--gold);
  color: #fff;
}

/* Focus ring, accessibility */
button:focus-visible, a:focus-visible, .form-input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
button:focus { outline: none; }

/* Mobile readability */
@media (max-width: 960px) {
  body { font-size: 15.5px !important; }
  .hero-sub { font-size: 16.5px !important; }
  .section-wrap, .product-section, .how-to-section { padding: 72px 24px !important; }
}

/* ──────────── Readability fix v3 ──────────── */

/* Dark sections — light text for contrast */
.section-wrap.dark .section-desc { color: #e6dcc2 !important; }
.section-wrap.dark .why-desc,
.section-wrap.dark .benefit-desc { color: #d4c8a8 !important; }
.section-wrap.dark .why-name,
.section-wrap.dark .benefit-title { color: #f0e4c4 !important; }

/* Footer — brighter text */
footer { color: #e8dcc4 !important; }
.footer-about { color: #d4c8a8 !important; }
.footer-links a { color: #c8bca0 !important; }
.footer-links a:hover { color: #f0e4c4 !important; }
.footer-bottom { color: #a89880 !important; }

/* ──────────── Number typography v3 ──────────── */

/* Use Fraunces for elegant, readable numbers + tabular figures everywhere */
.product-price,
.product-price-old,
.product-price sup,
.cart-item-price,
.cart-subtotal-val,
.order-sum-price,
.order-line .amt,
.success-order-id strong {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif !important;
  font-variant-numeric: tabular-nums lining-nums !important;
  font-feature-settings: 'tnum' 1, 'lnum' 1, 'ss01' 1 !important;
  letter-spacing: -0.02em !important;
  font-weight: 600 !important;
}

.product-price { font-weight: 700 !important; font-size: 56px !important; }
.product-price sup { font-weight: 600 !important; }
.product-price-old { font-weight: 500 !important; }

/* Qty numerics use Inter tabular */
.qty-num,
.cart-item-qty-num,
.cart-drawer-count {
  font-family: var(--font-body) !important;
  font-variant-numeric: tabular-nums lining-nums !important;
  font-feature-settings: 'tnum' 1, 'lnum' 1 !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
}

/* Small price/qty everywhere */
.product-price-save,
.review-count,
.cart-shipping-note,
.success-order-id {
  font-variant-numeric: tabular-nums lining-nums !important;
}

/* Hero title with Fraunces */
.hero-title,
.section-title,
.product-name {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif !important;
  font-feature-settings: 'ss01' 1, 'kern' 1, 'liga' 1 !important;
}

/* Phone number readability */
.nav-phone,
.contact-value {
  font-variant-numeric: tabular-nums !important;
  font-feature-settings: 'tnum' 1 !important;
}
.contact-value { font-family: var(--font-body) !important; font-weight: 600 !important; }

/* Step number circle */
.step-num {
  font-family: 'Fraunces', 'Playfair Display', serif !important;
  font-variant-numeric: lining-nums !important;
  font-weight: 700 !important;
}
