/* ============================================
   THE NUT NEST — Design System & Styles v2
   Premium fonts, SVG decorations, auto-hide nav
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --clr-primary: #5C3D2E;
  --clr-primary-dark: #3D2B1F;
  --clr-primary-light: #8B6B5A;
  --clr-accent: #C8956C;
  --clr-accent-gold: #D4A843;
  --clr-accent-green: #4A7C2E;
  --clr-accent-rose: #C47A8A;
  --clr-bg: #FFF8F0;
  --clr-bg-alt: #F5EDE4;
  --clr-bg-card: #FFFFFF;
  --clr-surface: #FEFEFE;
  --clr-text: #1A1A1A;
  --clr-text-muted: #6B6B6B;
  --clr-text-light: #9A9A9A;
  --clr-border: #E8DDD3;
  --clr-overlay: rgba(0, 0, 0, 0.5);
  --clr-shadow: rgba(92, 61, 46, 0.1);
  --ff-heading: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --fs-hero: clamp(2.4rem, 5vw, 4.5rem);
  --fs-h1: clamp(1.8rem, 4vw, 3rem);
  --fs-h2: clamp(1.5rem, 3vw, 2.4rem);
  --fs-h3: clamp(1.1rem, 2vw, 1.5rem);
  --fs-body: clamp(0.9rem, 1.2vw, 1rem);
  --fs-small: clamp(0.75rem, 1vw, 0.875rem);
  --fs-xs: 0.75rem;
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-section: clamp(60px, 8vw, 120px);
  --max-width: 1280px;
  --nav-height: 84px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 200ms var(--ease-out);
  --transition-base: 350ms var(--ease-out);
  --transition-slow: 500ms var(--ease-out);
  --shadow-sm: 0 1px 3px var(--clr-shadow);
  --shadow-md: 0 4px 12px var(--clr-shadow);
  --shadow-lg: 0 8px 30px var(--clr-shadow);
  --shadow-xl: 0 16px 50px rgba(92, 61, 46, 0.15);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none
}

ul,
ol {
  list-style: none
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: var(--sp-3) var(--sp-4);
  background: var(--clr-surface);
  color: var(--clr-text);
  outline: none;
  transition: border-color var(--transition-fast)
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--clr-accent)
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-6)
}


/* --- Skip Link (accessibility) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  background: var(--clr-primary-dark);
  color: #fff;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  font-weight: 600;
  z-index: 10000;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: var(--sp-2);
}

/* --- Section Base --- */
.section {
  padding: var(--sp-section) 0;
  position: relative;
  overflow: hidden;
  contain: content
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-12)
}

.section-header h2 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  color: var(--clr-primary-dark);
  margin-bottom: var(--sp-3);
  font-weight: 600
}

.section-header p {
  color: var(--clr-text-muted);
  font-size: var(--fs-body);
  max-width: 560px;
  margin: 0 auto
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-gold));
  margin: var(--sp-4) auto;
  border-radius: var(--radius-full)
}

/* --- Vector Decorations (all sections) --- */
.vec-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.15;
  z-index: 0;
  transform: translateZ(0)
}

.vec-deco svg {
  width: 100%;
  height: 100%
}

.vec-deco.top-right {
  top: -40px;
  right: -60px;
  width: 420px;
  height: 420px
}

.vec-deco.bottom-left {
  bottom: -50px;
  left: -70px;
  width: 480px;
  height: 480px
}

.vec-deco.mid-left {
  top: 30%;
  left: -50px;
  width: 320px;
  height: 320px
}

.vec-deco.mid-right {
  top: 40%;
  right: -40px;
  width: 350px;
  height: 350px
}

.vec-deco.center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  opacity: 0.08
}

@keyframes decoFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg)
  }

  50% {
    transform: translateY(-15px) rotate(3deg)
  }
}

@keyframes decoDriftRight {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg)
  }

  33% {
    transform: translate(-20px, 15px) rotate(5deg)
  }

  66% {
    transform: translate(10px, -10px) rotate(-3deg)
  }
}

@keyframes decoDriftLeft {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg)
  }

  33% {
    transform: translate(15px, -20px) rotate(-5deg)
  }

  66% {
    transform: translate(-10px, 15px) rotate(4deg)
  }
}

@keyframes decoRotate {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

@keyframes decoPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.08
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.12
  }
}

/* ============================================
   NAVBAR — premium animated, auto-hide
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(255, 248, 240, 0.98);
  box-shadow: 0 1px 0 rgba(200, 149, 108, 0.08);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    background 0.4s ease;
  display: flex;
  align-items: center;
  transform: translateZ(0)
}

/* Accent gradient line at bottom (static for performance) */
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-accent), var(--clr-accent-gold), var(--clr-accent), transparent);
  opacity: 0.6
}

@keyframes navGradientSlide {

  0%,
  100% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }
}

/* Scrolled state (deeper glass) */
.navbar.scrolled {
  background: rgba(255, 248, 240, 0.95);
  box-shadow: 0 4px 30px rgba(92, 61, 46, 0.08)
}

/* Hide with spring ease */
.navbar.hidden {
  transform: translateY(-110%);
  box-shadow: none
}

@media (min-width: 992px) {
  .navbar .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 991px) {
  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

/* Logo with glow ring */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  position: relative;
  justify-self: center;
}

.nav-logo img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease;
  box-shadow: 0 0 0 2px rgba(200, 149, 108, 0.15)
}

.nav-logo:hover img {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 0 0 3px rgba(200, 149, 108, 0.3),
    0 0 20px rgba(200, 149, 108, 0.15)
}

.nav-logo-text {
  display: none
}

/* Nav links with animated underline */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  justify-self: start;
}

/* Shop Mega-Dropdown */
.nav-dropdown-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 10px;
  background: rgba(255, 248, 240, 0.98);
  border: 1px solid rgba(200, 149, 108, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(92, 61, 46, 0.1);
  padding: var(--sp-3) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  min-width: 220px;
  z-index: 100;
  overflow: hidden;
}

@media (max-width: 991px) {
  .nav-dropdown {
    position: static;
    min-width: unset;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: var(--sp-3) 0;
    margin-top: 0;
    transform: none;
    display: none;
    border-radius: 0;
    overflow: visible;
  }
  .nav-dropdown.show {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

.nav-dropdown-wrapper:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-list {
  display: flex;
  flex-direction: column;
}

.dropdown-category {
  padding: var(--sp-3) var(--sp-6);
  text-decoration: none;
  color: var(--clr-text-muted);
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  text-align: center;
}

.dropdown-category:hover {
  background: rgba(200, 149, 108, 0.08);
  color: var(--clr-primary-dark);
}

.nav-links a {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: color 0.3s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: var(--sp-2) 0
}

/* Elegant gradient underline that slides in */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-gold));
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1), left 0.4s cubic-bezier(0.22, 1, 0.36, 1)
}

.nav-links a:hover {
  color: var(--clr-primary-dark);
  letter-spacing: 0.08em
}

.nav-links a:hover::after {
  width: 100%;
  left: 0
}

/* Active page link */
.nav-links a[style*="color:var(--clr-primary)"]::after,
.nav-links a.active::after {
  width: 100%;
  left: 0;
  opacity: 0.6
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  justify-self: end;
}

/* Additional Nav Icons */
.nav-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--clr-text-muted);
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.nav-icon-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(200, 149, 108, 0.15), transparent);
  transition: left 0.5s ease;
}

.nav-icon-btn:hover {
  background: rgba(200, 149, 108, 0.08);
  color: var(--clr-primary-dark);
  transform: translateY(-2px);
}

.nav-icon-btn:hover::before {
  left: 100%;
}

@media (max-width: 991px) {
  .hidden-mobile {
    display: none !important;
  }
}

/* Cart button with shine sweep */
.nav-cart-btn {
  position: relative;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden
}

.nav-cart-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(200, 149, 108, 0.15), transparent);
  transition: left 0.5s ease
}

.nav-cart-btn:hover {
  background: var(--clr-bg-alt);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(92, 61, 46, 0.1)
}

.nav-cart-btn:hover::before {
  left: 100%
}

.nav-cart-btn svg {
  width: 22px;
  height: 22px;
  stroke: var(--clr-primary-dark);
  fill: none;
  stroke-width: 1.8;
  transition: transform 0.3s ease
}

.nav-cart-btn:hover svg {
  transform: scale(1.1)
}

.cart-badge {
  position: absolute;
  top: 4px;
  right: 2px;
  background: var(--clr-accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform var(--transition-fast)
}

.cart-badge.show {
  transform: scale(1)
}

.nav-hamburger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 1001
}

.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--clr-primary-dark);
  transition: all var(--transition-base);
  border-radius: 2px
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--clr-bg) 0%, #F5EDE4 50%, #EDE0D4 100%)
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: var(--sp-8);
  padding-top: calc(var(--nav-height) + var(--sp-4))
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(200, 149, 108, 0.12);
  color: var(--clr-accent);
  font-size: var(--fs-small);
  font-weight: 600;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-6);
  letter-spacing: 0.05em;
  text-transform: uppercase
}

.hero-badge svg {
  width: 16px;
  height: 16px
}

.hero h1 {
  font-family: var(--ff-heading);
  font-size: var(--fs-hero);
  color: var(--clr-primary-dark);
  line-height: 1.15;
  margin-bottom: var(--sp-6);
  font-weight: 700
}

.hero h1 .accent {
  color: var(--clr-accent);
  font-style: italic
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-10);
  line-height: 1.7
}

.hero-ctas {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap
}

/* Floating shapes */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
  transform: translateZ(0)
}

.floating-shape.s1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--clr-accent) 0%, transparent 70%);
  top: 10%;
  right: -5%
}

.floating-shape.s2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--clr-accent-gold) 0%, transparent 70%);
  bottom: 15%;
  left: -3%
}

.floating-shape.s3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--clr-accent-green) 0%, transparent 70%);
  top: 30%;
  left: 10%
}

.floating-shape.s4 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, var(--clr-primary-light) 0%, transparent 70%);
  bottom: 25%;
  right: 10%
}

@keyframes floatShape1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(20px, -30px) scale(1.05)
  }
}

@keyframes floatShape2 {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg)
  }

  50% {
    transform: translate(-15px, 20px) rotate(10deg)
  }
}

@keyframes floatShape3 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  33% {
    transform: translate(10px, -20px)
  }

  66% {
    transform: translate(-10px, 10px)
  }
}

/* --- Hero Slider Extension --- */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 5;
}

.hero-slide-visual {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 80px;
}

.hero-slide-visual picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide-visual picture .hero-slide-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-slide-cta {
  position: relative;
  z-index: 10;
}

.hero-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--sp-3);
  z-index: 20;
}

.hero-dot {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: rgba(200, 149, 108, 0.3);
  background-clip: content-box;
  padding: 8px; /* Bigger clickable area */
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.hero-dot::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background: rgba(200, 149, 108, 0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.hero-dot.active::after {
  background: var(--clr-accent);
  transform: scale(1.3);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--fs-small);
  letter-spacing: 0.03em;
  transition: all var(--transition-base);
  min-height: 44px;
  min-width: 44px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  font-family: var(--ff-body)
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease
}

.btn:active::before {
  width: 300px;
  height: 300px
}

.btn-primary {
  background: var(--clr-primary-dark);
  color: white
}

.btn-primary:hover {
  background: var(--clr-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md)
}

.btn-secondary {
  background: transparent;
  color: var(--clr-primary-dark);
  border: 1.5px solid var(--clr-primary-dark)
}

.btn-secondary:hover {
  background: var(--clr-primary-dark);
  color: white;
  transform: translateY(-2px)
}

.btn-accent {
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-gold));
  color: white
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 149, 108, 0.4)
}

.btn-whatsapp {
  background: #25D366;
  color: white
}

.btn-whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3)
}

.btn-sm {
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--fs-xs);
  min-height: 36px
}

.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: white;
  background: transparent
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px)
}

/* ============================================
   CATEGORY STRIP
   ============================================ */
.categories-strip {
  padding: var(--sp-12) 0 var(--sp-8);
  background: var(--clr-bg)
}

.categories-scroll {
  display: flex;
  gap: var(--sp-6);
  overflow-x: auto;
  padding: var(--sp-4) var(--sp-2);
  scroll-snap-type: x mandatory;
  scrollbar-width: none
}

.categories-scroll::-webkit-scrollbar {
  display: none
}

.category-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition-base);
  width: 200px
}

.category-card:hover {
  transform: translateY(-4px)
}

.category-card-icon {
  width: 150px;
  height: 150px;
  border-radius: var(--radius-md);
  margin: 0 auto var(--sp-3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-bg-alt);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm)
}

.category-card-icon img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: transform var(--transition-base)
}

.category-card:hover .category-card-icon {
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-gold));
  border-color: var(--clr-accent);
}

.category-card-label {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--clr-text-muted);
  font-family: var(--ff-body)
}

/* ============================================
   SHOP / PRODUCT GRID
   ============================================ */
.shop-section {
  background: var(--clr-bg-alt)
}

.shop-controls {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  margin-bottom: var(--sp-10);
  align-items: center;
}

.filters-container {
  width: 100%;
  overflow-x: auto;
  display: flex;
  justify-content: center;
  -webkit-overflow-scrolling: touch;
  padding: 4px;
}

.filters-container::-webkit-scrollbar {
  display: none;
}

.filter-tabs {
  display: flex;
  gap: var(--sp-2);
  padding: 6px;
  background: rgba(200, 149, 108, 0.05);
  border-radius: var(--radius-full);
  border: 1px solid var(--clr-border);
  width: fit-content;
}

.filter-tab {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--clr-text-muted);
  background: transparent;
  border: none;
  transition: all var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--ff-body);
}

.filter-tab:hover {
  color: var(--clr-primary);
  background: rgba(255, 255, 255, 0.6);
}

.filter-tab.active {
  background: var(--clr-primary-dark);
  color: white;
  box-shadow: var(--shadow-sm);
}

.controls-container {
  display: flex;
  gap: var(--sp-4);
  width: 100%;
  max-width: 800px;
  justify-content: center;
  flex-wrap: wrap;
}

.shop-search {
  flex: 1;
  min-width: 250px;
}

.search-input-wrap {
  position: relative;
}

.search-input-wrap svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  stroke: var(--clr-accent);
  fill: none;
  pointer-events: none;
}

.search-input-wrap input {
  padding-left: 48px;
  width: 100%;
  border-radius: var(--radius-full);
  height: 48px;
  background: var(--clr-surface);
  border: 1.5px solid var(--clr-border);
  transition: all var(--transition-fast);
  font-size: var(--fs-small);
  font-family: var(--ff-body);
}

.search-input-wrap input:focus {
  border-color: var(--clr-accent);
  outline: none;
  box-shadow: 0 0 0 4px rgba(200, 149, 108, 0.1);
}

.shop-sort {
  flex: 0 0 240px;
}

.sort-select {
  width: 100%;
  height: 48px;
  border-radius: var(--radius-full);
  padding: 0 20px;
  border: 1.5px solid var(--clr-border);
  background-color: var(--clr-surface);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--clr-text-muted);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C8956C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 45px;
  transition: all var(--transition-fast);
  font-family: var(--ff-body);
}

.sort-select:focus {
  border-color: var(--clr-accent);
  outline: none;
  box-shadow: 0 0 0 4px rgba(200, 149, 108, 0.1);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-6)
}

.product-card {
  background: var(--clr-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg)
}

.product-card-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f5ede4, #ede0d4)
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--sp-4);
  transition: transform var(--transition-slow)
}

.product-card:hover .product-card-img img {
  transform: scale(1.05)
}

.product-card-img .placeholder-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.product-card-img .placeholder-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--clr-primary-light);
  fill: none;
  opacity: 0.3
}

.product-badge {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: white;
  z-index: 2
}

.product-badge.bestseller {
  background: var(--clr-accent-gold)
}

.product-badge.premium {
  background: var(--clr-accent-green)
}

.product-badge.gift-ready {
  background: var(--clr-accent-rose)
}

.product-card-body {
  padding: var(--sp-4) var(--sp-4) var(--sp-5);
  display: flex;
  flex-direction: column;
  flex: 1
}

.product-card-category {
  font-size: var(--fs-xs);
  color: var(--clr-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: var(--sp-1)
}

.product-card-name {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  color: var(--clr-primary-dark);
  margin-bottom: var(--sp-2);
  line-height: 1.3;
  font-weight: 600
}

.variant-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--sp-3);
}

.variant-pill {
  padding: 4px 10px;
  font-size: 0.70rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--clr-border);
  background: var(--clr-surface);
  color: var(--clr-text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.variant-pill:hover {
  border-color: var(--clr-accent);
  color: var(--clr-primary-dark);
}

.variant-pill.active {
  background: var(--clr-accent);
  color: #fff;
  border-color: var(--clr-accent);
  box-shadow: 0 4px 10px rgba(200, 149, 108, 0.25);
}

.product-card-desc {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-3);
  line-height: 1.5;
  flex: 1
}

.product-card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-primary-dark);
  margin-bottom: var(--sp-3)
}

.product-card-price .from {
  font-size: var(--fs-xs);
  font-weight: 400;
  color: var(--clr-text-muted)
}

.card-weight-selector {
  margin-bottom: var(--sp-3);
  position: relative;
}

.card-weight-select {
  width: 100%;
  padding: 8px 12px;
  padding-right: 32px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--clr-border);
  background: var(--clr-surface);
  color: var(--clr-text-muted);
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C8956C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}

.card-weight-select:hover {
  border-color: var(--clr-accent);
  color: var(--clr-primary-dark);
}

.card-weight-select:focus {
  outline: none;
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(200, 149, 108, 0.1);
}

.product-card-actions {
  display: flex;
  margin-top: auto;
}

.product-card-actions .btn {
  flex: 1;
  font-size: var(--fs-xs);
  padding: var(--sp-2) var(--sp-3)
}

.no-results {
  text-align: center;
  padding: var(--sp-16) var(--sp-8);
  color: var(--clr-text-muted);
  grid-column: 1/-1
}

.view-all-wrap {
  text-align: center;
  margin-top: var(--sp-10)
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail {
  padding-top: calc(var(--nav-height) + var(--sp-8))
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start
}

.product-detail-img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #f5ede4, #ede0d4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center
}

.product-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--sp-8)
}

.product-detail-body {
  padding: var(--sp-4) 0
}

.product-detail-variants {
  margin-bottom: var(--sp-5);
  padding: var(--sp-3);
  background: var(--clr-bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
}

.product-detail-variants label {
  display: block;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-text-muted);
  font-weight: 600;
  margin-bottom: var(--sp-3);
}

.detail-variant-pill {
  font-size: var(--fs-small);
  padding: 6px 14px;
}

.product-detail-body .breadcrumb {
  font-size: var(--fs-small);
  color: var(--clr-text-light);
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-2)
}

.product-detail-body .breadcrumb a {
  color: var(--clr-accent);
  transition: color var(--transition-fast)
}

.product-detail-body .breadcrumb a:hover {
  color: var(--clr-primary)
}

.product-detail-category {
  font-size: var(--fs-xs);
  color: var(--clr-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: var(--sp-2)
}

.product-detail-name {
  font-family: var(--ff-heading);
  font-size: var(--fs-h1);
  color: var(--clr-primary-dark);
  margin-bottom: var(--sp-4);
  font-weight: 700;
  line-height: 1.2
}

.product-detail-desc {
  font-size: var(--fs-body);
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-6)
}

.product-detail-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--clr-primary-dark);
  margin-bottom: var(--sp-6)
}

.product-detail-options {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6)
}

.product-detail-options label {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-1);
  display: block
}

.product-detail-options select {
  width: 100%;
  min-height: 48px;
  font-size: var(--fs-body)
}

.quantity-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content
}

.quantity-stepper button {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: var(--clr-bg);
  transition: background var(--transition-fast)
}

.quantity-stepper button:hover {
  background: var(--clr-bg-alt)
}

.quantity-stepper .qty-value {
  width: 56px;
  text-align: center;
  font-weight: 600;
  border-left: 1px solid var(--clr-border);
  border-right: 1px solid var(--clr-border);
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem
}

.product-detail-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap
}

.product-detail-actions .btn {
  min-width: 180px
}

/* ============================================
   KEY BENEFITS — minimal & aesthetic
   ============================================ */
.product-benefits {
  margin-top: var(--sp-12);
  padding: 0;
  background: transparent;
  border: none;
  border-top: 1px solid var(--clr-border);
  padding-top: clamp(28px, 3.2vw, 44px);
}

.product-benefits-head {
  margin-bottom: clamp(20px, 2.4vw, 32px);
}

.product-benefits h4 {
  font-family: var(--ff-heading);
  font-size: clamp(1.35rem, 1.9vw, 1.6rem);
  color: var(--clr-primary-dark);
  margin: 0;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.005em;
}

.product-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(32px, 4vw, 64px);
  row-gap: clamp(14px, 1.4vw, 20px);
}

.benefit-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  column-gap: var(--sp-4);
  align-items: start;
  padding: 0;
  border: none;
  min-height: 0;
}

.benefit-mark {
  width: 16px;
  height: 16px;
  color: var(--clr-accent);
  margin-top: 4px;
  flex-shrink: 0;
}

.benefit-text {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--clr-primary-dark);
  line-height: 1.6;
  letter-spacing: 0.005em;
}

@media (max-width: 720px) {
  .product-benefits-list {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }
}

/* ============================================
   CART DRAWER
   ============================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: var(--clr-overlay);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base)
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--clr-surface);
  z-index: 3001;
  transform: translateX(100%);
  transition: transform var(--transition-base);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0,0,0,0.1)
}

.cart-drawer.active {
  transform: translateX(0)
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-6);
  border-bottom: 1px solid var(--clr-border)
}

.cart-drawer-header h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: 600
}

.cart-drawer-close {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast)
}

.cart-drawer-close:hover {
  background: var(--clr-bg-alt)
}

.cart-items {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: var(--sp-4)
}

.cart-empty {
  text-align: center;
  padding: var(--sp-16) var(--sp-8);
  color: var(--clr-text-muted)
}

.cart-empty svg {
  width: 48px;
  height: 48px;
  stroke: var(--clr-text-light);
  fill: none;
  margin: 0 auto var(--sp-4)
}

.cart-item {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-4);
  border-bottom: 1px solid var(--clr-border);
  align-items: center
}

.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  background: var(--clr-bg-alt);
  overflow: hidden;
  flex-shrink: 0
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px
}

.cart-item-info {
  flex: 1;
  min-width: 0
}

.cart-item-name {
  font-weight: 600;
  font-size: var(--fs-small);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.cart-item-weight {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-2)
}

.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden
}

.cart-item-qty button {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  background: var(--clr-bg)
}

.cart-item-qty span {
  width: 32px;
  text-align: center;
  font-size: var(--fs-small);
  font-weight: 600;
  border-left: 1px solid var(--clr-border);
  border-right: 1px solid var(--clr-border)
}

.cart-item-price {
  font-weight: 700;
  font-size: var(--fs-body);
  white-space: nowrap
}

.cart-item-remove {
  color: var(--clr-text-light);
  padding: var(--sp-2);
  transition: color var(--transition-fast)
}

.cart-item-remove:hover {
  color: #e53e3e
}

.cart-footer {
  padding: var(--sp-6);
  padding-bottom: calc(var(--sp-6) + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--clr-border);
  background: var(--clr-bg);
  flex-shrink: 0;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-4);
  font-size: 1.1rem;
  font-weight: 700
}

.cart-footer .btn {
  width: 100%
}

/* ============================================
   CHECKOUT MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: var(--clr-overlay);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  padding: var(--sp-6)
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible
}

.checkout-modal {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--sp-8);
  position: relative;
  transform: translateY(30px) scale(0.96);
  transition: transform var(--transition-base)
}

.modal-overlay.active .checkout-modal {
  transform: translateY(0) scale(1)
}

.checkout-modal h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  margin-bottom: var(--sp-6);
  text-align: center;
  font-weight: 600
}

.modal-close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--clr-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 10
}

.modal-close:hover {
  background: var(--clr-primary-dark);
  color: white
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4)
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1)
}

.form-group label {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--clr-text-muted)
}

.form-group input,
.form-group select,
.form-group textarea {
  min-height: 44px
}

.form-group textarea {
  resize: vertical;
  min-height: 80px
}

.radio-group {
  display: flex;
  gap: var(--sp-4)
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 400;
  cursor: pointer
}

/* ============================================
   GIFT HAMPERS SHOWCASE
   ============================================ */
.hamper-section {
  background: linear-gradient(160deg, var(--clr-bg) 0%, #EDE0D4 100%);
  overflow: hidden
}

.hamper-page-section {
  background: var(--clr-bg);
  min-height: 100vh;
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-section)
}

.hamper-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6)
}

.hamper-showcase-grid--full {
  grid-template-columns: repeat(4, 1fr)
}

.hamper-card {
  background: var(--clr-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  cursor: default
}

.hamper-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl)
}

.hamper-card-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, #f5ede4, #ede0d4)
}

.hamper-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow)
}

.hamper-card:hover .hamper-card-img img {
  transform: scale(1.05)
}

.hamper-card-name {
  font-family: var(--ff-heading);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--clr-primary-dark);
  text-align: center;
  padding: var(--sp-4) var(--sp-3);
  line-height: 1.3
}

/* Custom Hamper CTA Block */
.custom-hamper-cta {
  margin-top: var(--sp-12);
  text-align: center;
  background: var(--clr-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--sp-10) var(--sp-8);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border)
}

.custom-hamper-cta h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  color: var(--clr-primary-dark);
  margin-bottom: var(--sp-3);
  font-weight: 700
}

.custom-hamper-cta p {
  color: var(--clr-text-muted);
  font-size: var(--fs-body);
  max-width: 520px;
  margin: 0 auto var(--sp-6);
  line-height: 1.7
}

.custom-hamper-cta-buttons {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap
}

/* Hamper Category Blocks (gift-hampers page) */
.hamper-category {
  margin-bottom: var(--sp-10)
}

.hamper-category:last-of-type {
  margin-bottom: 0
}

.hamper-category-heading {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--clr-primary-dark);
  text-align: left;
  margin-bottom: var(--sp-2)
}

.hamper-category-divider {
  width: 50px;
  height: 3px;
  background: var(--clr-primary);
  border-radius: 2px;
  margin-bottom: var(--sp-3)
}

.hamper-category-desc {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: var(--fs-body);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-6);
  line-height: 1.6
}

/* Compact card overrides for category grids (gift-hampers page only) */
.hamper-category .hamper-showcase-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5)
}

.hamper-category .hamper-card-img {
  aspect-ratio: auto;
  height: 220px
}

.hamper-category .hamper-card-name {
  font-size: 0.92rem;
  padding: var(--sp-3) var(--sp-2)
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
  background: var(--clr-bg)
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--sp-6);
  margin-bottom: var(--sp-10)
}

.trust-card {
  background: var(--clr-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base)
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg)
}

.trust-card svg {
  width: 40px;
  height: 40px;
  stroke: var(--clr-accent);
  fill: none;
  margin: 0 auto var(--sp-4)
}

.trust-card h4 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  color: var(--clr-primary-dark);
  margin-bottom: var(--sp-2);
  font-weight: 600
}

.trust-card p {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  line-height: 1.6
}

.payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
  padding: var(--sp-6);
  background: var(--clr-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm)
}

.payment-icons span {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  font-weight: 600
}

.payment-icons svg {
  width: 28px;
  height: 28px;
  stroke: var(--clr-primary-light);
  fill: none
}

/* ============================================
   VISIT / LOCATION
   ============================================ */
.visit-section {
  background: var(--clr-primary-dark);
  color: white;
  overflow: hidden
}

.visit-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(200, 149, 108, 0.08)
}

.visit-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
  position: relative;
  z-index: 1
}

.visit-info h2 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  margin-bottom: var(--sp-6);
  color: white;
  font-weight: 600
}

.visit-detail {
  display: flex;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  align-items: flex-start
}

.visit-detail svg {
  width: 20px;
  height: 20px;
  stroke: var(--clr-accent);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px
}

.visit-detail p {
  font-size: var(--fs-body);
  opacity: 0.85;
  line-height: 1.6
}

.visit-map {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--sp-4);
  border: 1px solid rgba(255, 255, 255, 0.1)
}

.visit-map svg {
  width: 48px;
  height: 48px;
  stroke: rgba(255, 255, 255, 0.4);
  fill: none
}

/* ============================================
   FOOTER (Rosier Foods-style)
   ============================================ */
.footer-wave {
  width: 100%;
  line-height: 0;
  margin-top: -1px
}

.footer-wave svg {
  width: 100%;
  height: 80px;
  display: block
}

.footer {
  background: #FFFFFF;
  color: var(--clr-text);
  padding: var(--sp-10) 0 var(--sp-6)
}

.footer-grid-rosier {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.4fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-8);
  align-items: start
}

/* Brand column */
.footer-brand-col {
  max-width: 280px
}

.footer-logo {
  margin-bottom: var(--sp-4)
}

.footer-logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover
}

.footer-brand-desc {
  font-size: var(--fs-small);
  line-height: 1.75;
  color: var(--clr-text-muted)
}

/* Link columns */
.footer-link-col h4 {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-primary-dark);
  font-weight: 600;
  margin-bottom: var(--sp-5)
}

.footer-link-col a {
  display: block;
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-3);
  transition: color var(--transition-fast)
}

.footer-link-col a:hover {
  color: var(--clr-primary-dark)
}

/* CTA column */
.footer-cta-col h4 {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-primary-dark);
  font-weight: 600;
  margin-bottom: var(--sp-5)
}

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--fs-small);
  color: var(--clr-primary-dark);
  font-weight: 500;
  transition: all var(--transition-fast);
  margin-bottom: var(--sp-5)
}

.footer-wa-btn:hover {
  background: var(--clr-primary-dark);
  color: white;
  border-color: var(--clr-primary-dark)
}

.footer-wa-btn:hover svg {
  fill: white;
  stroke: white
}

/* Social circles */
.footer-social-row {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-2)
}

.footer-social-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast)
}

.footer-social-circle:hover {
  background: var(--clr-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md)
}

.footer-social-circle svg {
  width: 18px;
  height: 18px;
  stroke: white;
  fill: none;
  stroke-width: 1.5
}

/* Bottom bar */
.footer-bottom-bar {
  border-top: 1px solid var(--clr-border);
  padding-top: var(--sp-5);
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--clr-text-light)
}

/* ============================================
   MOBILE BOTTOM BAR
   ============================================ */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  z-index: 999;
  padding: var(--sp-2) 0;
  padding-bottom: calc(var(--sp-2) + env(safe-area-inset-bottom, 0px))
}

.mobile-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center
}

.mobile-bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: var(--sp-2) var(--sp-3);
  color: var(--clr-text-muted);
  transition: color var(--transition-fast);
  min-width: 60px;
  position: relative
}

.mobile-bar-btn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none
}

.mobile-bar-btn .label {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em
}

.mobile-bar-btn.whatsapp {
  color: #25D366
}

.mobile-bar-cart-badge {
  position: absolute;
  top: 0;
  right: 10px;
  background: var(--clr-accent);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center
}

/* ============================================
   SCROLL REVEAL + PAGE TRANSITIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out)
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0)
}

.reveal-delay-1 {
  transition-delay: 0.1s
}

.reveal-delay-2 {
  transition-delay: 0.2s
}

.reveal-delay-3 {
  transition-delay: 0.3s
}

.reveal-delay-4 {
  transition-delay: 0.4s
}

/* --- Product Card Staggered Entrance --- */

.product-card.animate-in {
  animation: cardEntrance 0.7s var(--ease-out) forwards;
}

@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95)
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

/* Staggered delays for up to 12 cards */
.product-card:nth-child(1) {
  animation-delay: 0s
}

.product-card:nth-child(2) {
  animation-delay: 0.08s
}

.product-card:nth-child(3) {
  animation-delay: 0.16s
}

.product-card:nth-child(4) {
  animation-delay: 0.24s
}

.product-card:nth-child(5) {
  animation-delay: 0.32s
}

.product-card:nth-child(6) {
  animation-delay: 0.4s
}

.product-card:nth-child(7) {
  animation-delay: 0.48s
}

.product-card:nth-child(8) {
  animation-delay: 0.56s
}

.product-card:nth-child(9) {
  animation-delay: 0.64s
}

.product-card:nth-child(10) {
  animation-delay: 0.72s
}

.product-card:nth-child(11) {
  animation-delay: 0.8s
}

.product-card:nth-child(12) {
  animation-delay: 0.88s
}

/* --- Category Card Staggered Bounce --- */

.category-card.animate-in {
  animation: catBounce 0.6s var(--ease-out) forwards;
}

@keyframes catBounce {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9)
  }

  60% {
    opacity: 1;
    transform: translateY(-8px) scale(1.03)
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

.category-card:nth-child(1) {
  animation-delay: 0s
}

.category-card:nth-child(2) {
  animation-delay: 0.07s
}

.category-card:nth-child(3) {
  animation-delay: 0.14s
}

.category-card:nth-child(4) {
  animation-delay: 0.21s
}

.category-card:nth-child(5) {
  animation-delay: 0.28s
}

.category-card:nth-child(6) {
  animation-delay: 0.35s
}

.category-card:nth-child(7) {
  animation-delay: 0.42s
}

/* --- Trust Card Staggered Entrance --- */

.trust-card.animate-in {
  animation: trustSlideUp 0.7s var(--ease-out) forwards;
}

@keyframes trustSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.trust-card:nth-child(1) {
  animation-delay: 0s
}

.trust-card:nth-child(2) {
  animation-delay: 0.12s
}

.trust-card:nth-child(3) {
  animation-delay: 0.24s
}

.trust-card:nth-child(4) {
  animation-delay: 0.36s
}

/* --- Hero Content Cascading Reveal --- */
.hero-content .hero-badge {
  opacity: 0;
  animation: heroFade 0.8s var(--ease-out) 0.2s forwards
}

.hero-content h1 {
  opacity: 0;
  animation: heroSlideUp 0.9s var(--ease-out) 0.4s forwards
}

.hero-content .hero-subtitle {
  opacity: 0;
  animation: heroFade 0.8s var(--ease-out) 0.7s forwards
}

.hero-content .hero-ctas {
  opacity: 0;
  animation: heroSlideUp 0.7s var(--ease-out) 0.9s forwards
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes heroSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* --- Section Header Animated Divider --- */
.section-divider {
  animation: dividerGrow 1s var(--ease-out) forwards;
  transform-origin: center
}

@keyframes dividerGrow {
  from {
    width: 0
  }

  to {
    width: 60px
  }
}

/* --- Simplified Hover Effects (perf optimized) --- */
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl)
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl)
}

/* --- Smooth Image Zoom on Product Card Hover --- */
.product-card:hover .product-card-img img {
  transform: scale(1.05)
}

/* --- Filter Tab Transition --- */
.filter-tab {
  transition: all 0.3s var(--ease-out), transform 0.2s ease
}

.filter-tab:active {
  transform: scale(0.95)
}

/* --- Badge Shimmer --- */
.product-badge {
  overflow: hidden;
  position: absolute
}

.product-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: badgeShimmer 3s ease-in-out 2
}

@keyframes badgeShimmer {

  0%,
  100% {
    left: -100%
  }

  50% {
    left: 100%
  }
}

/* --- Button Glow on Hover --- */
.btn-primary:hover {
  box-shadow: 0 4px 20px rgba(61, 43, 31, 0.3)
}

.btn-accent:hover {
  box-shadow: 0 4px 25px rgba(200, 149, 108, 0.5)
}

.btn-whatsapp:hover {
  box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4)
}

/* --- Smooth Page Entrance --- */
.page-enter {
  animation: pageEnter 0.7s var(--ease-out) forwards
}

@keyframes pageEnter {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

/* --- Hamper Card Entrance --- */
.hamper-card {
  opacity: 0;
  animation: hamperCardIn 0.6s var(--ease-out) forwards
}

.hamper-card:nth-child(1) { animation-delay: 0s }
.hamper-card:nth-child(2) { animation-delay: 0.08s }
.hamper-card:nth-child(3) { animation-delay: 0.16s }
.hamper-card:nth-child(4) { animation-delay: 0.24s }
.hamper-card:nth-child(5) { animation-delay: 0.32s }
.hamper-card:nth-child(6) { animation-delay: 0.4s }

@keyframes hamperCardIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96)
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

/* --- Cart Badge Pop --- */
.cart-badge.show {
  animation: badgePop 0.4s var(--ease-out) forwards
}

@keyframes badgePop {
  0% {
    transform: scale(0)
  }

  60% {
    transform: scale(1.3)
  }

  100% {
    transform: scale(1)
  }
}

/* --- Scroll to Top Button --- */
.scroll-top-btn {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-primary-dark);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), background 0.3s;
  z-index: 999;
  pointer-events: none
}

.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto
}

.scroll-top-btn:hover {
  background: var(--clr-accent);
  transform: translateY(-3px) scale(1.05)
}

.scroll-top-btn svg {
  width: 22px;
  height: 22px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media(prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important
  }

  html {
    scroll-behavior: auto
  }

  .reveal {
    opacity: 1;
    transform: none
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media(max-width:1024px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--clr-bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--sp-8);
    z-index: 999
  }

  .nav-links.open {
    display: flex
  }

  .nav-links a {
    font-size: 1.2rem
  }

  .nav-hamburger {
    display: flex
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6)
  }

  .hamper-showcase-grid,
  .hamper-showcase-grid--full,
  .hamper-category .hamper-showcase-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .visit-content {
    grid-template-columns: 1fr
  }

  .footer-grid-rosier {
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--sp-6)
  }
}

@media(max-width:768px) {
  :root {
    --nav-height: 68px
  }

  .mobile-bar {
    display: block
  }

  body {
    padding-bottom: 70px
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh
  }

  .hero-slide-visual {
    padding-bottom: 90px
  }

  .hero-slide-visual picture .hero-slide-img {
    object-fit: cover;
    object-position: center top;
  }

  .shop-controls {
    flex-direction: column;
    align-items: stretch
  }

  .filter-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    padding-bottom: var(--sp-2)
  }

  .filter-tabs::-webkit-scrollbar {
    display: none
  }

  .filter-tab {
    white-space: nowrap
  }

  .shop-search {
    flex-direction: column;
    width: 100%
  }

  .search-input-wrap,
  .sort-select {
    width: 100%
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: var(--sp-4)
  }

  .cart-drawer {
    width: 100%
  }

  .cart-footer {
    padding-bottom: calc(var(--sp-6) + 70px + env(safe-area-inset-bottom, 0px))
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-grid-rosier {
    grid-template-columns: 1fr;
    gap: var(--sp-6)
  }

  .footer-brand-col {
    max-width: 100%
  }

  .visit-map {
    height: 200px
  }

  .product-detail-actions {
    flex-direction: column
  }

  .product-detail-actions .btn {
    width: 100%
  }
}

@media(max-width:480px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-3)
  }

  .product-card-body {
    padding: var(--sp-3)
  }

  .product-card-name {
    font-size: 0.95rem
  }

  .product-card-actions {
    flex-direction: column
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center
  }

  .hamper-showcase-grid,
  .hamper-showcase-grid--full,
  .hamper-category .hamper-showcase-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .trust-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:360px) {
  .hamper-showcase-grid,
  .hamper-showcase-grid--full,
  .hamper-category .hamper-showcase-grid {
    grid-template-columns: 1fr
  }
}

/* ============================================
   CHECKOUT PAGE (co- prefix)
   ============================================ */
.co-page { min-height: 100vh; padding-bottom: var(--sp-16) }
.bg-alt { background: var(--clr-bg-alt) }

/* Breadcrumb */
.co-breadcrumb {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-small); color: var(--clr-text-muted);
  margin-bottom: var(--sp-8)
}
.co-breadcrumb a { color: var(--clr-primary); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.co-breadcrumb a:hover { text-decoration: underline }
.co-breadcrumb span { color: var(--clr-text); font-weight: 500 }

/* Empty */
.co-empty {
  text-align: center; padding: var(--sp-12) var(--sp-6);
  background: var(--clr-surface); border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03); max-width: 480px; margin: 0 auto
}
.co-empty svg { width: 56px; height: 56px; stroke: var(--clr-border-dark); fill: none; stroke-width: 1.5; margin-bottom: var(--sp-4) }
.co-empty h2 { font-family: var(--ff-heading); font-size: var(--fs-h3); margin-bottom: var(--sp-2) }
.co-empty p { color: var(--clr-text-muted); margin-bottom: var(--sp-6) }

/* Grid */
.co-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--sp-8); align-items: start
}

/* Panels */
.co-panel {
  background: var(--clr-surface); border-radius: var(--radius-lg);
  padding: var(--sp-8); box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  margin-bottom: var(--sp-6)
}
.co-panel:last-child { margin-bottom: 0 }
.co-panel-title {
  font-family: var(--ff-heading); font-size: var(--fs-h4);
  display: flex; align-items: center; gap: var(--sp-2);
  padding-bottom: var(--sp-4); margin-bottom: var(--sp-6);
  border-bottom: 1px solid var(--clr-border)
}

/* Cart Items */
.co-cart-item {
  display: flex; gap: var(--sp-4); padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--clr-border-light)
}
.co-cart-item:last-child { border-bottom: none }
.co-cart-item-img {
  width: 72px; height: 72px; border-radius: var(--radius-md);
  object-fit: cover; background: var(--clr-bg); flex-shrink: 0
}
.co-cart-item-info { flex: 1; min-width: 0 }
.co-cart-item-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 2px }
.co-cart-item-name { font-weight: 500; color: var(--clr-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 200px }
.co-cart-item-remove {
  background: none; border: none; color: var(--clr-text-muted); cursor: pointer;
  padding: 4px; display: flex; border-radius: var(--radius-sm); transition: all var(--transition-fast)
}
.co-cart-item-remove:hover { color: #EF4444; background: rgba(239,68,68,0.08) }
.co-cart-item-meta { font-size: var(--fs-small); color: var(--clr-text-muted); margin-bottom: var(--sp-2) }
.co-cart-item-bottom { display: flex; justify-content: space-between; align-items: center }
.co-cart-item-qty {
  display: flex; align-items: center; border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm); overflow: hidden; height: 30px
}
.co-cart-item-qty button {
  width: 28px; height: 100%; background: var(--clr-bg); border: none; color: var(--clr-text);
  font-weight: 600; cursor: pointer; transition: background var(--transition-fast)
}
.co-cart-item-qty button:hover { background: var(--clr-border) }
.co-cart-item-qty span { width: 28px; text-align: center; font-size: var(--fs-small); font-weight: 500 }
.co-cart-item-price { font-weight: 600; font-size: 0.95rem }

/* Form */
.co-form { display: flex; flex-direction: column; gap: var(--sp-4) }
.co-form-row { display: flex; gap: var(--sp-4) }
.co-form-row--half > * { flex: 1 }
.co-form-row--third > * { flex: 1 }
.co-field label {
  display: block; font-size: var(--fs-small); font-weight: 500;
  margin-bottom: var(--sp-1); color: var(--clr-text)
}
.co-field input,
.co-field textarea,
.co-field select {
  width: 100%; padding: var(--sp-3); border: 1px solid var(--clr-border);
  border-radius: var(--radius-md); font-family: var(--ff-body); font-size: 0.95rem;
  background: var(--clr-bg); color: var(--clr-text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast)
}
.co-field input:focus,
.co-field textarea:focus,
.co-field select:focus {
  outline: none; border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(200,149,108,0.15)
}

/* Delivery Toggle */
.co-delivery-toggle { margin-bottom: var(--sp-2) }
.co-toggle-label { display: block; font-size: var(--fs-small); font-weight: 500; margin-bottom: var(--sp-2); color: var(--clr-text) }
.co-toggle-options { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3) }
.co-toggle-card { cursor: pointer; position: relative }
.co-toggle-card input { position: absolute; opacity: 0; width: 0; height: 0 }
.co-toggle-box {
  display: flex; align-items: center; justify-content: center; gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4); border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md); font-weight: 500; font-size: 0.9rem;
  color: var(--clr-text-muted); transition: all var(--transition-fast)
}
.co-toggle-box svg { opacity: 0.5 }
.co-toggle-card input:checked + .co-toggle-box {
  border-color: var(--clr-primary); color: var(--clr-primary);
  background: rgba(200,149,108,0.06)
}
.co-toggle-card input:checked + .co-toggle-box svg { opacity: 1 }

/* Payment Options */
.co-pay-options {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); margin-bottom: var(--sp-6)
}
.co-pay-card {
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-2); border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md); background: var(--clr-bg); cursor: pointer;
  font-size: 0.8rem; font-weight: 500; color: var(--clr-text-muted);
  transition: all var(--transition-fast); font-family: var(--ff-body)
}
.co-pay-card:hover { border-color: var(--clr-accent); color: var(--clr-text) }
.co-pay-card.active {
  border-color: var(--clr-primary); color: var(--clr-primary);
  background: rgba(200,149,108,0.05); box-shadow: 0 0 0 3px rgba(200,149,108,0.1)
}

/* Payment Panels */
.co-pay-details { min-height: 80px }
.co-pay-panel { display: none }
.co-pay-panel.active { display: block; animation: coFadeIn 0.25s ease-out }
@keyframes coFadeIn { from { opacity: 0; transform: translateY(6px) } to { opacity: 1; transform: none } }

.co-upi-layout { display: flex; align-items: center; gap: var(--sp-6); flex-wrap: wrap }
.co-qr-placeholder {
  width: 120px; height: 120px; border: 2px dashed var(--clr-border);
  border-radius: var(--radius-md); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: var(--sp-2);
  color: var(--clr-text-light); font-size: 0.8rem; flex-shrink: 0
}
.co-upi-or { font-weight: 600; color: var(--clr-text-muted); font-size: 0.85rem }

.co-pay-note { color: var(--clr-text-muted); font-size: 0.9rem; margin-bottom: var(--sp-4) }
.co-bank-select {
  width: 100%; padding: var(--sp-3); border: 1px solid var(--clr-border);
  border-radius: var(--radius-md); font-family: var(--ff-body); font-size: 0.95rem;
  background: var(--clr-bg); color: var(--clr-text)
}
.co-cod-note {
  display: flex; gap: var(--sp-3); align-items: flex-start;
  padding: var(--sp-4); background: rgba(16,185,129,0.06);
  border-radius: var(--radius-md); border: 1px solid rgba(16,185,129,0.15)
}
.co-cod-note strong { display: block; margin-bottom: 4px }
.co-cod-note p { font-size: 0.85rem; color: var(--clr-text-muted); margin: 0 }

/* Sidebar */
.co-sidebar { position: relative }
.co-panel--sticky { position: sticky; top: calc(var(--nav-height) + var(--sp-4)) }

.co-sidebar-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--sp-2) 0; font-size: 0.9rem
}
.co-sidebar-item-name { color: var(--clr-text); max-width: 180px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis }
.co-sidebar-item-qty { color: var(--clr-text-muted); font-size: var(--fs-small) }
.co-sidebar-item-price { font-weight: 500; white-space: nowrap }

/* Price Breakdown */
.co-price-breakdown {
  background: var(--clr-bg); padding: var(--sp-5); border-radius: var(--radius-md);
  margin-top: var(--sp-4)
}
.co-price-row {
  display: flex; justify-content: space-between; margin-bottom: var(--sp-3);
  color: var(--clr-text-muted); font-size: 0.9rem
}
.co-price-row small { font-size: 0.78rem; opacity: 0.8; display: block; margin-top: 2px }
.co-price-total {
  margin-top: var(--sp-4); margin-bottom: 0; padding-top: var(--sp-4);
  border-top: 1.5px dashed var(--clr-border-dark); font-weight: 600;
  font-size: 1.1rem; color: var(--clr-text)
}
.co-price-total span:last-child { color: var(--clr-primary); font-size: 1.2rem }

/* Secure Note */
.co-secure-note {
  display: flex; align-items: center; justify-content: center; gap: var(--sp-2);
  font-size: 0.82rem; color: var(--clr-text-muted); margin-top: var(--sp-5); margin-bottom: var(--sp-4)
}

/* Place Order Buttons */
.btn-lg {
  padding: var(--sp-4) var(--sp-6); font-size: 1rem; border-radius: var(--radius-md)
}
.co-place-order {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: var(--sp-2)
}
.co-payment-divider {
  display: flex; align-items: center; text-align: center; color: var(--clr-text-muted);
  font-size: 0.82rem; margin: var(--sp-3) 0
}
.co-payment-divider::before,
.co-payment-divider::after {
  content: ''; flex: 1; border-bottom: 1px solid var(--clr-border)
}
.co-payment-divider span { padding: 0 var(--sp-3) }

/* Mobile Summary Toggle */
.co-mobile-summary-toggle {
  display: none; width: 100%; padding: var(--sp-4);
  background: var(--clr-surface); border: 1px solid var(--clr-border);
  border-radius: var(--radius-md); cursor: pointer;
  font-family: var(--ff-body); font-size: 0.9rem; font-weight: 500;
  color: var(--clr-text); margin-bottom: var(--sp-4);
  justify-content: space-between; align-items: center
}
.co-mobile-summary-left,
.co-mobile-summary-right { display: flex; align-items: center; gap: var(--sp-2) }
.co-mobile-summary-right { font-weight: 600; color: var(--clr-primary) }
.co-chevron { transition: transform var(--transition-fast) }
.co-mobile-summary-toggle.open .co-chevron { transform: rotate(180deg) }

/* Confirmation Overlay */
.co-confirmation {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: var(--sp-4)
}
.co-confirmation.active { display: flex }
.co-confirmation-card {
  background: var(--clr-surface); border-radius: var(--radius-lg);
  padding: var(--sp-12) var(--sp-8); text-align: center;
  max-width: 420px; width: 100%; animation: coConfirmIn 0.5s var(--ease-out)
}
@keyframes coConfirmIn {
  from { opacity: 0; transform: scale(0.85) translateY(20px) }
  to { opacity: 1; transform: none }
}
.co-check-circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, #10B981, #34D399);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-6); animation: coCheckPop 0.6s var(--ease-out) 0.2s both
}
@keyframes coCheckPop {
  0% { transform: scale(0) } 60% { transform: scale(1.2) } 100% { transform: scale(1) }
}
.co-check-circle svg {
  width: 36px; height: 36px; stroke: white; fill: none;
  stroke-width: 3; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 40; stroke-dashoffset: 40;
  animation: coCheckDraw 0.5s ease-out 0.5s forwards
}
@keyframes coCheckDraw { to { stroke-dashoffset: 0 } }
.co-confirmation-card h2 {
  font-family: var(--ff-heading); font-size: var(--fs-h2); margin-bottom: var(--sp-3)
}
.co-confirmation-card p {
  color: var(--clr-text-muted); margin-bottom: var(--sp-6); font-size: 1rem
}

/* Responsive */
@media (max-width: 900px) {
  .co-grid { grid-template-columns: 1fr }
  .co-sidebar { order: -1 }
  .co-mobile-summary-toggle { display: flex }
  .co-sidebar-content { display: none }
  .co-sidebar-content.open { display: block }
  .co-panel--sticky { position: static }
  .co-pay-options { grid-template-columns: repeat(2, 1fr) }
}

@media (max-width: 600px) {
  .co-form-row { flex-direction: column; gap: 0 }
  .co-form-row > .co-field { margin-bottom: var(--sp-4) }
  .co-panel { padding: var(--sp-5) }
  .co-upi-layout { flex-direction: column; align-items: stretch }
  .co-qr-placeholder { width: 100%; height: 100px }
  .co-pay-options { grid-template-columns: 1fr 1fr }
  .co-cart-item-name { max-width: 140px }
}

::-webkit-scrollbar {
  width: 6px
}

::-webkit-scrollbar-track {
  background: var(--clr-bg)
}

::-webkit-scrollbar-thumb {
  background: var(--clr-border);
  border-radius: 3px
}

::-webkit-scrollbar-thumb:hover {
  background: var(--clr-text-light)
}

body.no-scroll {
  overflow: clip
}

/* ============================================
   ===== ABOUT PAGE STYLES =====
   ============================================ */

/* Shared eyebrow label */
.eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-3);
  position: relative;
  padding-left: 28px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--clr-accent);
}
.eyebrow.center {
  padding-left: 0;
}
.eyebrow.center::before {
  display: none;
}

/* ----- 1. About Hero ----- */
.about-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + var(--sp-12)) 0 var(--sp-section);
  background: linear-gradient(160deg, #FFF8F0 0%, #F5EDE4 50%, #EDE0D4 100%);
  overflow: hidden;
}
.about-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
}
.about-hero-title {
  font-family: var(--ff-heading);
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1.1;
  color: var(--clr-primary-dark);
  font-weight: 600;
  margin: var(--sp-4) 0 var(--sp-6);
  letter-spacing: -0.01em;
}
.about-hero-title .accent {
  color: var(--clr-accent);
  font-style: italic;
}
.about-hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--clr-text-muted);
  max-width: 680px;
  margin: 0 auto var(--sp-10);
  line-height: 1.75;
}
.about-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
  margin-bottom: var(--sp-10);
}
.about-hero-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
  justify-content: center;
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  padding: 10px 22px;
  backdrop-filter: blur(6px);
}
.about-hero-meta strong {
  color: var(--clr-primary-dark);
  font-weight: 600;
}
.about-hero-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--clr-accent);
  display: inline-block;
}

/* ----- 2. Brand Origin ----- */
.about-origin {
  background: var(--clr-bg);
}
.origin-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.origin-text h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.2;
  color: var(--clr-primary-dark);
  font-weight: 600;
  margin-bottom: var(--sp-6);
  letter-spacing: -0.005em;
}
.origin-text p {
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-4);
  line-height: 1.8;
}
.origin-text p strong {
  color: var(--clr-primary-dark);
  font-weight: 600;
}
.origin-pull {
  margin-top: var(--sp-6);
  padding: var(--sp-6) var(--sp-6) var(--sp-6) var(--sp-8);
  border-left: 3px solid var(--clr-accent-gold);
  background: linear-gradient(90deg, rgba(212, 168, 67, 0.08), transparent 70%);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: var(--clr-primary-dark);
  line-height: 1.55;
  position: relative;
}
.origin-pull .quote-mark {
  font-family: var(--ff-heading);
  font-size: 2.2rem;
  color: var(--clr-accent-gold);
  line-height: 0;
  margin-right: 4px;
}

/* Visual stack */
.origin-visual {
  position: relative;
  min-height: 460px;
}
.origin-card-stack {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 460px;
}
.origin-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--clr-bg-card);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
}
.origin-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.origin-card-main {
  width: 72%;
  height: 360px;
  top: 0;
  left: 0;
  background: linear-gradient(160deg, #FFF8F0, #F5EDE4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-10);
}
.origin-card-main img {
  width: 70%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(92, 61, 46, 0.12));
}
.origin-card-side {
  width: 56%;
  height: 240px;
  bottom: 0;
  right: 0;
  border: 4px solid var(--clr-bg);
}
.origin-card-stack-single .origin-card-main {
  width: 100%;
  height: 460px;
  padding: 0;
  background: var(--clr-bg-card);
}
.origin-card-stack-single .origin-card-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}
.origin-card-stack-single .origin-meta-chip {
  top: auto;
  bottom: 18px;
  right: -14px;
}
.origin-meta-chip {
  position: absolute;
  top: 18px;
  right: 0;
  background: var(--clr-primary-dark);
  color: #fff;
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  z-index: 3;
}
.origin-meta-chip strong {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  color: var(--clr-accent-gold);
  font-weight: 600;
}
.origin-meta-chip span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ----- 3. Founders ----- */
.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
  max-width: 1040px;
  margin: 0 auto;
}
.founder-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-10);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}
.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.founder-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: 1.85rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--sp-5);
  letter-spacing: 0.04em;
  box-shadow: 0 8px 20px rgba(92, 61, 46, 0.18);
  position: relative;
}
.founder-avatar::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--clr-accent-gold);
  opacity: 0.55;
}
.founder-avatar-bp {
  background: linear-gradient(135deg, var(--clr-primary-dark), var(--clr-primary));
}
.founder-avatar-mj {
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-gold));
}
.founder-meta h3 {
  font-family: var(--ff-heading);
  font-size: 1.55rem;
  color: var(--clr-primary-dark);
  font-weight: 600;
  margin-bottom: 4px;
}
.founder-role {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent);
  font-weight: 600;
  margin-bottom: var(--sp-5);
}
.founder-card p {
  color: var(--clr-text-muted);
  line-height: 1.75;
}
.founder-line {
  margin-top: var(--sp-6);
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-gold));
  border-radius: var(--radius-full);
}

/* ----- 4a. Bikash Story ----- */
.about-bikash {
  background: var(--clr-bg);
}
.bikash-grid {
  grid-template-columns: 1fr 1.15fr;
}

/* ----- 4. Manisha Story ----- */
.about-manisha {
  background: var(--clr-bg-alt);
}
.manisha-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.manisha-narrative h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.2;
  color: var(--clr-primary-dark);
  font-weight: 600;
  margin-bottom: var(--sp-6);
}
.manisha-narrative p {
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-4);
  line-height: 1.85;
}
.manisha-narrative p strong {
  color: var(--clr-primary-dark);
  font-weight: 600;
}

.manisha-side {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  position: sticky;
  top: calc(var(--nav-height) + var(--sp-6));
}
.pull-quote {
  background: var(--clr-primary-dark);
  color: #FFF8F0;
  padding: var(--sp-10) var(--sp-8);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.pull-quote::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.25), transparent 70%);
}
.pull-quote .pq-icon {
  width: 36px;
  height: 36px;
  color: var(--clr-accent-gold);
  margin-bottom: var(--sp-4);
}
.pull-quote p {
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  line-height: 1.5;
  margin-bottom: var(--sp-5);
  position: relative;
  z-index: 1;
}
.pq-author {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-accent-gold);
  font-style: normal;
}

.story-timeline {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6) var(--sp-8);
  display: flex;
  flex-direction: column;
}
.story-timeline li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  align-items: baseline;
  border-bottom: 1px dashed var(--clr-border);
}
.story-timeline li:last-child {
  border-bottom: none;
}
.tl-year {
  font-family: var(--ff-heading);
  font-weight: 600;
  color: var(--clr-accent);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.tl-text {
  color: var(--clr-text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ----- 5. Acronym ----- */
.acronym-rail {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: var(--sp-4);
  max-width: 1040px;
  margin: 0 auto;
}
.acronym-tile {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--sp-6) var(--sp-3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
}
.acronym-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.ac-letter {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 600;
  color: var(--clr-primary-dark);
  line-height: 1;
  background: linear-gradient(180deg, var(--clr-primary-dark), var(--clr-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ac-word {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  font-weight: 500;
}
.acronym-divider {
  display: none;
}

/* ----- 6. Experience ----- */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
.exp-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}
.exp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 149, 108, 0.4);
}
.exp-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(200, 149, 108, 0.14), rgba(212, 168, 67, 0.14));
  color: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-2);
}
.exp-icon svg {
  width: 26px;
  height: 26px;
}
.exp-card h4 {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  color: var(--clr-primary-dark);
  font-weight: 600;
  line-height: 1.3;
}
.exp-card p {
  color: var(--clr-text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ----- 7. Custom Gifting ----- */
.about-gifting {
  background: var(--clr-bg);
}
.gifting-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  background: linear-gradient(135deg, #FFF8F0 0%, #F5EDE4 100%);
  border: 1px solid var(--clr-border);
  border-radius: clamp(20px, 2vw, 32px);
  padding: clamp(32px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}
.gifting-shell::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.18), transparent 70%);
  pointer-events: none;
}
.gifting-copy h2 {
  font-family: var(--ff-heading);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: var(--clr-primary-dark);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--sp-5);
}
.gifting-copy p {
  color: var(--clr-text-muted);
  line-height: 1.75;
  margin-bottom: var(--sp-5);
}
.gifting-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2) var(--sp-5);
  margin: var(--sp-2) 0 var(--sp-6);
}
.gifting-list li {
  position: relative;
  padding-left: 22px;
  color: var(--clr-text);
  font-size: 0.95rem;
  line-height: 1.8;
}
.gifting-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-accent-gold);
}
.gifting-range {
  background: rgba(255, 255, 255, 0.6);
  border: 1px dashed var(--clr-accent);
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-5);
  font-size: 0.95rem;
  color: var(--clr-text);
}
.gifting-range strong {
  font-family: var(--ff-heading);
  color: var(--clr-primary-dark);
  font-weight: 600;
}
.gifting-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.gifting-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--sp-3);
  position: relative;
  z-index: 1;
}
.gv-tile {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--clr-bg-card);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
  aspect-ratio: 1 / 1;
}
.gv-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gv-tile:hover img {
  transform: scale(1.05);
}
.gv-1 { transform: translateY(-12px); }
.gv-4 { transform: translateY(12px); }

/* ----- 8. Promise ----- */
.promise-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  max-width: 1080px;
  margin: 0 auto;
}
.promise-block {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-10) var(--sp-8);
  position: relative;
  text-align: left;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.promise-block:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.promise-num {
  font-family: var(--ff-heading);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--clr-accent-gold);
  line-height: 1;
  margin-bottom: var(--sp-4);
  letter-spacing: 0.04em;
}
.promise-block h4 {
  font-family: var(--ff-heading);
  font-size: 1.35rem;
  color: var(--clr-primary-dark);
  font-weight: 600;
  margin-bottom: var(--sp-3);
}
.promise-block p {
  color: var(--clr-text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ----- 9. Final CTA ----- */
.about-final-cta {
  background: var(--clr-bg);
}
.final-cta-card {
  background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 100%);
  color: #FFF8F0;
  border-radius: clamp(20px, 2vw, 32px);
  padding: clamp(48px, 7vw, 96px) clamp(24px, 5vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 1080px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
}
.final-cta-card::before,
.final-cta-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.final-cta-card::before {
  top: -120px;
  left: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.25), transparent 70%);
}
.final-cta-card::after {
  bottom: -140px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(200, 149, 108, 0.22), transparent 70%);
}
.final-cta-card h2 {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 600;
  margin-bottom: var(--sp-5);
  position: relative;
  z-index: 1;
  line-height: 1.15;
}
.final-cta-card p {
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto var(--sp-8);
  opacity: 0.85;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ===== Responsive — tablet ===== */
@media (max-width: 991px) {
  .origin-grid,
  .manisha-grid,
  .gifting-shell {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
  .manisha-side {
    position: static;
  }
  .bikash-grid .manisha-side {
    order: 2;
  }
  .bikash-grid .manisha-narrative {
    order: 1;
  }
  .origin-visual {
    min-height: 380px;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .acronym-rail {
    grid-template-columns: repeat(4, 1fr);
  }
  .acronym-rail .acronym-tile:nth-child(4) {
    grid-column: 4 / 5;
  }
  .promise-row {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

/* ===== Responsive — mobile ===== */
@media (max-width: 640px) {
  .about-hero {
    min-height: auto;
    padding: calc(var(--nav-height) + var(--sp-10)) 0 var(--sp-12);
  }
  .about-hero-meta {
    font-size: 0.78rem;
    padding: 10px 16px;
    gap: var(--sp-3);
  }
  .founder-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }
  .founder-card {
    padding: var(--sp-8);
  }
  .experience-grid {
    grid-template-columns: 1fr;
  }
  .acronym-rail {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-3);
  }
  .acronym-rail .acronym-tile:nth-child(4) {
    grid-column: auto;
  }
  .gifting-list {
    grid-template-columns: 1fr;
  }
  .gifting-visual {
    gap: var(--sp-2);
  }
  .gv-1, .gv-4 { transform: none; }
  .origin-card-main {
    height: 280px;
    padding: var(--sp-6);
  }
  .origin-card-side {
    height: 180px;
  }
  .origin-visual {
    min-height: 380px;
  }
  .pull-quote {
    padding: var(--sp-8) var(--sp-6);
  }
  .story-timeline {
    padding: var(--sp-4) var(--sp-5);
  }
  .story-timeline li {
    grid-template-columns: 90px 1fr;
    gap: var(--sp-3);
  }
  .final-cta-buttons .btn,
  .about-hero-ctas .btn,
  .gifting-ctas .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}


/* ============================================
   PRODUCT REVIEWS — minimal & aesthetic
   ============================================ */
.product-reviews {
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: clamp(28px, 3.2vw, 44px);
  border-top: 1px solid var(--clr-border);
}

.rv-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-6);
  margin-bottom: clamp(20px, 2.4vw, 32px);
  flex-wrap: wrap;
}
.rv-head-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.rv-head h4 {
  font-family: var(--ff-heading);
  font-size: clamp(1.35rem, 1.9vw, 1.6rem);
  color: var(--clr-primary-dark);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.2;
}
.rv-summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--clr-text-muted);
  font-size: 0.9rem;
}
.rv-summary-text {
  letter-spacing: 0.01em;
}
.rv-empty-line {
  margin: 0;
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  font-style: italic;
}

.rv-write-toggle {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--clr-primary-dark);
  background: transparent;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  padding: 9px 18px;
  cursor: pointer;
  transition: border-color 0.25s var(--ease-out), color 0.25s var(--ease-out), background 0.25s var(--ease-out);
}
.rv-write-toggle:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}

.rv-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--clr-accent-gold);
  line-height: 0;
}
.rv-star-off {
  color: var(--clr-border);
}

.rv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.rv-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: var(--sp-4);
  padding: 20px 0;
  border-top: 1px solid var(--clr-border);
}
.rv-item:first-child { border-top: none; padding-top: 0; }

.rv-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--clr-bg-alt);
  color: var(--clr-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.rv-body { min-width: 0; }
.rv-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.rv-name {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--clr-primary-dark);
}
.rv-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--clr-text-light);
  display: inline-block;
}
.rv-date {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  letter-spacing: 0.01em;
}
.rv-stars-sm { margin-bottom: 6px; display: inline-flex; }
.rv-text {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--clr-primary-dark);
}

/* Form */
.rv-form {
  margin-top: clamp(20px, 2.4vw, 32px);
  padding-top: clamp(20px, 2.4vw, 28px);
  border-top: 1px dashed var(--clr-border);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  max-width: 560px;
}
.rv-form[hidden] { display: none; }
.rv-form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rv-form-label {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  font-weight: 500;
}
.rv-form input[type="text"],
.rv-form textarea {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--clr-primary-dark);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--clr-border);
  border-radius: 0;
  padding: 8px 0;
  resize: vertical;
  transition: border-color 0.25s var(--ease-out);
}
.rv-form input[type="text"]::placeholder,
.rv-form textarea::placeholder {
  color: var(--clr-text-light);
}
.rv-form input[type="text"]:focus,
.rv-form textarea:focus {
  outline: none;
  border-bottom-color: var(--clr-accent);
}

.rv-rating-input {
  display: inline-flex;
  gap: 4px;
}
.rv-rating-input.rv-shake { animation: rvShake 0.35s ease-in-out; }
@keyframes rvShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}
.rv-rating-star {
  background: transparent;
  border: none;
  padding: 2px;
  cursor: pointer;
  color: var(--clr-border);
  line-height: 0;
  transition: color 0.18s var(--ease-out), transform 0.18s var(--ease-out);
}
.rv-rating-star.is-hover,
.rv-rating-star.is-on {
  color: var(--clr-accent-gold);
}
.rv-rating-star.is-on svg path { fill: currentColor; }
.rv-rating-star:hover { transform: scale(1.08); }

.rv-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
}
.rv-cancel,
.rv-submit {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}
.rv-cancel {
  background: transparent;
  border: 1px solid var(--clr-border);
  color: var(--clr-text-muted);
}
.rv-cancel:hover {
  border-color: var(--clr-text-muted);
  color: var(--clr-primary-dark);
}
.rv-submit {
  background: var(--clr-primary-dark);
  border: 1px solid var(--clr-primary-dark);
  color: #FFF8F0;
}
.rv-submit:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
}

@media (max-width: 640px) {
  .rv-head { flex-direction: column; align-items: stretch; }
  .rv-write-toggle { align-self: flex-start; }
  .rv-item { grid-template-columns: 32px 1fr; gap: var(--sp-3); }
  .rv-avatar { width: 30px; height: 30px; font-size: 0.85rem; }
}
