  /* ── RESET & ROOT ── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg: #F0F5FF;
    --glass: rgba(255,255,255,0.28);
    --glass-strong: rgba(255,255,255,0.50);
    --glass-border: rgba(255,255,255,0.48);
    --glass-shadow: 0 8px 40px rgba(80,100,140,0.10);
    --glass-shadow-hover: 0 20px 64px rgba(80,100,140,0.18);
    --text: #2D3E4F;
    --text-muted: #6B7F94;
    --accent-sage: #C6DDB8;
    --accent-lavender: #D9C9F0;
    --accent-blush: #F0C9D9;
    --accent-gold: #E8C98A;
    --deep-rose: #C4547A;
    --radius: 22px;
    --serif: 'Cormorant Garamond', serif;
    --sans: 'DM Sans', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    font-weight: 300;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    min-height: 100vh;
  }

  /* BUTTON ICOns */
  .icon-btn i {
  font-size: 16px;
  }

  .top-bar-center i {
  margin-right: 6px;
  }

  /* ── BOOTSTRAP OVERRIDES ── 
     Prevent Bootstrap from stomping our custom styles */
  .btn { font-family: var(--sans) !important; }
  .btn:focus, .btn:focus-visible { box-shadow: none !important; outline: none !important; }
  .navbar { padding: 0 !important; }
  .navbar-toggler { border: none !important; padding: 6px 8px; }
  .navbar-toggler:focus { box-shadow: none !important; }
  .navbar-collapse { flex-basis: auto; }
  /* Stop Bootstrap row negative margins from causing horizontal scroll */
  .row { --bs-gutter-x: 1.5rem; }

  /* ── PARALLAX BACKGROUND ── */
  .parallax-container {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0; pointer-events: none;
  }
  .parallax-layer {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    will-change: transform;
  }
  .bg-section {
    position: absolute; width: 100%; height: 100vh;
    top: 0; left: 0; opacity: 0;
    transition: opacity 1.6s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
  }
  .bg-section.visible { opacity: 1; }
  .bg-section-1 {
    background:
      radial-gradient(circle at 30% 40%, rgba(198,221,184,0.45) 0%, transparent 40%),
      radial-gradient(circle at 80% 70%, rgba(217,201,240,0.35) 0%, transparent 45%),
      radial-gradient(circle at 20% 80%, rgba(240,201,217,0.25) 0%, transparent 50%);
  }
  .bg-section-2 {
    background:
      radial-gradient(circle at 70% 30%, rgba(217,201,240,0.5) 0%, transparent 45%),
      radial-gradient(circle at 40% 80%, rgba(232,201,138,0.3) 0%, transparent 40%),
      radial-gradient(circle at 85% 60%, rgba(198,221,184,0.2) 0%, transparent 50%);
  }
  .bg-section-3 {
    background:
      radial-gradient(circle at 20% 50%, rgba(240,201,217,0.5) 0%, transparent 45%),
      radial-gradient(circle at 90% 40%, rgba(232,201,138,0.4) 0%, transparent 40%),
      radial-gradient(circle at 50% 85%, rgba(217,201,240,0.2) 0%, transparent 50%);
  }
  .bg-section-4 {
    background:
      radial-gradient(circle at 60% 20%, rgba(232,201,138,0.5) 0%, transparent 45%),
      radial-gradient(circle at 25% 75%, rgba(198,221,184,0.3) 0%, transparent 40%),
      radial-gradient(circle at 75% 85%, rgba(240,201,217,0.2) 0%, transparent 50%);
  }
  .particle {
    position: absolute; border-radius: 50%;
    background: rgba(255,255,255,0.28);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255,255,255,0.40);
    pointer-events: none;
    animation: particleFloat 20s infinite ease-in-out;
  }
  .particle-1 { width:150px; height:150px; top:15%; left:10%; animation-delay:0s; }
  .particle-2 { width:80px; height:80px; top:60%; right:15%; animation-delay:-5s; }
  .particle-3 { width:200px; height:200px; bottom:10%; left:20%; animation-delay:-10s; }
  .particle-4 { width:120px; height:120px; top:30%; right:25%; animation-delay:-15s; }
  .particle-5 { width:60px; height:60px; bottom:40%; left:5%; animation-delay:-7s; }
  .particle-6 { width:180px; height:180px; top:70%; right:5%; animation-delay:-12s; }
  @keyframes particleFloat {
    0%,100% { transform: translateY(0) translateX(0) rotate(0deg); }
    33%     { transform: translateY(-30px) translateX(20px) rotate(120deg); }
    66%     { transform: translateY(20px) translateX(-30px) rotate(240deg); }
  }
  .orb {
    position: absolute; border-radius: 50%;
    filter: blur(90px); opacity: 0.55;
    animation: orbPulse 12s ease-in-out infinite alternate;
  }
  .orb-1 { width:700px; height:700px; background:var(--accent-sage); top:-200px; left:-150px; animation-delay:0s; }
  .orb-2 { width:500px; height:500px; background:var(--accent-lavender); top:200px; right:-100px; animation-delay:-3s; }
  .orb-3 { width:600px; height:600px; background:var(--accent-blush); bottom:-100px; left:30%; animation-delay:-6s; }
  .orb-4 { width:350px; height:350px; background:var(--accent-gold); top:60%; right:10%; animation-delay:-9s; }
  @keyframes orbPulse {
    0%   { transform:scale(1);   opacity:0.45; filter:blur(90px); }
    100% { transform:scale(1.1); opacity:0.65; filter:blur(100px); }
  }

  .flower-wrap {
  position: absolute;
  pointer-events: none;
}

.floating-flower {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.28;
  animation: flowerFloat 8s ease-in-out infinite;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.08));
}

.promo-pct {
  animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Positions */
.flower-wrap-1 {
  top: 70vh;
  left: 4%;
  width: 220px;
}

.flower-wrap-2 {
  top: 85vh;
  right: 6%;
  width: 180px;
}

.flower-wrap-3 {
  top: 40vh;
  left: 40%;
  width: 240px;
}

/* Slightly different timing */
.flower-1 { animation-delay: 0s; }
.flower-2 { animation-delay: -2s; }
.flower-3 { animation-delay: -4s; }

@keyframes flowerFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(2deg);
  }
}

  /* ── SCROLL PROGRESS ── */
  .scroll-progress {
    position: fixed; top:0; left:0; width:0%; height:3px;
    background: linear-gradient(90deg, var(--accent-sage), var(--accent-lavender), var(--accent-blush), var(--accent-gold));
    z-index: 2000; transition: width 0.1s linear;
  }

  /* ── GLASS UTILITIES ── */
  .glass {
    background: var(--glass);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius); box-shadow: var(--glass-shadow);
  }
  .glass-strong {
    background: var(--glass-strong);
    backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255,255,255,0.58);
    border-radius: var(--radius); box-shadow: var(--glass-shadow);
  }

  /* ── LAYOUT ── */
  /* FIX: sections start visible (opacity:1) — JS will handle entrance for below-fold ones */
  section {
    position: relative; z-index: 1; padding: 90px 0;
    opacity: 1; transform: none;   /* default: visible */
    transition: opacity 0.9s ease, transform 0.9s ease;
  }
  /* Only sections that need reveal get .reveal-section class */
  section.reveal-section {
    opacity: 0; transform: translateY(28px);
  }
  section.reveal-section.visible {
    opacity: 1; transform: translateY(0);
  }

  /* ── TOP BAR ── */
  .top-bar {
    position: relative; z-index: 300;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.30);
    padding: 9px 0;
    font-size: 11.5px; font-weight: 400;
    letter-spacing: 0.03em; color: var(--text-muted);
  }
  .top-bar-center { font-weight: 500; color: var(--text); }
  .top-bar-center span { color: var(--text-muted); font-weight: 300; }
  .top-bar a { text-decoration: none; color: var(--text-muted); transition: color .2s; font-size: 11.5px; }
  .top-bar a:hover { color: var(--text); }

  /* ── HEADER / NAV ── */
  .site-header {
    position: sticky; top: 0; z-index: 500;
    background: rgba(240,245,255,0.62);
    backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(255,255,255,0.42);
    box-shadow: 0 2px 20px rgba(80,100,140,0.07);
    transition: background .3s, box-shadow .3s;
  }
  .site-header .navbar { min-height: 72px; }

  .logo { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
  .logo-icon img{
    width: 55px; height: 55px;
    display: flex; align-items: center; justify-content: center;
  }
  .logo-text { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; color: var(--text); line-height: 1; }
  .logo-text em { display: block; font-style: italic; font-weight: 300; font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); margin-top: 2px; }

  /* Nav links — override Bootstrap */
  .nav-menu .nav-link {
    color: var(--text-muted) !important;
    font-family: var(--sans);
    font-size: 12.5px; font-weight: 400; letter-spacing: 0.04em;
    padding: 8px 13px !important; border-radius: 50px;
    transition: all .2s;
  }
  .nav-menu .nav-link:hover { color: var(--text) !important; background: rgba(255,255,255,0.48); }
  .nav-menu .nav-link.active { color: var(--text) !important; font-weight: 500; background: rgba(255,255,255,0.32); }

  /* MOBILE NAV PANEL */
.navbar-collapse.show,
.navbar-collapse.collapsing {
  background: rgba(240,245,255,0.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-top: 1px solid rgba(255,255,255,0.42);
  padding: 12px 0 16px;
  margin-top: 4px;
  border-radius: 0 0 20px 20px;

  /*allow scrolling if mobile view */
  max-height: 80vh;
  overflow-y: auto;
}

/* TOGGLER ICON */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232D3E4F' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* DROPDOWN ARROW */
.nav-menu .dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: middle;
}

/* MEGA MENU */
.dropdown-menu.mega-menu {
  width: 100%;
  left: 0;
  right: 0;
  margin-top: 10px;
  padding: 28px 32px;

  
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);

  border: 1px solid rgba(255,255,255,0.35) !important;
  border-radius: 24px;

  box-shadow:
    0 20px 50px rgba(80,100,140,0.12),
    inset 0 1px 0 rgba(255,255,255,0.3);

  overflow: hidden;
}

/* GLASS SHINE */
.dropdown-menu.mega-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.22),
    rgba(255,255,255,0.05)
  );
  pointer-events: none;
}

/* TITLE */
.mega-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

/* LINKS */
.dropdown-menu.mega-menu .dropdown-item {
  padding: 8px 0;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  background: transparent !important;
  transition: all .2s;
}

/* HOVER */
.dropdown-menu.mega-menu .dropdown-item:hover {
  color: var(--text);
  background: rgba(255,255,255,0.25) !important;
  padding-left: 6px;
}

/* ✅ MOBILE DROPDOWN SCROLL FIX */
@media (max-width: 991.98px) {
  .dropdown-menu.mega-menu {
    position: static !important;
    transform: none !important;
    width: 100%;
    max-height: 60vh;
    overflow-y: auto; 
    margin-top: 8px;
    padding: 18px 20px;
    border-radius: 18px;

    background: rgba(255,255,255,0.14) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    box-shadow: none;
  }

  .mega-title {
    font-size: 1.1rem;
    margin-top: 8px;
  }
}

  .header-icons { display: flex; gap: 6px; align-items: center; }
  .icon-btn {
    width: 38px; height: 38px;
    background: var(--glass); border: 1px solid var(--glass-border); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; cursor: pointer; text-decoration: none;
    transition: all .22s; color: var(--text); position: relative;
  }
  .icon-btn:hover { background: rgba(255,255,255,0.58); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(80,100,140,0.12); }
  .cart-badge {
    position: absolute; top: -3px; right: -3px;
    width: 16px; height: 16px; background: var(--deep-rose);
    color: white; border-radius: 50%; font-size: 9px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; border: 2px solid var(--bg);
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 80px 0 60px;
  }
  /* FIX: Hero must always be fully visible from the start */
  .hero { opacity: 1 !important; transform: none !important; }

  .hero-kicker {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 18px 7px 12px;
    background: rgba(255,255,255,0.42); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.58); border-radius: 50px;
    font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--text-muted);
    margin-bottom: 26px;
    animation: fadeUp 0.7s ease both;
  }
  .live-dot {
    width: 8px; height: 8px; background: #7C9A7C; border-radius: 50%;
    animation: livePulse 2.2s ease-in-out infinite; flex-shrink: 0;
  }
  @keyframes livePulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.35;transform:scale(0.72);} }

  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(3rem,5vw,5.4rem);
    font-weight: 300; line-height: 1.05; color: var(--text);
    margin-bottom: 22px; letter-spacing: -0.01em;
    animation: fadeUp 0.7s 0.1s ease both;
  }
  .hero h1 em { font-style: italic; color: #7C9A7C; display: block; }

  .hero-sub {
    font-size: 15px; font-weight: 300; color: var(--text-muted);
    line-height: 1.75; max-width: 420px; margin-bottom: 42px;
    animation: fadeUp 0.7s 0.2s ease both;
  }

  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.7s 0.3s ease both; }

  /* ── BUTTONS — override Bootstrap completely ── */
  .btn-primary, a.btn-primary {
    padding: 14px 36px !important;
    background: rgba(255,255,255,0.38) !important;
    backdrop-filter: blur(14px) !important;
    border: 1.5px solid rgba(255,255,255,0.58) !important;
    border-radius: 50px !important;
    font-family: var(--sans) !important;
    font-size: 11.5px !important; font-weight: 500 !important;
    letter-spacing: 0.1em !important; text-transform: uppercase !important;
    color: var(--text) !important;
    cursor: pointer; text-decoration: none; transition: all .3s !important;
    box-shadow: 0 4px 20px rgba(120,150,120,0.12) !important;
    display: inline-block;
  }
  .btn-primary:hover, a.btn-primary:hover {
    background: rgba(255,255,255,0.65) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 32px rgba(120,150,120,0.20) !important;
    color: var(--text) !important;
  }
  .btn-secondary, a.btn-secondary {
    padding: 14px 24px !important;
    background: transparent !important; border: none !important;
    font-family: var(--sans) !important;
    font-size: 11.5px !important; font-weight: 400 !important;
    letter-spacing: 0.1em !important; text-transform: uppercase !important;
    color: var(--text-muted) !important;
    cursor: pointer; text-decoration: none;
    border-bottom: 1px solid transparent !important;
    transition: all .3s !important; display: inline-block;
    box-shadow: none !important;
  }
  .btn-secondary:hover, a.btn-secondary:hover {
    color: var(--text) !important;
    border-bottom-color: var(--text) !important;
    background: transparent !important;
  }

  .hero-stats {
    display: flex; gap: 36px; margin-top: 48px; padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.45);
    animation: fadeUp 0.7s 0.4s ease both;
  }
  .stat-num { font-family: var(--serif); font-size: 2rem; font-weight: 400; color: var(--text); line-height: 1; }
  .stat-lbl { font-size: 11px; color: var(--text-muted); margin-top: 3px; letter-spacing: 0.3px; font-weight: 300; }

  .hero-scroll {
    margin-top: 54px; display: flex; flex-direction: column; align-items: flex-start;
    gap: 8px; color: var(--text-muted); font-size: 10px; letter-spacing: 0.14em;
    text-transform: uppercase; cursor: pointer;
    animation: fadeUp 0.7s 0.55s ease both;
  }
  .scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(80,100,140,0.35));
    animation: scrollLinePulse 2s ease-in-out infinite;
  }
  @keyframes scrollLinePulse { 0%,100%{opacity:0.4;} 50%{opacity:1;} }

  /* Hero card */
  .hero-visual {
    position: relative; display: flex; align-items: center; justify-content: center;
    padding: 40px 60px 40px 40px;   /* room for floating tags */
    animation: fadeInRight 0.9s 0.2s ease both;
  }
  .hero-main-card {
    width: 100%; max-width: 340px;
    background: var(--glass-strong); backdrop-filter: blur(24px);
    border: 1.5px solid rgba(255,255,255,0.78); border-radius: 30px;
    padding: 28px;
    box-shadow: 0 28px 70px rgba(80,100,140,0.14), 0 4px 20px rgba(255,255,255,0.4) inset;
    position: relative; z-index: 2;
  }
  .hero-prod-img {
  width: 100%;
  height: 220px;
  border-radius: 20px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  }
  .hero-prod-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(240,201,217,0.38));
  border-radius: 20px;
  }
  .hero-prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  }
  .prod-badge-hero {
    position: absolute; top: 13px; left: 13px;
    background: rgba(255,255,255,0.68); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.72); border-radius: 50px;
    padding: 4px 12px; font-size: 10px; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--text);
  }
  .hc-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; color: var(--text); margin-bottom: 4px; }
  .hc-price { font-size: 1rem; color: var(--deep-rose); font-weight: 500; }
  .hc-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; }
  .hc-rating { font-size: 0.74rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
  .btn-hc-add {
    padding: 9px 22px !important;
    background: rgba(255,255,255,0.52) !important; backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255,255,255,0.65) !important; border-radius: 50px !important;
    font-family: var(--sans) !important; font-size: 10px !important;
    font-weight: 600 !important; letter-spacing: 0.09em !important;
    text-transform: uppercase !important; cursor: pointer !important;
    color: var(--text) !important; transition: all .3s !important;
    box-shadow: none !important;
  }
  .btn-hc-add:hover { background: rgba(255,255,255,0.82) !important; transform: translateY(-1px) !important; }

  .float-tag {
    position: absolute;
    background: rgba(255,255,255,0.85); backdrop-filter: blur(18px);
    border: 1.5px solid rgba(255,255,255,0.92); border-radius: 18px;
    padding: 13px 18px; box-shadow: 0 8px 32px rgba(80,100,140,0.10); z-index: 3;
  }
  .ft-1 { top: 0px; right: 0px; display: flex; align-items: center; gap: 10px; animation: floatAnim 4s ease-in-out infinite; }
  .ft-2 { bottom: 20px; left: 0px; animation: floatAnim 4s 1.8s ease-in-out infinite; }
  .ft-icon {
    width: 34px; height: 34px; border-radius: 10px;
    background: linear-gradient(135deg,rgba(198,221,184,0.7),rgba(240,201,217,0.5));
    display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
  }
  .ft-main { font-size: 0.8rem; font-weight: 500; color: var(--text); }
  .ft-sub  { font-size: 0.7rem; color: var(--text-muted); margin-top: 1px; }

  @keyframes floatAnim { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-9px);} }
  @keyframes fadeUp { from{opacity:0;transform:translateY(22px);} to{opacity:1;transform:translateY(0);} }
  @keyframes fadeInRight { from{opacity:0;transform:translateX(36px);} to{opacity:1;transform:translateX(0);} }

  /* ── SECTION HEADERS ── */
  .section-header { text-align: center; margin-bottom: 56px; }
  .section-tag { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: #7C9A7C; margin-bottom: 12px; }
  .section-title { font-family: var(--serif); font-size: clamp(2.1rem,4vw,3.2rem); font-weight: 300; color: var(--text); line-height: 1.1; }
  .section-title em { font-style: italic; color: #8099B0; }
  .section-sub { margin-top: 12px; font-size: 14px; color: var(--text-muted); font-weight: 300; }
  .section-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 52px; gap: 20px; flex-wrap: wrap; }
  .see-all { font-size: 11.5px; font-weight: 500; letter-spacing: 0.08em; color: var(--text); text-decoration: none; text-transform: uppercase; border-bottom: 1px solid rgba(45,62,79,0.3); padding-bottom: 2px; transition: border-color .2s; white-space: nowrap; }
  .see-all:hover { border-color: var(--text); }

  /* ── TRUST ── */
  .trust { padding: 40px 0; }
  .trust-card { padding: 26px 20px; text-align: center; transition: transform .3s, box-shadow .3s; }
  .trust-card:hover { transform: translateY(-5px); box-shadow: var(--glass-shadow-hover); }
  .trust-icon { width: 54px; height: 54px; background: rgba(255,255,255,0.52); border: 1px solid rgba(255,255,255,0.62); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; margin: 0 auto 14px; box-shadow: 0 4px 16px rgba(80,100,140,0.08); }
  .trust-card h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
  .trust-card p { font-size: 12px; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

  /* ── CATEGORIES ── */
  .cat-card { overflow: hidden; transition: transform .4s cubic-bezier(.2,.8,.3,1), box-shadow .4s; cursor: pointer; }
  .cat-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 28px 64px rgba(80,100,140,0.15); }
  .cat-img {
    height: 320px;
    border-radius: var(--radius) var(--radius) 0 0;
    position: relative;
    overflow: hidden;
  }
  .cat-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 55%,rgba(255,255,255,0.18)); }
  .cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }
  .cat-card:hover img {
    transform: scale(1.08);
  }
  .cat-body { padding: 20px 22px 24px; }
  .cat-body h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; margin-bottom: 6px; }
  .cat-body p { font-size: 12.5px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; font-weight: 300; }
  .cat-link { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); text-decoration: none; border-bottom: 1px solid rgba(45,62,79,0.3); padding-bottom: 2px; transition: border-color .2s; }
  .cat-link:hover { border-color: var(--text); }

  /* ── PRODUCTS ── */
  .prod-card { overflow: hidden; position: relative; transition: transform .4s cubic-bezier(.2,.8,.3,1), box-shadow .4s; }
  .prod-card:hover { transform: translateY(-10px) rotateY(1.5deg); box-shadow: 0 30px 68px rgba(80,100,140,0.16); }
  .prod-card:hover .prod-cart-btn { opacity: 1 !important; transform: translateY(0) !important; }
  .prod-img {
    height: 320px;
    border-radius: var(--radius) var(--radius) 0 0;
    position: relative;
    overflow: hidden;
  }
  .prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }
  .prod-card:hover img {
    transform: scale(1.08);
  }

  .prod-badge { position: absolute; top: 13px; left: 13px; background: rgba(255,255,255,0.68); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.72); border-radius: 50px; padding: 4px 12px; font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); }
  .prod-body { padding: 18px 20px 22px; }
  .prod-stars { color: #D4A04A; font-size: 12px; margin-bottom: 8px; letter-spacing: 1px; }
  .prod-stars span { color: var(--text-muted); font-size: 11px; margin-left: 4px; }
  .prod-name { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; margin-bottom: 6px; line-height: 1.2; }
  .prod-sub { font-size: 12px; color: var(--text-muted); margin-bottom: 14px; font-weight: 300; }
  .prod-footer { display: flex; align-items: center; justify-content: space-between; }
  .prod-price { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
  .prod-price del { font-size: 14px; color: var(--text-muted); font-weight: 300; margin-right: 4px; }
  .prod-cart-btn {
    padding: 9px 18px !important; background: rgba(255,255,255,0.52) !important;
    backdrop-filter: blur(8px) !important; border: 1px solid rgba(255,255,255,0.65) !important;
    border-radius: 50px !important; font-family: var(--sans) !important;
    font-size: 10px !important; font-weight: 600 !important; letter-spacing: 0.08em !important;
    text-transform: uppercase !important; cursor: pointer !important; color: var(--text) !important;
    opacity: 0 !important; transform: translateY(8px) !important; transition: all .3s !important;
    white-space: nowrap; box-shadow: none !important;
  }
  .prod-cart-btn:hover { background: rgba(255,255,255,0.85) !important; }

  /* ── PROMO ── */
  .promo { padding: 0 0 90px; }
  .promo-inner {
    padding: 70px 68px;
    background: linear-gradient(135deg,rgba(45,62,79,0.92) 0%,rgba(60,38,52,0.92) 55%,rgba(32,50,44,0.90) 100%);
    backdrop-filter: blur(22px); border: 1px solid rgba(255,255,255,0.14);
    border-radius: 30px; display: grid; grid-template-columns: 1fr auto;
    gap: 40px; align-items: center;
    box-shadow: 0 24px 70px rgba(40,55,70,0.22);
    overflow: hidden; position: relative;
  }
  .promo-inner::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 55% 65% at 85% 55%,rgba(198,221,184,0.12) 0%,transparent 60%),
      radial-gradient(ellipse 35% 45% at 15% 75%,rgba(217,201,240,0.10) 0%,transparent 55%);
    pointer-events: none;
  }
  .promo-deco { 
    position: absolute; 
    right: 100px; 
    top: 60px; 
    opacity: 0.07; 
    user-select: none;
    transform: rotate(-15deg); 
  }
  .promo-deco img {
    width: 70%;
    display: block;
  }

  .promo-img {
    width: 250px;
    max-width: 100%;
    display: block;
    margin: 0 auto 16px;
    transform: rotate(25deg);
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
  }
  .promo-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(198,221,184,0.85); margin-bottom: 12px; }
  .promo-title { font-family: var(--serif); font-size: clamp(2rem,3.5vw,3rem); font-weight: 300; line-height: 1.1; margin-bottom: 10px; color: white; }
  .promo-title em { font-style: italic; color: var(--accent-blush); }
  .promo-sub { font-size: 14px; color: rgba(255,255,255,0.52); font-weight: 300; margin-bottom: 28px; max-width: 380px; }
  .countdown { display: flex; gap: 12px; margin-bottom: 36px; }
  .cd-unit { text-align: center; background: rgba(255,255,255,0.10); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.18); border-radius: 14px; padding: 12px 16px; min-width: 64px; box-shadow: 0 4px 18px rgba(0,0,0,0.15); }
  .cd-num { font-family: var(--serif); font-size: 2rem; font-weight: 400; line-height: 1; color: white; }
  .cd-label { font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 4px; }
  .promo-right { text-align: center; position: relative; z-index: 2; }
  .promo-emoji { font-size: 100px; display: block; margin-bottom: 16px; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15)); }
  .promo-pct { font-family: var(--serif); font-size: 4.2rem; font-weight: 300; line-height: 1; color: var(--accent-sage); }
  .promo-pct span { font-size: 1.5rem; }
  .btn-promo, a.btn-promo {
    padding: 14px 36px !important; background: rgba(255,255,255,0.15) !important;
    backdrop-filter: blur(14px) !important; border: 1.5px solid rgba(255,255,255,0.30) !important;
    border-radius: 50px !important; font-family: var(--sans) !important;
    font-size: 11.5px !important; font-weight: 500 !important; letter-spacing: 0.1em !important;
    text-transform: uppercase !important; color: white !important;
    cursor: pointer; text-decoration: none; transition: all .3s !important;
    display: inline-block; box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
  }
  .btn-promo:hover, a.btn-promo:hover { background: rgba(255,255,255,0.28) !important; transform: translateY(-3px) !important; box-shadow: 0 12px 32px rgba(0,0,0,0.22) !important; color: white !important; }

  /* ── COLLECTIONS ── */
  .coll-card {
  padding: 24px;
  text-align: center;
  transition: transform .4s cubic-bezier(.2,.8,.3,1), box-shadow .4s;
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
}

.coll-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 28px 64px rgba(80,100,140,0.15);
}

.coll-banner {
  width: calc(100% + 48px);
  height: 100px;
  object-fit: cover;

  margin: -24px -24px 18px -24px;
  border-radius: 18px 18px 0 0;
}

.coll-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.coll-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

  /* ── REVIEWS ── */
  .review-card { padding: 30px 28px; transition: transform .3s; }
  .review-card:hover { transform: translateY(-4px); }
  .review-top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
  .reviewer-avatar { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 600; color: var(--text); background: linear-gradient(135deg,rgba(198,221,184,0.5),rgba(217,201,240,0.5)); border: 1px solid rgba(255,255,255,0.62); flex-shrink: 0; }
  .reviewer-info h5 { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
  .reviewer-info .stars { color: #D4A04A; font-size: 12px; letter-spacing: 1px; }
  .review-text { font-family: var(--serif); font-size: 1.08rem; font-style: italic; font-weight: 300; line-height: 1.68; color: var(--text); margin-bottom: 14px; }
  .review-meta { font-size: 11px; color: var(--text-muted); font-weight: 300; }

  /* ── STORY ── */
  .story-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7C9A7C;
  margin-bottom: 14px;
}

.story h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}

.story h2 em {
  font-style: italic;
  color: #8099B0;
}

.story p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.82;
  font-weight: 300;
  margin-bottom: 16px;
}

.story-img {
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  border: 1px solid rgba(255,255,255,0.48);
}

.story-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent 60%);
  pointer-events: none;
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills nicely */
  display: block;
}
  /* ── INSTAGRAM ── */
  .insta-grid {
  margin-bottom: 36px;
}

/* Base card */
.insta-card {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  border: 1px solid rgba(255,255,255,0.42);
}

/* Image inside */
.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Sizes */
.insta-card {
  aspect-ratio: 1 / 1; /* default square */
}

.insta-card.wide {
  aspect-ratio: 2 / 1; /* horizontal */
}

.insta-card.tall {
  aspect-ratio: 1 / 2; /* vertical */
}

/* Hover */
.insta-card:hover {
  transform: scale(1.04);
  box-shadow: var(--glass-shadow-hover);
}

/* Overlay heart */
.insta-card::after {
  content: "♡";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.30);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--text);
  opacity: 0;
  transition: opacity .3s;
}

.insta-card:hover::after {
  opacity: 1;
}

.insta-cta {
  text-align: center;
  margin-top: 36px;
}

  /* ── CTA ── */
.cta-card {
  max-width: 640px;
  margin: 0 auto;
  padding: 62px 60px;
  text-align: center;
}

.cta-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7C9A7C;
  margin-bottom: 12px;
}

.cta h2 {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  margin-bottom: 10px;
  line-height: 1.1;
}

.cta h2 em {
  font-style: italic;
  color: #8099B0;
}

.cta p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 300;
}

/* CTA Button */
.cta-button {
  padding: 14px 36px !important;
  background: var(--text) !important;
  color: white !important;
  border-radius: 50px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  transition: all .3s !important;
}

.cta-button:hover {
  background: #3a4f65 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,62,79,0.25);
}
  /* ── FOOTER ── */
  footer { position: relative; z-index: 1; background: rgba(240,245,255,0.58); backdrop-filter: blur(18px); border-top: 1px solid rgba(255,255,255,0.42); padding: 64px 0 32px; }
  .footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.72; margin: 14px 0 20px; font-weight: 300; }
  .social-icons { display: flex; gap: 8px; }
  .social-btn { width: 36px; height: 36px; background: rgba(255,255,255,0.48); border: 1px solid rgba(255,255,255,0.58); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; text-decoration: none; color: var(--text); transition: all .2s; }
  .social-btn:hover { background: rgba(255,255,255,0.72); transform: translateY(-2px); }
  .footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text); margin-bottom: 18px; }
  .footer-col ul { list-style: none; padding: 0; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { font-size: 13px; color: var(--text-muted); text-decoration: none; font-weight: 300; transition: color .2s; }
  .footer-col ul li a:hover { color: var(--text); }
  .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.32); flex-wrap: wrap; gap: 12px; margin-top: 52px; }
  .footer-bottom p { font-size: 12px; color: var(--text-muted); font-weight: 300; margin: 0; }
  .payment-icons { display: flex; gap: 8px; }
  .payment-icon { padding: 5px 10px; font-size: 11px; font-weight: 600; color: var(--text-muted); background: rgba(255,255,255,0.48); border: 1px solid rgba(255,255,255,0.58); border-radius: 6px; }
  .footer-legal { display: flex; gap: 18px; }
  .footer-legal a { font-size: 12px; color: var(--text-muted); text-decoration: none; font-weight: 300; transition: color .2s; }
  .footer-legal a:hover { color: var(--text); }

  /* ── RESPONSIVE EXTRAS ── */
  @media (max-width: 991px) {
    .hero-visual { display: none; }
    .hero { min-height: auto; padding: 120px 0 60px; }
  }
  @media (max-width: 767px) {
    section { padding: 60px 0; }
    .promo-inner { grid-template-columns: 1fr; padding: 40px 28px; }
    .promo-deco { display: none; }
    .newsletter-card { padding: 40px 24px; }
    .newsletter-form { flex-direction: column; }
    .story-img { height: 260px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
  }