/* ============================================================
   CLAYPHYLL – 1:1 Vilvah Store Design Replica
   Colors, fonts, spacing, components – exact match
   ============================================================ */

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

/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Soft beige → olive palette provided */
  --cream:        #f5f0e1;
  --cream-mid:    #e8e0c8;
  --cream-dark:   #d4c9a8;
  --cream-border: #c5b99a;
  --white:        #ffffff;
  --black:        #2c2a1e;
  --dark:         #454411;
  --text:         #454411;
  --text-muted:   #7a6f4e;
  --text-faint:   #b5a97a;
  /* Brown/gold accents derived from palette */
  --brown-xlight: #e8e0c8;
  --brown-light:  #d4c9a8;
  --brown:        #8c8218;
  --brown-dark:   #6b5f1a;
  --brown-xdark:  #454411;
  /* Green accent (reused palette colors) */
  --green:        #6b8e23;
  --green-dark:   #556b2f;
  --green-bg:     #f0f5e6;
  /* Red/alarm uses olive tone */
  --red:          #c0392b;
  --red-bg:       #fdeaea;
  /* Gold */
  --gold:         #8c8218;
  /* Shadows */
  --shadow-xs:    0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow:       0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.14);
  /* Radii */
  --r-xs:  4px;
  --r-sm:  8px;
  --r:     12px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-2xl: 32px;
  /* Transitions */
  --t:     0.22s ease;
  --t-md:  0.35s ease;
  /* Typography */
  --font:        'Inter', -apple-system, sans-serif;
  --font-serif:  'Playfair Display', Georgia, serif;
  --product-name-font: var(--font-serif);
  /* Layout */
  --header-h: 66px;
  --max-w:    1300px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { font-family: var(--font); font-size: 17px; line-height: 1.7; color: var(--text); background:#FDF9F0; overflow-x: hidden; }
img { max-width: 200%; margin-top: 10px; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
input, select, textarea { font-family: var(--font); font-size: 14px; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font); color: var(--black); line-height: 1.2; font-weight: 600; }

/* ─── LAYOUT HELPERS ─────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* ════════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR  (Vilvah: black bar, white text, marquee)
   ════════════════════════════════════════════════════════════ */
.announce-bar {
  background-color:#F2E5D6;
  color:#31503c;
  height: 38px;
  overflow: hidden;
      font-weight: 700;
    text-transform: uppercase;
  display: flex;
  align-items: center;
}
.announce-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.announce-track:hover { animation-play-state: paused; }
.announce-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 52px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: capitalize;
}
.announce-item a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ════════════════════════════════════════════════════════════
   HEADER  (Vilvah: white sticky, border-bottom, logo centre-ish)
   ════════════════════════════════════════════════════════════ */
.header {
  background:#FDF9F0;
  border-bottom: 1px solid #31503c;
  position: sticky;
  top: 0;
      height: 14vh;
  z-index: 900;
  transition: box-shadow var(--t);
}
.header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.07); }

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  height: var(--header-h);
  gap: 0;
}

/* Logo */
.logo { display: flex;    width: 150px; align-items: center; gap: 9px; flex-shrink: 0; }
.logo-leaf { font-size: 20px; }
.logo-text .brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  display: block;
  line-height: 1;
  letter-spacing: -0.01em;
}
.logo-text .tagline {
  font-size: 8.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

/* Main Nav */
.main-nav { display: flex; justify-content: center; }
.nav-list { display: flex; align-items: center; }
.nav-item { position: relative; }
.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    height: var(--header-h);
    padding: 0 14px;
    font-size: 22px;
    font-weight: 600;
    color: #31503c;
    letter-spacing: 0.1px;
    border-bottom: 2px solid transparent;
    text-transform: capitalize;
    margin-bottom: -1px;
    white-space: nowrap;
    transition: color var(--t), border-color var(--t);
}
.nav-link:hover, .nav-link.active { color:#ef5958; border-bottom-color:#ef5958; }
.nav-badge-new {
  font-size: 8.5px;
  font-weight: 700;
  background: var(--green);
  color: #fff;
  padding: 1px 5px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.nav-chevron { font-size: 9px; opacity: 0.45; transition: transform var(--t); }
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

/* Mega dropdown */
.mega-drop {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px 24px;
  min-width: 500px;
  display: none;
  z-index: 800;
}
.nav-item:hover .mega-drop { display: block; }
.mega-inner { display: grid; grid-template-columns: 1fr 1fr 120px; gap: 20px; }
.mega-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--cream-border);
}
.mega-links { display: flex; flex-direction: column; gap: 1px; }
.mega-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  font-size: 13px;
  color: var(--text);
  border-radius: var(--r-xs);
  transition: all var(--t);
}
.mega-link:hover { color: var(--brown-dark); background: var(--cream); padding-left: 12px; }
.mega-link .badge-new {
  font-size: 8.5px;
  font-weight: 700;
  background: var(--green);
  color: #fff;
  padding: 1px 5px;
  border-radius: 3px;
  text-transform: uppercase;
}
.mega-img-wrap { border-radius: var(--r-sm); overflow: hidden; aspect-ratio: 3/4; }
.mega-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-md); }
.mega-img-wrap:hover img { transform: scale(1.05); }

/* Simple dropdown */
.simple-drop {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 185px;
  display: none;
  z-index: 800;
}
.nav-item:hover .simple-drop { display: block; }
.drop-item {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text);
  border-radius: var(--r-sm);
  transition: all var(--t);
}
.drop-item:hover { color: var(--brown-dark); background: var(--cream); }
.drop-sep { height: 1px; background: var(--cream-border); margin: 5px 0; }

/* Header search bar */
.header-search {
  display: flex;
  align-items: center;
background:#CC6328;
    border: 1px solid #ef5958;
  border-radius: 24px;
  padding: 0 14px;
  height: 36px;
  gap: 8px;
  width: 210px;
  margin: 0 14px;
}
.header-search input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 13px;
  color: white;
  width: 100%;
}
.header-search input::placeholder { color:white !important; }
.search-ico { font-size: 13px; color:white !important ; flex-shrink: 0; }

/* Header action icons */
.header-actions { display: flex; align-items: center; gap: 2px; }
.h-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  font-size: 17px;
  color: var(--dark);
  text-decoration: none;
  transition: background var(--t);
      background-color:#CC6328;
  position: relative;
}
.h-btn-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.h-btn:hover { background: var(--cream); color: var(--dark); }
.h-btn:hover .h-btn-icon { stroke: #31503c; }
.cart-count {
  position: absolute;
  top: 5px;
  right: 5px;
  background: var(--brown-dark);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Mini cart dropdown */
.cart-btn-wrap { position: relative; }
.mini-cart {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 330px;
  background: #8faf5a;
  border: 1px solid #eef3e6;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 800;
  overflow: hidden;
}
.cart-btn-wrap:hover .mini-cart { display: block; }
.mini-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--cream-border);
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
}
.mini-cart-empty { padding: 32px 20px; text-align: center; font-size: 13.5px; color: var(--text-muted); }
.mini-cart-items { max-height: 250px; overflow-y: auto; padding: 10px; display: flex; flex-direction: column; gap: 8px; }
.mini-cart-item { display: flex; gap: 10px; align-items: center; padding: 8px; background: #8faf5a; border-radius: var(--r-sm); }
.mini-cart-image { width: 50px; height: 50px; border-radius: var(--r-xs); overflow: hidden; flex-shrink: 0; background: #8faf5a; }
.mini-cart-image img, .mini-cart-image svg { width: 100%; height: 100%; object-fit: cover; }
.mini-cart-info { flex: 1; }
.mini-cart-name { font-size: 12.5px; font-weight: 500; color: black; line-height: 1.3; margin-bottom: 3px; }
.mini-cart-price { font-size: 12.5px; color: black; font-weight: 600; }
.mini-cart-footer { padding: 12px 18px; border-top: 1px solid var(--cream-border); }
.mini-cart-total { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; margin-bottom: 10px; color: black; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: var(--r-sm); flex-shrink: 0; }
.hamburger:hover { background: var(--cream); }
.hamburger span { width: 20px; height: 1.5px; background: var(--dark); display: block; border-radius: 2px; transition: all 0.28s ease; }

/* ════════════════════════════════════════════════════════════
   MOBILE MENU  (slide from left)
   ════════════════════════════════════════════════════════════ */
.mobile-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 990;
  opacity: 0; pointer-events: none;
  transition: opacity 0.28s ease;
}
.mobile-menu-overlay.open { opacity: 1; pointer-events: all; }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 300px;
  background:#FDF9F0;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--cream-border);
}
.mobile-menu-close {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; border-radius: 50%; color: var(--text);
  transition: background var(--t);
}
.mobile-menu-close:hover { background: var(--cream); }

.mobile-nav { flex: 1; padding: 8px 10px; }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 12px;
     font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: #31503c;
  border-radius: var(--r-sm);
  transition: background var(--t);
}
.mobile-nav-link:hover { background: var(--cream); color: var(--brown-dark); }
.mobile-nav-toggle { font-size: 11px; color: var(--text-muted); transition: transform var(--t); background: none; border: none; cursor: pointer; }
.mobile-nav-sub { padding: 2px 0 2px 12px; display: none; flex-direction: column; gap: 1px; }
.mobile-nav-sub.open { display: flex; }
.mobile-nav-sub a { display: block; padding: 8px 12px; font-size: 13px; color: var(--text); border-radius: var(--r-sm); transition: all var(--t); }
.mobile-nav-sub a:hover { color: var(--brown-dark); background: var(--cream); }

.mobile-menu-footer { padding: 14px 16px; border-top: 1px solid var(--cream-border); display: flex; flex-direction: column; gap: 8px; }

/* ════════════════════════════════════════════════════════════
   BUTTONS  (Vilvah: stark black primary, cream secondary)
   ════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 26px;
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--t);
}
.btn-primary { background:#CC6328; color: #fff; border-color: var(--black); }
.btn-primary:hover { background: var(--brown-dark); border-color: var(--brown-dark); }
.btn-outline { background: transparent; color: #1a1a1a; border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: #fff; }
.btn-outline-brown { background: transparent; color: var(--brown-dark); border-color: var(--brown-dark); }
.btn-outline-brown:hover { background: var(--brown-dark); color: #fff; }
.btn-cream { background:#ef5958; color:white; border-color: var(--cream-border); }
.btn-cream:hover { background: var(--cream-border); }
.btn-sm { padding: 8px 18px; font-size: 16px; }
.btn-lg { padding: 14px 34px; font-size: 13px; }
.btn-block { width: 100%; }
.btn-loading { pointer-events: none; opacity: 0.6; }

/* Vilvah-style add-to-cart: full-width black bar at card bottom */
.btn-atc {
  width: 100%;
  background:#CC6328;
  color: #fff;
  border: none;
  padding: 11px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;

  /* 🔥 CHANGE HERE */
  border-radius: var(--r) var(--r) 0 0;

  cursor: pointer;
  transition: background var(--t);
}
.btn-atc:hover { background:#914A23; }
.btn-atc.added { background: var(--green); }
.btn-atc.loading { background: #666; pointer-events: none; }

/* ════════════════════════════════════════════════════════════
   HERO SLIDER  (Vilvah: full-width images, dot controls)
   ════════════════════════════════════════════════════════════ */
.hero-slider { position: relative; overflow: hidden; background: #FDF9F0; }
.hero-slide { display: none; }
.hero-slide.active { display: block; }
.hero-slide a, .hero-slide > div { display: block; }
.hero-slide img { width: 100%; aspect-ratio: 21/8; object-fit: cover; display: block; padding:10px; border-radius:40px; }
.hero-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.hero-dot {
  width: 26px;
  height: 3px;
  background: rgba(255,255,255,0.45);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--t);
}


.faq-container {
  max-width: 100%;
  padding: 20px;
  font-family: Arial;
}

.faq-title {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

.faq {
  background: #f5f5f5;
  border-radius: 12px;
  margin-left: 8%;
  margin-right: 8%;
}
@media screen and (max-width: 425px) {
  .faq {
    margin: 5px;
  }
}
.faq-item {
  border-bottom: 1px solid #e8e0d4;
}

.faq-item:hover {
  border-color: #c8a87a;
}

.faq-question {
  width: 100%;
  padding: 18px;
      font-size: 18px;
  border: none;
  background: none;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-num {
  font-family: var(--cp-font-heading, 'Playfair Display', Georgia, serif);
  font-size: 13px;
  font-weight: 700;
  color: #c8a87a !important;
  min-width: 22px;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  font-size: 17px;
  overflow: hidden;
  transition: 0.4s;
  padding: 0 18px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 15px;
  background: rgb(224, 198, 159);
  color: #c0392b;
}

.icon {
  transition: 0.3s;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}


.hero-dot.active { background: var(--white); width: 42px; }
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.88);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  cursor: pointer;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  color: var(--dark);
  transition: all var(--t);
}
.hero-arrow:hover { background: #fff; box-shadow: var(--shadow); }
.hero-arrow.prev { left: 14px; }
.hero-arrow.next { right: 14px; }

/* ════════════════════════════════════════════════════════════
   TICKER  (Vilvah's scrolling label strip below hero)
   ════════════════════════════════════════════════════════════ */
.ticker-strip {
background-color:#F2E5D6;
  border-top: 1px solid #31503c;
  border-bottom: 1px solid #31503c;
  padding: 9px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 10s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
      text-transform: uppercase;
  gap: 10px;
  padding: 0 36px;
 
      font-size:16px;
    font-weight: 700;
  color:#31503c;
  letter-spacing: 0.3px;
}
.ticker-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--brown-light); flex-shrink: 0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ════════════════════════════════════════════════════════════
   QUICK CATEGORY TILES  (Vilvah: 4-up row with image cards)
   ════════════════════════════════════════════════════════════ */
.quick-section { padding: 28px 0 24px; }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.quick-tile {
  display: block;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/2.5;
  box-shadow: var(--shadow-xs);
  transition: transform var(--t), box-shadow var(--t);
}
.quick-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.quick-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-md); }
.quick-tile:hover img { transform: scale(1.04); }

/* ════════════════════════════════════════════════════════════
   SECTION HEADER  (Vilvah: left-aligned serif title + "View More")
   ════════════════════════════════════════════════════════════ */
.sec-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 10px;
}
.sec-title {

  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 600;
text-transform: math-auto;
  color:#ef5958;
  line-height: 1.2;
  margin-bottom: 3px;
}
.sec-sub { font-size: 20px; color: #31503c; }
.sec-view-more {
  font-size:18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color:#31503c;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  transition: color var(--t);
}
.sec-view-more:hover { color: var(--black); }

/* ════════════════════════════════════════════════════════════
   PRODUCT CARDS  (Vilvah: exact card layout)
   ════════════════════════════════════════════════════════════ */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.products-grid--3 { grid-template-columns: repeat(3, 1fr); }
.products-grid--5 { grid-template-columns: repeat(5, 1fr); }

.pcard {

  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow var(--t), transform var(--t);
}


/* Image container – Vilvah: image swaps on hover */
.pcard-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
 
  display: block;
}
.pcard-img img {     border-radius: 20px;width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity 0.3s ease; }
.pcard-img .img-hover { position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s ease; }
.pcard:hover .pcard-img .img-hover { opacity: 1; }
.pcard:hover .pcard-img .img-main { opacity: 0; }


/* Vilvah badges – positioned top-left */
.pcard-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 4px; z-index: 2; }
.pbadge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}
.pbadge-sale { background: var(--cream-dark); color: var(--brown-dark); border: 1px solid var(--cream-border); }
.pbadge-new { background: var(--green-bg); color: var(--green-dark); border: 1px solid #b8dfc3; }
.pbadge-best { background: #f0ead6; color: #8c8218; border: 1px solid #d4c9a8; }
.pbadge-viral { background: var(--red-bg); color: var(--red); border: 1px solid #f5c6c6; }
.pbadge-offer { background: var(--cream-dark); color: var(--brown-dark); border: 1px solid var(--cream-border); }

/* Wishlist icon – appears on hover */
.pcard-wish {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px; height: 30px;
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
  transition: all var(--t);
}
.pcard:hover .pcard-wish { opacity: 1; }
.pcard-wish:hover { background: var(--cream-dark); }

/* Card body */
.pcard-body { padding: 5px 5px 0; flex: 1; display: flex; flex-direction: column; }

.pcard-cat {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color:#ef5958;
  margin-bottom: 3px;
}
.pcard-name {
  
  font-size: 30px;
  font-family: var(--product-name-font);
  font-weight: 700;
  color: #262626;
  line-height: 1.25;
      text-transform: full-width;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}
.pcard-name a { color:#31503c; }
.pcard-name a:hover { color: var(--brown-dark); }
.pcard-tagline {     font-size: 18px;
    color: #616161;
    line-height: 1.4;
    margin-bottom: 5px;
    margin-top: 5px; }
.pcard-rating { display: flex; align-items: center; gap: 5px; margin-bottom: 8px; }
.stars {     color: goldenrod;
    font-size: 20px; letter-spacing: 1px; }
.pcard-reviews {     font-size: 18px;
    color: #ef5958; }
.pcard-price { display: flex; align-items: baseline; gap: 7px; margin-bottom: 11px; }
.pcard-price { margin-bottom: 8px; }
.price-now { font-size: 20px; font-weight: 700; color: var(--dark); }
.price-was { font-size: 12.5px; color: var(--text-faint); text-decoration: line-through; }
.price-off { font-size: 10.5px; font-weight: 700; color: var(--green); background: var(--green-bg); padding: 1px 6px; border-radius: 3px; }

/* ════════════════════════════════════════════════════════════
   CATEGORY BROWSE  (Vilvah: tabbed category with horizontal scroll)
   ════════════════════════════════════════════════════════════ */
.cat-tabs-section { padding: 44px 0;}
.cat-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.cat-tab {
  padding: 8px 18px;
  border: 1.5px solid var(--cream-border);
  border-radius: 24px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  cursor: pointer;
  transition: all var(--t);
}
.cat-tab:hover { border-color: var(--brown-light); color: var(--brown-dark); }
.cat-tab.active { background: var(--brown-dark); border-color: var(--brown-dark); color: #fff; }
.cat-panel { display: none; }
.cat-panel.active { display: block; }

/* ════════════════════════════════════════════════════════════
   SHOP-BY-CONCERN  (Vilvah: circular/pill concern grid)
   ════════════════════════════════════════════════════════════ */
.concern-section { padding: 36px 0;  }
.concern-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.concern-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  background:#F7EFE9;
  
  border-radius: var(--r);
  padding: 18px 10px;
  text-align: center;
  text-decoration: none;
  transition: all var(--t);
}
.concern-tile:hover { border-color: var(--brown-light); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.concern-icon { font-size: 24px; color:#31503c; }
.concern-name { font-size:20px; font-weight: 600; color:#ef5958; line-height: 1.3; }
.concern-hint { font-size: 16px; color: #31503c; }

/* ════════════════════════════════════════════════════════════
   TRUST / FEATURES BAR  (Vilvah: 4-col strip)
   ════════════════════════════════════════════════════════════ */
.trust-bar {
  background:#31503c;
  border-top: 1px solid var(--cream-border);
  border-bottom: 1px solid var(--cream-border);
  padding: 18px 0;
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 18px;
  border-right: 1px solid var(--cream-border);
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 22px; flex-shrink: 0; }
.trust-text h5 { font-size: 20px; font-weight: 600; color:#ef5958; margin-bottom: 1px; }
.trust-text p {     font-size: 16px;
    color: white; margin: 0; line-height: 1.4; }

/* ════════════════════════════════════════════════════════════
   WHY US  (4-grid with border cards)
   ════════════════════════════════════════════════════════════ */
.why-section { 
    padding: 52px 0;
    background: white;
}
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 16px;
  border: 1px solid #31503c;
  border-radius: var(--r-xl);
  background:#F2E5D6;
  transition: box-shadow var(--t), transform var(--t);
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.why-icon {
  font-size: 36px;
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  width: 100%;
}
.why-icon img {
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.why-card h4 {
  font-size:20px;
  font-weight: 600;
  color:#ef5958;
  margin-bottom: 7px;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-card p { font-size: 20px; color:#31503c; line-height: 1.7; }

/* Our Process cards */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-card {
  text-align: center;
  padding: 28px 16px;
  border: 1px solid var(--cream-border);
  border-radius: var(--r-xl);
  background: #fff;
}
.process-icon-wrap {
  width: 70px;
  height: 70px;
  background: #31503c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.process-icon-img { width: 130%; height: auto; display: block; }
.process-title { font-size: 22px; color: #ef5958; margin-bottom: 7px; }
.process-desc { font-size: 20px; color: #31503c; line-height: 1.7; }

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS  (Vilvah: 3-col white cards on cream bg)
   ════════════════════════════════════════════════════════════ */
.testimonials-section { padding: 52px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tcard {
  background:#31503c;
  border: 1px solid var(--cream-border);
  border-radius: var(--r-xl);
  padding: 24px;
  transition: box-shadow var(--t);
}
.tcard:hover { box-shadow: var(--shadow); }
.tcard-stars {     color: goldenrod;
    font-size: 20px; letter-spacing: 2px; margin-bottom: 11px; }
.tcard-text { font-size: 18px; line-height: 1.75; color:white; margin-bottom: 17px; }
.tcard-author { display: flex; align-items: center; gap: 10px; }
.tcard-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brown-light), var(--brown-dark));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}
.tcard-name { font-size: 20.5px; font-weight: 600; color:#ef5958; }
.tcard-loc { font-size: 18.5px; color: #ef5958; margin-top: 1px; }

/* ════════════════════════════════════════════════════════════
   NEWSLETTER  (Vilvah: black section, 2-col, serif heading)
   ════════════════════════════════════════════════════════════ */
.newsletter-section { background: var(--black); padding: 56px 0; }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.newsletter-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 600;
  font-style: italic;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.25;
}
.newsletter-text p { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.75; }
.newsletter-form { display: flex; }
.newsletter-form input {
  flex: 1;
  padding: 13px 17px;
  border: 1px solid rgba(255,255,255,0.18);
  border-right: none;
  background: rgba(255,255,255,0.07);
  color: #fff;
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  outline: none;
  font-size: 13.5px;
  font-family: var(--font);
  transition: border-color var(--t);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.32); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.45); }
.newsletter-form button {
  padding: 13px 22px;
  background: var(--brown-dark);
  color: #fff;
  border: none;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-family: var(--font);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--t);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--brown); }

/* ════════════════════════════════════════════════════════════
   FOOTER  (Vilvah: dark, 4-col grid)
   ════════════════════════════════════════════════════════════ */
.footer { background: linear-gradient(to bottom, #ef5958, #31503c); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-main {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1fr;
  gap: 44px;
  padding: 50px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .logo-text .brand { color: #fff; }
.footer-brand .logo-text .tagline { color: rgba(255,255,255,0.3); }
.footer-brand-desc { font-size: 20px; color:white; line-height: 1.8;     margin: 0px 30px 16px; }
.footer-social { display: flex; gap: 7px; }
.footer-social a {
  width: 33px; height: 33px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: all var(--t);
}
.footer-social a:hover { background: var(--brown-dark); border-color: var(--brown-dark); }
.footer-col h4 {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: capitalize;
  color:white;
  margin-bottom: 30px;
}
.footer-links { display: flex; flex-direction: column; gap: 7px; }
.footer-links a {
  font-size: 20px;
  color:white;
  transition: all var(--t);
  display: inline-block;
}
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-chip {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color:white;
  padding: 4px 13px;
  border-radius: 20px;
  font-size:16px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color:white; transition: color var(--t);font-size: 16px; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ════════════════════════════════════════════════════════════
   PAGE HERO BANNER
   ════════════════════════════════════════════════════════════ */
.page-hero {
  background:#31503c;
  border-bottom: 1px solid var(--cream-border);
  padding: 32px 0;
  text-align: center;
}
.page-hero h1 {
  
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
     text-transform: uppercase;
  font-weight: 600;
  color:white;
  margin-bottom: 9px;
}
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 5px; font-size: 20px; color:white; }
.breadcrumb a { color:white; }
.breadcrumb a:hover { color: var(--brown-dark); }
.breadcrumb-sep { opacity: 0.45; }

/* ════════════════════════════════════════════════════════════
   SHOP PAGE
   ════════════════════════════════════════════════════════════ */
.shop-layout { display: grid; grid-template-columns: 210px 1fr; gap: 28px; padding: 28px 0 60px; align-items: start; }
.shop-sidebar { position: sticky; top: calc(var(--header-h) + 14px); }
.filter-group { margin-bottom: 24px; }
.filter-group-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color:#ef5958;
  margin-bottom: 11px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--cream-border);
}
.filter-opts { display: flex; flex-direction: column; gap: 7px; }
.filter-opt { display: flex; align-items: center; gap: 7px;     font-size: 20px;
    font-weight: 500;
    color: #31503c; cursor: pointer; transition: color var(--t); }
.filter-opt:hover { color: var(--brown-dark); }
.filter-opt input { accent-color: var(--brown-dark); }
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--cream-border);
  gap: 10px;
  flex-wrap: wrap;
}
.shop-count {
    font-weight: 500;
    font-size: 22.5px;
    color: #ef5958;
}
.shop-sort {
  padding: 8px 12px;
  border: 1px solid var(--cream-border);
  border-radius: var(--r-sm);
  font-size: 20px;
  color:white;
  background:#ef5958;
  outline: none;
  cursor: pointer;
  font-family: var(--font);
}
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* ════════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ════════════════════════════════════════════════════════════ */
.pd-layout {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(360px, 1fr);
  gap: 38px;
  padding: 32px 0 60px;
  align-items: start;
}
.pd-gallery-main {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, #fdf8ef 0%, #f6ede4 100%);
  margin-bottom: 18px;
  box-shadow: 0 22px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(122,85,48,0.06);
}
.pd-gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s ease; }
.pd-thumbs { display: flex; gap: 12px; margin-top: 12px; }
.pd-thumb {
  width: 72px; height: 72px;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--t);
  background: var(--cream);
  flex-shrink: 0;
}
.pd-thumb.active { border-color: var(--brown-dark); }
.pd-thumb:hover { border-color: var(--brown-light); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-cat-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 7px; display: block; }
.pd-title {
    font-family: var(--product-name-font);
    font-size: 2.8rem;
    font-weight: 700;
    /* font-style: italic; */
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 5px;
}
.pd-tagline { font-size: 14px; color:rgb(0 0 0); margin-bottom: 13px; }
.pd-rating-row { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.pd-price-row { display: flex; align-items: baseline; gap: 11px; margin-bottom: 20px; }
.pd-price-now { font-size: 1.4rem; font-weight: 700; color: var(--dark); }
.pd-price-was { font-size: 1rem; text-decoration: line-through; color: var(--text-faint); }
.pd-price-save { font-size: 11.5px; font-weight: 700; background: var(--green-bg); color: var(--green-dark); padding: 2px 8px; border-radius: 4px; }
.pd-price-note { font-size: 12px; color: var(--text-muted); margin-top: -6px; margin-bottom: 14px; }
.pd-desc { font-size: 15px; line-height: 1.8; color: var(--text); margin-bottom: 22px; }
.pd-benefits { display: flex; flex-direction: column; gap: 5px; margin-bottom: 20px; }
.pd-benefit { font-weight: 500; display: flex; align-items: center; gap: 8px; font-size: 14px; }
.pd-benefit::before {
  content: '✓';
  color: var(--green);
  font-size: 16px;
  display: inline-flex;
  align-items: center;
}
.pd-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.pd-qty button {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  border: 1px solid var(--cream-border);
  background: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--t), background var(--t);
}
.pd-qty button:hover { border-color: var(--brown-dark); }
.pd-qty span {
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}
.pd-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.pd-actions .btn-primary {
  background: #1b1b1b;
  border-color: #1b1b1b;
}
.pd-actions .btn-primary:hover { background: var(--brown-dark); border-color: var(--brown-dark); }
.pd-actions .btn-outline { border-color: var(--brown-dark); color: var(--brown-dark); }
.pd-actions .btn-outline:hover { background: var(--brown-dark); color: #fff; }
.pd-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 12px; padding-top: 14px; border-top: 1px solid var(--cream-border); }
.pd-meta-row { display: flex; flex-direction: column; gap: 3px; }
.pd-meta-label { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); }
.pd-meta-label { font-weight: 600; color: var(--dark); min-width: 100px; }
.pd-meta-val { color: var(--text-muted); }

.pd-info-panel {
  background: #fff;
  padding: 26px 28px 26px;
  border-radius: 32px;
  border: 1px solid rgba(122,85,48,0.12);
  box-shadow: 0 30px 70px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pd-rating-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 0.2em;
}
.pd-rating-count {
  font-size: 13px;
  color: var(--brown-dark);
  font-weight: 600;
}
.pd-price-row { flex-wrap: wrap; }
.pd-price-now { font-size: clamp(2rem, 3vw, 2.4rem); }

/* ════════════════════════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════════════════════════ */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 60px 0; }
.about-img { border-radius: var(--r-2xl); overflow: hidden; aspect-ratio: 4/5; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-content .tag-label {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color:white;
  background:#ef5958;
  border: 1px solid var(--cream-border);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 14px;
}
.about-content h2 {
  
  font-size: clamp(2.5rem, 2.3vw, 2rem);
  color: #ef5958;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
}
.about-content p { font-size:20px; color:#31503c; line-height: 1.85; margin-bottom: 13px; font-family: fantasy; }

/* Stats bar */
.stats-bar { background:#31503c; border-top: 1px solid var(--cream-border); border-bottom: 1px solid var(--cream-border); padding: 28px 0; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 0 18px; border-right: 1px solid var(--cream-border); }
.stat-item:last-child { border-right: none; }
.stat-number {     font-size: 50px;
    font-weight: 600;
    color: white; }
.stat-label {     font-size: 24px;
    color: white; margin-top: 3px; }

/* Values grid */
.values-grid { display: grid;    text-align: center; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 44px 0; }
.value-card { background: #F2E5D6; border: 1px solid var(--cream-border); border-radius: var(--r-xl); padding: 28px 20px; transition: box-shadow var(--t); }
.value-card:hover { box-shadow: var(--shadow); }
.value-icon { font-size:50px; margin-bottom: 11px; display: block; }
.value-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 7px; color:#ef5958; }
.value-card p { font-size: 18.5px; color:#31503c; line-height: 1.7; }

/* ════════════════════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding: 56px 0; align-items: start; }
.contact-form-group { margin-bottom: 15px; }
.contact-form-group label { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--dark); margin-bottom: 5px; }
.contact-form-group input,
.contact-form-group textarea,
.contact-form-group select {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--cream-border);
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--t);
  font-family: var(--font);
}
.contact-form-group input:focus,
.contact-form-group textarea:focus { border-color: var(--brown-dark); }
.contact-form-group textarea { resize: vertical; min-height: 118px; }
.contact-info-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 20px; }
.contact-info-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-info-title { font-size: 12.5px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.contact-info-val { font-size: 13px; color: var(--text-muted); }

/* ════════════════════════════════════════════════════════════
   CART PAGE
   ════════════════════════════════════════════════════════════ */
.cart-layout { display: grid; grid-template-columns: 1fr 350px; gap: 28px; padding: 36px 0 60px; align-items: start; }
.cart-item { display: grid; grid-template-columns: 84px 1fr auto; gap: 14px; align-items: center; padding: 17px 0; border-bottom: 1px solid var(--cream-border); }
.cart-item-img { width: 84px; height: 84px; border-radius: var(--r-sm); overflow: hidden; background: var(--cream); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 3px; }
.cart-item-cat { font-size: 12px; color: var(--text-muted); margin-bottom: 7px; }
.cart-qty { display: flex; align-items: center; border: 1px solid var(--cream-border); border-radius: var(--r-sm); width: fit-content; }
.cart-qty button { width: 29px; height: 29px; display: flex; align-items: center; justify-content: center; font-size: 15px; transition: background var(--t); }
.cart-qty button:hover { background: var(--cream); }
.cart-qty span { padding: 0 12px; font-size: 13.5px; font-weight: 600; color: var(--dark); }
.cart-item-price { font-size: 14px; font-weight: 700; color: var(--dark); text-align: right; }
.cart-summary { background: var(--cream); border-radius: var(--r-xl); padding: 24px; border: 1px solid var(--cream-border); position: sticky; top: calc(var(--header-h) + 18px); }
.cart-summary-title { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; color: var(--dark); }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 13.5px; margin-bottom: 8px; color: var(--text); }
.cart-summary-row.total { font-size: 15px; font-weight: 700; color: var(--dark); padding-top: 11px; border-top: 1px solid var(--cream-border); margin-top: 11px; }

/* ════════════════════════════════════════════════════════════
   FORM ELEMENTS
   ════════════════════════════════════════════════════════════ */
.form-group { margin-bottom: 15px; }
.form-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--dark); margin-bottom: 5px; }
.form-input {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--cream-border);
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--t);
  font-family: var(--font);
}
.form-input:focus { border-color: var(--brown-dark); }
.form-input::placeholder { color: var(--text-faint); }

/* ════════════════════════════════════════════════════════════
   INSTAGRAM / GALLERY STRIP
   ════════════════════════════════════════════════════════════ */
.insta-section { padding: 40px 0; background: var(--cream-dark); }
.insta-hd {
  text-align: center;
  margin-bottom: 22px;
}
.insta-hd span { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.insta-hd h3 { font-family: var(--font-serif); font-size: 1.4rem; font-style: italic; color: var(--dark); }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 7px; }
.insta-tile { aspect-ratio: 1; overflow: hidden; border-radius: var(--r-sm); position: relative; cursor: pointer; }
.insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-md); }
.insta-tile:hover img { transform: scale(1.07); }
.insta-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.28);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--t);
  font-size: 20px;
}
.insta-tile:hover .insta-overlay { opacity: 1; }

/* ════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ════════════════════════════════════════════════════════════
   FLASH MESSAGE
   ════════════════════════════════════════════════════════════ */
.flash-message {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--r-xl);
  font-size: 13.5px;
  font-weight: 500;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s ease;
}
.flash-message.error { background: var(--red); }
.flash-message.success { background: var(--green); }

/* ════════════════════════════════════════════════════════════
   LOADING SPINNER
   ════════════════════════════════════════════════════════════ */
.loading-spinner {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ════════════════════════════════════════════════════════════
   TABS (product detail)
   ════════════════════════════════════════════════════════════ */
.tabs-row {
  display: flex;
  border-bottom: 1px solid var(--cream-border);
  margin-bottom: 22px;
  gap: 0;
}
.tab-btn {
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: all var(--t);
  font-family: var(--font);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.tab-btn:hover { color: var(--dark); }
.tab-btn.active { color: var(--brown-dark); border-bottom-color: var(--brown-dark); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE  –  5 clean breakpoints, no layout jumps
   1200 → 1024 → 768 → 480 → 360
   ════════════════════════════════════════════════════════════ */

/* ── 1200px: large tablets / small laptops ──────────────── */
@media (max-width: 1200px) {
  /* Shrink nav padding so links fit */
  .nav-link { padding: 0 10px; font-size: 12.5px; }
  /* Shrink search bar */
  .header-search { width: 170px; margin: 0 10px; }
  /* Products: 3 cols */
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  /* Shop: narrower sidebar */
  .shop-layout { grid-template-columns: 190px 1fr; }
  /* About / product detail stacks */
  .about-story { grid-template-columns: 1fr; gap: 36px; }
  .pd-layout   { grid-template-columns: 1fr; }
  /* Footer */
  .footer-main { grid-template-columns: 1fr 1fr; gap: 30px; }
  /* Newsletter */
  .newsletter-inner { grid-template-columns: 1fr; gap: 26px; text-align: center; }
}

/* ── 1024px: iPad landscape / small laptop  ─────────────── */
@media (max-width: 1024px) {
  /* Hide search bar to prevent overflow, keep nav visible */
  .header-search { display: none; }
  /* Tighten nav links further */
  .nav-link { padding: 0 8px; font-size: 12px; letter-spacing: 0; }
  /* Reduce logo size */
  .logo-text .brand { font-size: 1.25rem; }
  .logo-text .tagline { display: none; }
  /* Products: 3 cols */
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .shop-grid     { grid-template-columns: repeat(3, 1fr); }
  /* Concern grid */
  .concern-grid { grid-template-columns: repeat(4, 1fr); }
  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  /* Trust bar */
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(4) { border-right: none; }
  /* Quick tiles */
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  /* Why grid */
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  /* Stats */
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  /* Values */
  .values-grid { grid-template-columns: 1fr 1fr; }
}

/* ── 768px: tablet portrait / large phone ───────────────── */
@media (max-width: 768px) {
  /* Switch to hamburger menu */
  .hamburger { display: flex; }
  .cat-tabs {
  display:block;
  align-items: center;
  text-align: center;
  gap: 6px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.concern-tile {
     display: block;
    margin-bottom: 20px;
}
.concern-grid {
    display:block !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}
  .main-nav   { display: none; }
  /* Header becomes: hamburger | logo | actions */
  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }
  .logo {
    width: auto;
    justify-self: center;
    justify-content: center;
  }
  .logo img {
    width: 170px;
    max-width: 100%;
    margin-top: 0;
    height: auto;
  }
  .h-btn {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
  .cart-count {
    top: 3px;
    right: 3px;
  }
  /* Header height */
  :root { --header-h: 60px; }

  /* Products: 2 cols */
  .products-grid {         grid-template-columns: repeat(1, 1fr); gap: 14px; }
  .cat-tabs-section .products-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Shop: sidebar becomes horizontal filter bar above products ── */
  .shop-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 16px 0 48px;
  }
  .shop-sidebar {
    position: static;
    top: auto;
    width: 100%;
    background: var(--white);
    border: 1px solid var(--cream-border);
    border-radius: var(--r);
    margin-bottom: 18px;
    padding: 0;
    overflow: hidden;
  }
  /* Filter groups lay out in a horizontal scrollable row */
  .shop-sidebar .filter-group {
    display: inline-block;
    vertical-align: top;
    margin-bottom: 0;
    padding: 14px 16px;
    border-right: 1px solid var(--cream-border);
    border-bottom: none;
    min-width: 145px;
  }
  .shop-sidebar .filter-group:last-of-type { border-right: none; }
  /* Scroll wrapper — wraps all filter-groups in shop.php */
  .shop-sidebar { overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .shop-sidebar::-webkit-scrollbar { display: none; }
  .shop-sidebar .filter-opts { white-space: normal; }
  /* Clear filters button inside sidebar */
  .shop-sidebar .btn-block { display: inline-block; width: auto; margin: 10px 16px 14px; white-space: nowrap; }

  /* Shop grid: 2 cols */
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  /* Toolbar */
  .shop-toolbar {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    margin-bottom: 14px;
  }
  .shop-count { font-size: 12px; }
  .shop-sort  { font-size: 12px; padding: 7px 10px; }

  /* Product card: hide tagline + reviews to save space */
  .pcard-body { padding: 9px 10px 0; }
  .pcard-tagline { display: none; }
  .pcard-cat     { font-size: 9px; }
  .pcard-name    { font-size: 12.5px; }
  .pcard-reviews { display: none; }
  .price-now     { font-size: 13px; }
  .price-was     { font-size: 11px; }
  .price-off     { display: none; }
  .btn-atc       { font-size: 11.5px; padding: 9px 8px; letter-spacing: 0.3px; }
  .pbadge        { font-size: 8px; padding: 2px 6px; }

  /* Concern */
  .concern-grid { grid-template-columns: repeat(3, 1fr); }
  /* Why */
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  /* Trust */
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  /* Cart */
  .cart-layout { grid-template-columns: 1fr; }
  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  /* Values */
  .values-grid { grid-template-columns: 1fr 1fr; }
  /* Stats */
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  /* Newsletter */
  .newsletter-inner { text-align: center; }
  /* Hero */
  .hero-slide img { aspect-ratio: 16/9; }
}

/* ── 480px: mobile phones ───────────────────────────────── */
@media (max-width: 480px) {
  :root { --header-h: 56px; }
  .container { padding: 0 14px; }

  /* Products: 2 cols, tighter */
  .products-grid { grid-template-columns: repeat(1, 1fr); gap: 10px; }

  /* Shop grid: 2 cols */
  .shop-grid { grid-template-columns: repeat(1, 1fr); gap: 10px; }

  /* Sidebar filter groups stack vertically on phones */
  .shop-sidebar { overflow-x: visible; white-space: normal; }
  .shop-sidebar .filter-group {
    display: block;
    border-right: none;
    border-bottom: 1px solid var(--cream-border);
    padding: 12px 14px;
    min-width: auto;
  }
  .shop-sidebar .filter-group:last-of-type { border-bottom: none; }
  .shop-sidebar .btn-block { display: block; width: calc(100% - 28px); }

  /* Concern: 2 cols */
  .concern-grid { grid-template-columns: repeat(2, 1fr); }
  /* Quick tiles: 2 cols */
  .quick-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  /* Why: 1 col */
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 14px; }
  .process-card { padding: 20px 14px; }
  .process-icon-wrap { width: 58px; height: 58px; margin-bottom: 10px; }
  .process-title { font-size: 19px; }
  .process-desc { font-size: 16px; line-height: 1.6; }
  /* Testimonials: 1 col */
  .testimonials-grid { grid-template-columns: 1fr; }
  /* Footer: 1 col */
  .footer-main { grid-template-columns: 1fr; }
  .footer-col { text-align: center; }
  /* Instagram grid */
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  /* Values */
  .values-grid { grid-template-columns: 1fr; }
  /* Stats */
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  /* Hero */
  .hero-slide img { aspect-ratio: 4/3; }

  /* Smaller card text */
  .pcard-name { font-size: 12px; }
  .price-now  { font-size: 12.5px; }
  .btn-atc    { font-size: 11px; padding: 8px 6px; }
  .pcard-wish { width: 26px; height: 26px; font-size: 11px; }

  /* Section headings center on mobile */
  .sec-hd { flex-direction: column; align-items: center; gap: 6px; }
}

/* ── 360px: very small phones ───────────────────────────── */
@media (max-width: 360px) {
  .container { padding: 0 10px; }
  /* Single col products on very tiny screens */
  .products-grid { grid-template-columns: 1fr; }
  .shop-grid     { grid-template-columns: 1fr; }
  .logo-text .brand { font-size: 1.1rem; }
}

/* ════════════════════════════════════════════════════════════
   RAZORPAY CHECKOUT STYLES
   ════════════════════════════════════════════════════════════ */

/* Payment section badge */
.rzp-payment-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background: var(--cream-mid);
  border: 1.5px solid var(--cream-border);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  margin-bottom: 14px;
}
.rzp-badge-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rzp-badge-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
}
.rzp-badge-icons {
  display: flex;
  gap: 6px;
  font-size: 18px;
}
.rzp-info-text {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}

/* Pay Now button */
.rzp-pay-btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  border-radius: var(--r-sm);
  background: var(--brown-dark);
  color: var(--cream);
  border: none;
  cursor: pointer;
  transition: background var(--t), transform 0.1s ease, box-shadow var(--t);
  box-shadow: 0 4px 16px rgba(80,75,56,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}
.rzp-pay-btn:hover:not(:disabled) {
  background: var(--brown-xdark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(80,75,56,0.30);
}
.rzp-pay-btn:active:not(:disabled) {
  transform: translateY(0);
}
.rzp-pay-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Inline spinner inside button */
.rzp-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(248,243,217,0.4);
  border-top-color: var(--cream);
  border-radius: 50%;
  animation: rzp-spin 0.7s linear infinite;
  vertical-align: middle;
}
@keyframes rzp-spin {
  to { transform: rotate(360deg); }
}

/* Status / error message box */
.rzp-status-box {
  padding: 12px 16px;
  border-radius: var(--r-xs);
  font-size: 13.5px;
  font-weight: 500;
  margin: 12px 0;
  line-height: 1.5;
}
.rzp-status-info {
  background: #e8e0c8;
  border-left: 3px solid #8c8218;
  color: #454411;
}
.rzp-status-success {
  background: #d4edda;
  border-left: 3px solid #28a745;
  color: #155724;
}
.rzp-status-error {
  background: #fde8e8;
  border-left: 3px solid #c0392b;
  color: #7b1c1c;
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .rzp-payment-badge { flex-direction: column; align-items: flex-start; }
  .rzp-pay-btn { font-size: 0.95rem; padding: 14px 20px; }
}

/* ════════════════════════════════════════════════════════════
   PREMIUM CHECKOUT & CART STYLES
   ════════════════════════════════════════════════════════════ */

/* ── SHARED HERO ─────────────────────────────────────────── */
.co-hero {
  background: linear-gradient(135deg, var(--cream-mid) 0%, var(--cream) 60%, #f0e9c8 100%);
  border-bottom: 1px solid var(--cream-border);
  padding: 36px 0 28px;
  margin-bottom: 36px;
}
.co-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.co-hero-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 6px;
}
.co-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}
.co-breadcrumb a { color: var(--dark); }
.co-breadcrumb a:hover { color: var(--brown); }

/* ── STEP INDICATOR ──────────────────────────────────────── */
.co-steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.co-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.co-step-dot {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--cream-mid);
  border: 2px solid var(--cream-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  color: var(--text-muted);
  transition: all .3s;
}
.co-step-active .co-step-dot {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--cream);
  box-shadow: 0 4px 12px rgba(80,75,56,.30);
}
.co-step-active { color: var(--dark); }
.co-step-done .co-step-dot {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--cream);
}
.co-step-done { color: var(--brown-dark); }
.co-step-line {
  width: 52px; height: 2px;
  background: var(--cream-border);
  margin: 0 4px;
  margin-bottom: 18px;
  border-radius: 2px;
}
.co-step-line-done { background: var(--brown); }

/* ── LAYOUT ──────────────────────────────────────────────── */
.co-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 28px;
  align-items: start;
  padding-bottom: 60px;
}
.co-form-col { display: flex; flex-direction: column; gap: 20px; }
.co-sum-col  { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 14px; }

/* ── CARD ────────────────────────────────────────────────── */
.co-card {
  background: #fff;
  border: 1px solid rgba(80,75,56,.12);
  border-radius: 14px;
  padding: 24px 26px;
  box-shadow: 0 2px 16px rgba(80,75,56,.06);
  transition: box-shadow .2s;
}
.co-card:hover { box-shadow: 0 4px 24px rgba(80,75,56,.10); }
.co-card-hdr {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
}
.co-card-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--cream-mid);
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  flex-shrink: 0;
}
.co-card-ttl {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: .2px;
}
.co-login-hint {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding: 10px 14px;
  background: var(--cream-mid);
  border-radius: 8px;
}
.co-login-hint a { color: var(--brown-dark); font-weight: 600; }

/* ── FLOATING LABEL INPUTS ───────────────────────────────── */
.co-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.co-span2 { grid-column: span 2; }
.co-fl {
  position: relative;
  display: flex;
  flex-direction: column;
}
.co-fl input, .co-fl textarea {
  width: 100%;
  padding: 16px 14px 6px;
  border: 1.5px solid var(--cream-border);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--dark);
  background: var(--cream);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.co-fl input:focus {
  border-color: var(--brown-dark);
  box-shadow: 0 0 0 3px rgba(80,75,56,.10);
  background: #fff;
}
.co-fl label {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--text-muted);
  pointer-events: none;
  transition: all .18s ease;
}
.co-fl input:focus ~ label,
.co-fl input:not(:placeholder-shown) ~ label {
  top: 8px;
  transform: translateY(0);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--brown-dark);
}
.co-fl em { color: var(--brown); font-style: normal; }

/* ── SELECT ──────────────────────────────────────────────── */
.co-sel-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.co-sel-wrap select {
  width: 100%;
  appearance: none;
  padding: 14px 36px 12px 14px;
  border: 1.5px solid var(--cream-border);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--dark);
  background: var(--cream);
  cursor: pointer;
  outline: none;
  transition: border-color .2s;
}
.co-sel-wrap select:focus { border-color: var(--brown-dark); }
.co-sel-wrap svg {
  position: absolute;
  right: 12px;
  color: var(--text-muted);
  pointer-events: none;
}
.co-sel-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--brown-dark);
  margin-top: 5px;
  margin-left: 4px;
}

/* ── CHECKBOX ────────────────────────────────────────────── */
.co-chk {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--dark);
  cursor: pointer;
}
.co-chk input { display: none; }
.co-chk-box {
  width: 18px; height: 18px;
  border: 2px solid var(--cream-border);
  border-radius: 5px;
  flex-shrink: 0;
  transition: all .2s;
  background: var(--cream);
}
.co-chk input:checked + .co-chk-box {
  background: var(--dark);
  border-color: var(--dark);
}

/* ── SHIPPING OPTIONS ────────────────────────────────────── */
.co-ship-opts { display: flex; flex-direction: column; gap: 10px; }
.co-ship-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 2px solid var(--cream-border);
  border-radius: 12px;
  cursor: pointer;
  transition: all .2s;
  background: var(--cream);
}
.co-ship-opt input { display: none; }
.co-ship-opt:hover { border-color: var(--brown); }
.co-ship-sel {
  border-color: var(--dark);
  background: rgba(80,75,56,.04);
}
.co-radio-ring {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--cream-border);
  flex-shrink: 0;
  position: relative;
  transition: all .2s;
}
.co-ship-sel .co-radio-ring {
  border-color: var(--dark);
  background: var(--dark);
  box-shadow: inset 0 0 0 4px var(--cream);
}
.co-ship-body { flex: 1; }
.co-ship-body strong { display: block; font-size: 14px; font-weight: 700; color: var(--dark); }
.co-ship-body span  { font-size: 12.5px; color: var(--text-muted); margin-top: 2px; display: block; }
.co-ship-price { font-size: 15px; font-weight: 700; color: var(--dark); }
.co-tag-free {
  background: linear-gradient(135deg, #2d7a4f, #3a9d66);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .5px;
}
.co-nudge {
  margin-top: 12px;
  padding: 11px 14px;
  background: linear-gradient(135deg, rgba(45,122,79,.08), rgba(45,122,79,.04));
  border: 1px solid rgba(45,122,79,.25);
  border-radius: 8px;
  font-size: 13px;
  color: #2d7a4f;
}

/* ── PAYMENT CARD ────────────────────────────────────────── */
.co-pay-card { background: linear-gradient(135deg, #fff 0%, #faf8f0 100%); }
.co-pm-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.co-pm-chip {
  padding: 6px 13px;
  background: var(--cream-mid);
  border: 1px solid var(--cream-border);
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dark);
}
.co-pay-hint {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.co-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--cream-border);
  font-size: 12px;
  color: var(--text-muted);
}
.co-trust span { display: flex; align-items: center; gap: 5px; }
.co-rzp-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ── PAY BUTTON ──────────────────────────────────────────── */
.co-pay-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 28px;
  background: linear-gradient(135deg, var(--brown-dark) 0%, #6b6347 50%, var(--brown-dark) 100%);
  background-size: 200% 200%;
  color: var(--cream);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .5px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all .3s;
  box-shadow: 0 6px 24px rgba(80,75,56,.28), 0 2px 8px rgba(80,75,56,.18);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.co-pay-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 60%;
  height: 200%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.14), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
  pointer-events: none;
}
.co-pay-btn:hover::before { left: 120%; }
.co-pay-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(80,75,56,.35), 0 4px 12px rgba(80,75,56,.22);
  background-position: right center;
}
.co-pay-btn:active:not(:disabled) { transform: translateY(0); }
.co-pay-btn:disabled { opacity: .65; cursor: not-allowed; }

.co-legal {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
}
.co-legal a { color: var(--brown-dark); text-decoration: underline; }

/* ── ORDER SUMMARY CARD ──────────────────────────────────── */
.co-sum-card {
  background: #fff;
  border: 1px solid rgba(80,75,56,.12);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(80,75,56,.08);
}
.co-sum-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.co-sum-hdr h3 { font-size: 16px; font-weight: 800; color: var(--dark); }
.co-sum-badge {
  background: var(--dark);
  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.co-sum-items { display: flex; flex-direction: column; gap: 14px; }
.co-sum-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.co-sum-img-wrap { position: relative; flex-shrink: 0; }
.co-sum-img-wrap img,
.co-sum-img-wrap svg { border-radius: 10px; }
.co-sum-qty-badge {
  position: absolute;
  top: -6px; right: -6px;
  width: 20px; height: 20px;
  background: var(--dark);
  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}
.co-sum-item-info { flex: 1; min-width: 0; }
.co-sum-item-name { font-size: 13px; font-weight: 600; color: var(--dark); line-height: 1.3; }
.co-sum-item-meta { font-size: 11.5px; color: var(--text-muted); margin-top: 2px; }
.co-sum-item-price { font-size: 14px; font-weight: 700; color: var(--dark); flex-shrink: 0; }
.co-sum-divider { height: 1px; background: var(--cream-mid); margin: 16px 0; }
.co-sum-rows { display: flex; flex-direction: column; gap: 10px; }
.co-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: var(--text-muted);
}
.co-sum-row span:last-child { font-weight: 600; color: var(--dark); }
.co-sum-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
}
.co-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--cream-border);
}
.co-perk-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-muted);
}
.co-help-box {
  background: var(--cream-mid);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.co-help-box a { color: var(--brown-dark); font-weight: 600; }

/* ── CART PREMIUM ────────────────────────────────────────── */
.cart-prem-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}
.cart-prem-aside { position: sticky; top: 100px; }
.cart-prem-hdr {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  background: var(--cream-mid);
  border-bottom: 1px solid rgba(80,75,56,.1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cart-prem-row {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(80,75,56,.07);
  gap: 12px;
  transition: background .15s;
}
.cart-prem-row:last-child { border-bottom: none; }
.cart-prem-row:hover { background: rgba(80,75,56,.02); }
.cart-prem-prod {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}
.cart-prem-img { border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.cart-prem-name {
  font-size: 14px;
  font-family: var(--product-name-font);
  font-weight: 700;
  color: var(--dark);
  display: block;
  margin-bottom: 3px;
  text-decoration: none;
}
.cart-prem-name:hover { color: var(--brown); }
.cart-prem-meta { font-size: 12px; color: var(--text-muted); }
.cart-prem-sale-badge {
  display: inline-block;
  margin-top: 4px;
  padding: 1px 8px;
  background: #c0392b;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: .5px;
}
.cart-col-price { width: 80px; text-align: center; font-size: 14px; font-weight: 600; color: var(--dark); }
.cart-col-qty   { width: 120px; text-align: center; }
.cart-col-sub   { width: 80px; text-align: right; font-size: 14px; font-weight: 700; color: var(--dark); }
.cart-prem-qty {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--cream-border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream);
}
.cart-prem-qty-btn {
  width: 32px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: none;
  border: none;
  font-size: 18px;
  color: var(--dark);
  cursor: pointer;
  transition: background .15s;
}
.cart-prem-qty-btn:hover { background: var(--cream-mid); }
.cart-prem-qty-val {
  width: 40px;
  text-align: center;
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  outline: none;
}
.cart-prem-remove {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(192,57,43,.08);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #c0392b;
  transition: background .15s;
  flex-shrink: 0;
}
.cart-prem-remove:hover { background: rgba(192,57,43,.16); }
.cart-prem-continue {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brown-dark);
  text-decoration: none;
  padding: 10px 16px;
  border: 1.5px solid var(--cream-border);
  border-radius: 8px;
  background: #fff;
  transition: all .2s;
}
.cart-prem-continue:hover {
  border-color: var(--dark);
  color: var(--dark);
}
.cart-coupon-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.cart-coupon-input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--cream-border);
  border-radius: 8px;
  font-size: 13.5px;
  font-family: var(--font);
  color: var(--dark);
  background: var(--cream);
  outline: none;
  transition: border .2s;
}
.cart-coupon-input:focus { border-color: var(--brown-dark); }
.cart-coupon-btn {
  padding: 10px 16px;
  background: var(--dark);
  color: var(--cream);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s;
}
.cart-coupon-btn:hover { background: var(--brown); }
.cpn-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(140,130,24,.12);
  color: var(--brown);
  border: 1px solid var(--cream-border);
}

/* Empty cart premium */
.cart-empty-premium {
  text-align: center;
  padding: 80px 40px;
}
.cart-empty-icon-wrap {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--cream-mid);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  color: var(--text-muted);
}
.cart-empty-premium h2 { font-size: 1.5rem; color: var(--dark); margin-bottom: 10px; }
.cart-empty-premium p  { color: var(--text-muted); margin-bottom: 28px; }

/* ── Razorpay status override ────────────────────────────── */
.rzp-status-box { border-radius: 10px; font-size: 13.5px; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .co-layout { grid-template-columns: 1fr; }
  .co-sum-col { position: static; }
  .cart-prem-layout { grid-template-columns: 1fr; }
  .cart-prem-aside { position: static; }
  .co-steps { display: none; }
}
@media (max-width: 600px) {
  .co-hero-title { font-size: 1.5rem; }
  .co-grid { grid-template-columns: 1fr; }
  .co-span2 { grid-column: span 1; }
  .co-card { padding: 18px; }
  .co-pay-btn { font-size: 14px; padding: 16px 20px; }
  .cart-prem-hdr .cart-col-price,
  .cart-prem-hdr .cart-col-sub { display: none; }
  .cart-prem-row .cart-col-price,
  .cart-prem-row .cart-col-sub { display: none; }
  .cart-col-qty { width: auto; }
}


.concern-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.concern-tile span {
  display: block;
}

.concern-tile span + span {
  margin-top: 12px;
}

.concern-tile {
     display: block;
    margin-bottom: 20px;
}

.concern-icon {
  display: block;
  margin-bottom: 12px !important;
}

.concern-name {
  display: block;
  margin-bottom: 8px !important;
}

.concern-hint {
  display: block;
}
.concern-tile {
  text-align: center;
}

.concern-icon {
  margin-bottom: 12px;
  font-size: 30px;
}

.concern-name {
  margin: 8px 0;
  font-weight: 600;
}

.concern-hint {
  line-height: 1.6;
     font-size: 18px;
    max-width: 330px;
  margin: 0 auto;
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px; /* 🔥 THIS FIXES EVERYTHING */
}

/* Dropdown container */
.nav-item.dropdown {
    position: relative;
}

/* Dropdown menu hidden by default */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    padding: 10px 0;
    list-style: none;
    display: block;
    height: auto !important;
    min-height: max-content;
    max-height: none !important;
    overflow: visible !important;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 1000;
}

/* Dropdown items */
.dropdown-menu li {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: 0.2s;
}

/* Hover effect */
.dropdown-menu li a:hover {
    background: #f5f5f5;
    color: #000;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Chevron styling */
.nav-chevron {
    font-size: 12px;
    margin-left: 5px;
}



.hidden {
  display: none;
}

/* .toggle-btn removed — view more/less feature removed */

.toggle-btn:hover {
  background: #1e5f49;
}

.long-content {
 font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin-top: 10px;
}

.long-content strong {
  display: block;
  margin-top: 10px;
  font-weight: 600;
}

.long-content br {
  margin-bottom: 6px;
}

.faq-image {
  margin-top: 40px;
}

.faq-image img {
  width: 100%;
  height: 467px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

