/* ════════════════════════════════════════════════════════════
   AARWINS — Premium Tropical Beverage Website
   Color Palette: #447F98 / #629BB6 / #DADEE1 / #B9DBE1 / #D6EBF3
   ════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Barlow+Condensed:wght@400;500;600;700;800&display=swap');

/* ── Tokens ── */
:root {
  --turquoise:    #447F98;
  --slate:        #629BB6;
  --platinum:     #DADEE1;
  --glacier:      #B9DBE1;
  --ice:          #D6EBF3;
  --dark:         #17313B;
  --light:        #5D7884;
  --white:        #ffffff;
  --off-white:    #F7F7F5;

  --grad-main:    linear-gradient(135deg, #447F98 0%, #629BB6 100%);
  --grad-hero-bg: linear-gradient(160deg, #D6EBF3 0%, #B9DBE1 50%, #c9e0ea 100%);
  --grad-footer:  linear-gradient(135deg, #2d5f75 0%, #447F98 40%, #629BB6 100%);

  --radius-pill:  100px;
  --radius-card:  24px;
  --radius-hero:  40px;

  --shadow-sm:    0 2px 10px rgba(68,127,152,0.08);
  --shadow-md:    0 8px 32px rgba(68,127,152,0.14);
  --shadow-lg:    0 20px 60px rgba(68,127,152,0.18);

  --transition:   all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --navbar-h: 74px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  max-width: 100% !important;
}
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden !important;
  max-width: 100% !important;
  -webkit-font-smoothing: antialiased;
}
#app-wrapper {
  overflow-x: hidden !important;
  width: 100% !important;
  position: relative !important;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 54px;
  padding: 0 32px;
  border-radius: 50px;
  background: linear-gradient(180deg, #ff9d00 0%, #ff5e00 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 
    inset 0px 15px 20px rgba(255, 255, 255, 0.6), 
    inset 0px -5px 15px rgba(200, 50, 0, 0.5), 
    0px 10px 20px rgba(255, 94, 0, 0.4);
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #ffaf33 0%, #ff6a00 100%);
  box-shadow: 
    inset 0px 15px 20px rgba(255, 255, 255, 0.7), 
    inset 0px -5px 15px rgba(200, 50, 0, 0.6), 
    0px 15px 25px rgba(255, 94, 0, 0.5);
}
.btn-primary.btn-sm { height: 44px; padding: 0 22px; font-size: 13px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 54px;
  padding: 0 32px;
  border-radius: 50px;
  background: linear-gradient(180deg, #ff9d00 0%, #ff5e00 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 
    inset 0px 15px 20px rgba(255, 255, 255, 0.6), 
    inset 0px -5px 15px rgba(200, 50, 0, 0.5), 
    0px 10px 20px rgba(255, 94, 0, 0.4);
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #ffaf33 0%, #ff6a00 100%);
  box-shadow: 
    inset 0px 15px 20px rgba(255, 255, 255, 0.7), 
    inset 0px -5px 15px rgba(200, 50, 0, 0.6), 
    0px 15px 25px rgba(255, 94, 0, 0.5);
}

/* ── Section typography ── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 16px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.section-sub {
  font-size: 17px;
  line-height: 1.8;
  color: var(--light);
}

/* ════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 32px 0;
  display: flex;
  justify-content: center;
}

.navbar {
  width: 100%;
  max-width: 1280px;
  height: var(--navbar-h);
  padding: 0 32px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(68,127,152,0.88) 0%, rgba(98,155,182,0.88) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 8px 32px rgba(68,127,152,0.2), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: var(--transition);
}

/* Scroll-shrink state */
.site-header.scrolled .navbar {
  background: linear-gradient(135deg, rgba(68,127,152,0.96) 0%, rgba(98,155,182,0.96) 100%);
  box-shadow: 0 12px 40px rgba(68,127,152,0.28);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  color: #1a1a1a !important;
  text-transform: uppercase !important;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  position: relative;
  transition: var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: rgba(255,255,255,0.9);
  transition: width 0.25s ease;
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active {
  color: #fff !important;
  font-weight: 700 !important;
}
.nav-links a.active::after {
  width: 100% !important;
}

.nav-shop-btn {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: var(--transition);
  cursor: pointer;
}
.nav-shop-btn:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition-fast);
}


/* Mobile Drawer Backdrop Overlay */
.nav-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  z-index: 10004;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
              backdrop-filter 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-drawer-backdrop.open,
.nav-drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Mobile drawer — Premium Glassmorphic Slide-in from Right */
.nav-drawer {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: auto !important;
  width: 82vw !important;
  max-width: 100vw !important;
  height: 100% !important;
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(30px) !important;
  -webkit-backdrop-filter: blur(30px) !important;
  border-left: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: -20px 0 80px rgba(0, 0, 0, 0.18) !important;
  border-radius: 0 !important; /* Premium full-height edge-to-edge look */
  z-index: 10005 !important;
  
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: space-between !important;
  padding: 60px 40px !important;
  box-sizing: border-box !important;
  
  /* Sliding right to left */
  transform: translateX(100%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), 
              opacity 1s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

@media (min-width: 601px) and (max-width: 1024px) {
  .nav-drawer {
    width: 70vw !important;
  }
}

/* Active State */
.nav-drawer.open,
.nav-drawer.is-open {
  transform: translateX(0) !important;
  opacity: 1 !important;
  pointer-events: all !important;
}

/* Atmospheric Ambient Glow Orbs inside menu */
.drawer-glow-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.drawer-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.15;
  mix-blend-mode: screen;
}
.orb-blue {
  width: 200px;
  height: 200px;
  top: -10%;
  left: -15%;
  background: radial-gradient(circle, rgba(68, 127, 152, 0.5) 0%, transparent 70%);
}
.orb-pink {
  width: 250px;
  height: 250px;
  bottom: 25%;
  right: -20%;
  background: radial-gradient(circle, rgba(255, 180, 200, 0.4) 0%, transparent 70%);
}
.orb-lavender {
  width: 180px;
  height: 180px;
  top: 35%;
  right: -10%;
  background: radial-gradient(circle, rgba(190, 160, 240, 0.4) 0%, transparent 70%);
}
.orb-teal {
  width: 200px;
  height: 200px;
  bottom: -5%;
  left: -5%;
  background: radial-gradient(circle, rgba(0, 201, 184, 0.4) 0%, transparent 70%);
}

/* Ambient Grain Texture */
.drawer-grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Drawer Content Structure */
.drawer-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 50px;
}

/* Drawer Brand Header */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.drawer-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #ffffff;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}
.drawer-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.drawer-logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
}
.drawer-editorial-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--glacier);
  text-transform: uppercase;
}

/* Navigation Links layout */
.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Stagger Animation */
.drawer-nav-item {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  gap: 24px !important;
  line-height: 1 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: clamp(1.8rem, 5.5vw, 2.6rem) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.5px !important;
  color: #ffffff !important;
  text-decoration: none !important;
  
  opacity: 0;
  filter: blur(10px);
  transform: translateX(30px) translateY(10px);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              color 0.4s ease,
              text-shadow 0.4s ease;
  transition-delay: calc(0.1s + var(--stagger-index) * 0.08s);
}

.nav-drawer.open .drawer-nav-item,
.nav-drawer.is-open .drawer-nav-item {
  opacity: 1;
  filter: blur(0px);
  transform: translateX(0) translateY(0);
}

/* Hover generic behavior */
.drawer-nav-item:hover {
  color: #ffffff !important;
  transform: translateX(12px) !important;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              color 0.3s ease,
              text-shadow 0.3s ease !important;
  transition-delay: 0s !important;
}

/* Icon style */
.menu-icon {
  width: 24px !important;
  height: 24px !important;
  stroke-width: 1.6px;
  transition: stroke 0.4s ease, transform 0.4s ease, filter 0.4s ease;
  flex-shrink: 0;
  display: inline-block;
  position: relative;
  top: 1.5px; /* Visually nudge icon down for perfect centering alignment with uppercase text */
}

.drawer-nav-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.drawer-nav-item:hover::after {
  width: 100%;
}

/* ─── INDIVIDUAL PREMIUM COLORS FOR ICONS & GLOWS ─── */

/* 1. Home - Glacier Blue */
.drawer-nav-item:nth-child(1) .menu-icon {
  stroke: #E0F2FE !important;
}
.drawer-nav-item:nth-child(1):hover .menu-icon {
  stroke: #E0F2FE !important;
  transform: scale(1.15) !important;
  filter: drop-shadow(0 0 8px rgba(224, 242, 254, 0.85)) !important;
}
.drawer-nav-item:nth-child(1):hover {
  text-shadow: 0 0 20px rgba(224, 242, 254, 0.6) !important;
}
.drawer-nav-item:nth-child(1)::after {
  background: #E0F2FE !important;
  box-shadow: 0 0 10px #E0F2FE !important;
}

/* 2. Collections - Mint Teal */
.drawer-nav-item:nth-child(2) .menu-icon {
  stroke: #3DF2D7 !important;
}
.drawer-nav-item:nth-child(2):hover .menu-icon {
  stroke: #3DF2D7 !important;
  transform: scale(1.15) !important;
  filter: drop-shadow(0 0 8px rgba(61, 242, 215, 0.85)) !important;
}
.drawer-nav-item:nth-child(2):hover {
  text-shadow: 0 0 20px rgba(61, 242, 215, 0.6) !important;
}
.drawer-nav-item:nth-child(2)::after {
  background: #3DF2D7 !important;
  box-shadow: 0 0 10px #3DF2D7 !important;
}

/* 3. Account - Soft Lavender */
.drawer-nav-item:nth-child(4) .menu-icon {
  stroke: #C7B9FF !important;
}
.drawer-nav-item:nth-child(4):hover .menu-icon {
  stroke: #C7B9FF !important;
  transform: scale(1.15) !important;
  filter: drop-shadow(0 0 8px rgba(199, 185, 255, 0.85)) !important;
}
.drawer-nav-item:nth-child(4):hover {
  text-shadow: 0 0 20px rgba(199, 185, 255, 0.6) !important;
}
.drawer-nav-item:nth-child(4)::after {
  background: #C7B9FF !important;
  box-shadow: 0 0 10px #C7B9FF !important;
}

/* 4. Cart - Lime Green */
.drawer-nav-item:nth-child(5) .menu-icon {
  stroke: #9EF01A !important;
}
.drawer-nav-item:nth-child(5):hover .menu-icon {
  stroke: #9EF01A !important;
  transform: scale(1.15) !important;
  filter: drop-shadow(0 0 8px rgba(158, 240, 26, 0.85)) !important;
}
.drawer-nav-item:nth-child(5):hover {
  text-shadow: 0 0 20px rgba(158, 240, 26, 0.6) !important;
}
.drawer-nav-item:nth-child(5)::after {
  background: #9EF01A !important;
  box-shadow: 0 0 10px #9EF01A !important;
}

.drawer-nav-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08); /* subtle divider line with low opacity */
  margin: 4px 0;
  opacity: 0;
  transform: scaleX(0);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(0.1s + var(--stagger-index) * 0.08s);
}

.nav-drawer.open .drawer-nav-divider,
.nav-drawer.is-open .drawer-nav-divider {
  opacity: 1;
  transform: scaleX(1);
}

.drawer-nav-item span {
  display: inline-block;
}

/* Bottom Footer inside Menu */
.drawer-footer {
  margin-top: auto; /* Pin footer to bottom with premium spacing */
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  padding-bottom: 8px;
}
.drawer-footer-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.drawer-footer-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}
.drawer-footer-link:hover {
  color: #ffffff;
}
.drawer-footer-meta {
  justify-content: space-between;
}
.drawer-footer-loc {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.35);
}

/* Hamburger morphing animations */
.nav-hamburger span {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              background-color 0.6s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

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

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

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

/* High visibility of morphing button on dark drawer background */
.nav-hamburger.open span {
  background: #ffffff !important;
}

/* Layout adjustments on body and header when drawer is active */
body.drawer-open {
  overflow: hidden !important;
}

body.drawer-open .navbar > *:not(#nav-hamburger) {
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.5s ease;
}

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--grad-hero-bg);
  padding-top: calc(var(--navbar-h) + 40px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-radial {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.hero-radial-1 {
  width: 700px; height: 700px;
  top: -20%; right: -10%;
  background: rgba(68,127,152,0.18);
}
.hero-radial-2 {
  width: 500px; height: 500px;
  bottom: -15%; left: -8%;
  background: rgba(185,219,225,0.25);
}
.hero-radial-3 {
  width: 400px; height: 400px;
  top: 30%; left: 35%;
  background: rgba(214,235,243,0.3);
}

.hero-particles {
  position: absolute;
  inset: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.8fr;
  gap: 40px;
  align-items: center;
  min-height: 80vh;
}

/* LEFT */
.hero-left { display: flex; flex-direction: column; gap: 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 28px;
  width: max-content;
}
.hero-badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--turquoise);
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 86px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -4px;
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--light);
  max-width: 380px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 16px;
}
.hero-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 20px;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 16px;
  min-width: 80px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--turquoise);
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

/* CENTER */
.hero-center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-glow-ring {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: rgba(185,219,225,0.35);
  filter: blur(40px);
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.35; }
  50% { transform: scale(1.08); opacity: 0.55; }
}

.hero-bottle {
  position: relative;
  z-index: 2;
  width: 300px;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(68,127,152,0.22), 0 8px 24px rgba(0,0,0,0.08);
  animation: float-hero 5s ease-in-out infinite;
}
@keyframes float-hero {
  0%, 100% { transform: translateY(0) rotate(-0.5deg); }
  50% { transform: translateY(-14px) rotate(0.5deg); }
}

.hero-bottle-reflection {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(68,127,152,0.25), transparent 70%);
  filter: blur(8px);
}

/* RIGHT */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-glass-card {
  padding: 20px;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: var(--radius-card);
  box-shadow: 0 4px 20px rgba(68,127,152,0.08);
  transition: var(--transition);
}
.hero-glass-card:hover {
  background: rgba(255,255,255,0.3);
  transform: translateX(-4px);
  box-shadow: 0 8px 30px rgba(68,127,152,0.14);
}
.hero-glass-card--offset { margin-left: 24px; }
.hgc-icon { font-size: 24px; margin-bottom: 8px; }
.hgc-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.hgc-text {
  font-size: 12px;
  line-height: 1.6;
  color: var(--light);
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--turquoise), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}
.hero-scroll-cue span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light);
}

/* ════════════════════════════════════════════════
   TICKER
════════════════════════════════════════════════ */
.ticker-wrap {
  background: var(--white);
  border-top: 1px solid var(--platinum);
  border-bottom: 1px solid var(--platinum);
  padding: 20px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-track span {
  padding: 0 28px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--dark);
  white-space: nowrap;
}
.ticker-dot {
  color: var(--turquoise) !important;
  padding: 0 4px !important;
  font-size: 8px !important;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════
   EDITORIAL
════════════════════════════════════════════════ */
.editorial {
  background: var(--off-white);
  padding: 90px 0 110px;
}
.editorial-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 70px;
}

.ed-cats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding-bottom: 64px;
  flex-wrap: wrap;
}
.ed-cat {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: #7A7A7A;
  background: none;
  border: none;
  padding: 0;
  position: relative;
  transition: color 0.25s;
}
.ed-cat::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--dark);
  transition: width 0.25s;
}
.ed-cat:hover, .ed-cat.is-active { color: var(--dark); }
.ed-cat:hover::after, .ed-cat.is-active::after { width: 100%; }

.ed-row { margin-bottom: 80px; }
.ed-row--1 {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: center;
}
.ed-row--2 {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: center;
}

.ed-copy { display: flex; flex-direction: column; gap: 0; }
.ed-heading {
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--dark);
  margin-bottom: 24px;
}
.ed-heading--sm { font-size: 48px; }
.ed-p {
  font-size: 14px;
  line-height: 1.9;
  color: #7A7A7A;
  max-width: 300px;
  margin-bottom: 32px;
}
.ed-btn {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 26px;
  border-radius: var(--radius-pill);
  background: var(--platinum);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: var(--transition);
  width: max-content;
}
.ed-btn:hover {
  background: #c8cdd1;
  transform: translateY(-2px);
}

.ed-visual {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ed-hero-img {
  width: 100%;
  max-width: 640px;
  height: 400px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.1);
  transition: transform 0.5s ease;
}
.ed-visual:hover .ed-hero-img { transform: scale(1.015); }

.ed-img-scatter {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60px;
  background: radial-gradient(ellipse 80% 40% at 50% 100%, rgba(185,219,225,0.2), transparent);
  filter: blur(8px);
}

.ed-cards-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ed-prod-card {
  background: #e8e8e6;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  transition: transform 0.35s, box-shadow 0.35s;
}
.ed-prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.ed-prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.ed-prod-card:hover .ed-prod-img { transform: scale(1.04); }

.ed-divider {
  height: 1px;
  background: #D8D8D8;
  margin-top: 80px;
}

/* ════════════════════════════════════════════════
   PRODUCTS GRID
════════════════════════════════════════════════ */
.products {
  padding: 100px 0;
  background: var(--white);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.prod-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}
.prod-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(68,127,152,0.14);
}
.prod-img-wrap {
  position: relative;
  background: var(--ice);
  height: 240px;
  overflow: hidden;
}
.prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.prod-card:hover .prod-img { transform: scale(1.06); }
.prod-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--grad-main);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.prod-tag--new { background: linear-gradient(135deg, #629BB6, #B9DBE1); }
.prod-info { padding: 20px; }
.prod-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 6px;
}
.prod-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.prod-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--light);
  margin-bottom: 16px;
}
.prod-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.prod-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

/* ════════════════════════════════════════════════
   STORY
════════════════════════════════════════════════ */
.story {
  background: var(--off-white);
  padding: 100px 0;
}
.story-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-visual { position: relative; }
.story-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
}
.story-float-card {
  position: absolute;
  bottom: 32px;
  right: -28px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
}
.sfc-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--turquoise);
  line-height: 1;
  margin-bottom: 6px;
}
.sfc-text {
  font-size: 13px;
  color: var(--light);
  line-height: 1.5;
}
.story-content { display: flex; flex-direction: column; gap: 0; }
.story-p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--light);
  margin-bottom: 20px;
}
.story-pillars {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.story-pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(68,127,152,0.07);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(68,127,152,0.12);
}
.pillar-icon { font-size: 18px; }
.pillar-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

/* ════════════════════════════════════════════════
   INGREDIENTS
════════════════════════════════════════════════ */
.ingredients-section {
  background: var(--white);
  padding: 100px 0;
}
.ing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ing-card {
  padding: 36px 28px;
  background: var(--ice);
  border-radius: var(--radius-card);
  border: 1px solid rgba(68,127,152,0.1);
  transition: var(--transition);
}
.ing-card:hover {
  background: var(--glacier);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.ing-icon { font-size: 36px; margin-bottom: 16px; }
.ing-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.ing-desc { font-size: 14px; line-height: 1.7; color: var(--light); }

/* ════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════ */
.testimonials {
  background: var(--off-white);
  padding: 100px 0;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.testi-stars {
  color: #F59E0B;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--light);
  font-style: italic;
  margin-bottom: 24px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}
.testi-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.testi-role { font-size: 12px; color: var(--light); }

/* ════════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════════ */
.cta-banner {
  background: var(--grad-main);
  padding: 80px 48px;
}
.cta-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}
.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  line-height: 1.7;
}
.cta-form {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cta-input {
  height: 54px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  width: 280px;
  outline: none;
  transition: var(--transition-fast);
}
.cta-input::placeholder { color: rgba(255,255,255,0.6); }
.cta-input:focus { background: rgba(255,255,255,0.28); border-color: rgba(255,255,255,0.7); }


/* ════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════ */
.contact-section {
  background: var(--white);
  padding: 100px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.ci-icon { font-size: 22px; flex-shrink: 0; }
.ci-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--turquoise); margin-bottom: 4px; }
.ci-text { font-size: 15px; color: var(--light); line-height: 1.5; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--dark); }
.form-input {
  height: 52px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1.5px solid var(--platinum);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--turquoise); }
.form-textarea { height: auto; padding: 16px 18px; resize: vertical; }

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.footer {
  position: relative;
  background: var(--grad-footer);
  padding: 80px 0 0;
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  top: -80px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: rgba(185,219,225,0.1);
  border-radius: 50%;
  filter: blur(80px);
}
.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr 300px;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  transition: var(--transition-fast);
}
.social-btn:hover { background: rgba(255,255,255,0.25); color: #fff; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }

.footer-newsletter-text {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer-form {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  margin-bottom: 10px;
}
.footer-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: #fff;
  padding: 8px 0;
}
.footer-input::placeholder { color: rgba(255,255,255,0.45); }
.footer-sub-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  padding: 8px 12px;
  transition: transform 0.2s;
}
.footer-sub-btn:hover { transform: translateX(3px); }
.footer-disclaimer { font-size: 11px; color: rgba(255,255,255,0.35); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom-links {
  display: flex;
  gap: 28px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ════════════════════════════════════════════════
   ANIMATIONS / REVEAL
════════════════════════════════════════════════ */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up 0.9s cubic-bezier(0.4,0,0.2,1) forwards;
}
.anim-delay-1 { animation-delay: 0.18s; }
.anim-delay-2 { animation-delay: 0.36s; }
@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── Back to top ── */
.back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-main);
  color: #fff;
  font-size: 18px;
  border: none;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 500;
}
.back-top.show { opacity: 1; transform: translateY(0); }
.back-top:hover { transform: translateY(-3px); }

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr 1fr; }
  .hero-right { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .ing-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-newsletter { grid-column: 1 / -1; }
  .ed-row--1 { grid-template-columns: 260px 1fr; }
  .ed-row--2 { grid-template-columns: 1fr 280px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .editorial-wrap { padding: 0 24px; }
  .hero-inner { grid-template-columns: 1fr; padding: 60px 24px; }
  .hero-center { display: none; }
  .hero-heading { font-size: 56px; letter-spacing: -3px; }
  .hero-stats { gap: 10px; }
  .hero-stat-card { padding: 10px 14px; min-width: auto; }
  .nav-links { display: none; }
  .nav-shop-btn { display: none; }
  .nav-hamburger { display: flex; }
  .story-inner { grid-template-columns: 1fr; }
  .story-float-card { right: 16px; bottom: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .cta-banner-inner { flex-direction: column; }
  .cta-form { flex-direction: column; width: 100%; }
  .cta-input { width: 100%; }
  .ed-cats { gap: 24px; }
  .ed-row--1, .ed-row--2 { grid-template-columns: 1fr; }
  .ed-heading { font-size: 38px; }
  .testi-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .ing-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── MINI CART PANEL & OVERLAY (GLOBAL) ─── */
.mini-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23, 49, 59, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10002;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.mini-cart-overlay.active,
.mini-cart-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.mini-cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(35px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(35px) saturate(190%) !important;
  border-left: 1px solid rgba(255, 255, 255, 0.45) !important;
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.03);
  z-index: 10003;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.mini-cart-panel.active,
.mini-cart-panel.is-open {
  transform: translateX(0);
}
.mcp-header {
  padding: 30px 40px;
  border-bottom: 1px solid rgba(23, 49, 59, 0.08) !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mcp-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  color: #17313B;
}
.mcp-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #17313B;
  opacity: 0.6;
  transition: opacity 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.mcp-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}
.mcp-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.mcp-item {
  display: flex;
  gap: 20px;
  align-items: center;
}
.mcp-item-thumb {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.mcp-item-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.mcp-item-name {
  font-size: 15px;
  font-weight: 600;
  color: #17313B;
  margin-bottom: 4px;
}
.mcp-item-meta {
  font-size: 13px;
  color: #777777;
  margin-bottom: 8px;
}
.mcp-item-price {
  font-size: 14px;
  font-weight: 500;
  color: #17313B;
}
.mcp-footer {
  padding: 40px;
  border-top: 1px solid rgba(23, 49, 59, 0.08) !important;
  background: rgba(255, 255, 255, 0.4) !important;
}
.mcp-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.mcp-total-label {
  font-size: 14px;
  color: #777777;
}
.mcp-total-value {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: #17313B;
}
.mcp-tax-info {
  font-size: 12px;
  color: #888888;
  margin-bottom: 24px;
}
.mcp-checkout-btn {
  width: 100%;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  background: linear-gradient(180deg, #ff9d00 0%, #ff5e00 100%);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 
    inset 0px 15px 20px rgba(255, 255, 255, 0.6), 
    inset 0px -5px 15px rgba(200, 50, 0, 0.5), 
    0px 10px 20px rgba(255, 94, 0, 0.4);
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.mcp-checkout-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #ffaf33 0%, #ff6a00 100%);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 
    inset 0px 15px 20px rgba(255, 255, 255, 0.7), 
    inset 0px -5px 15px rgba(200, 50, 0, 0.6), 
    0px 15px 25px rgba(255, 94, 0, 0.5);
}

/* ════════════════════════════════════════════════
   GLOBAL ACCOUNT DROPDOWN
   ════════════════════════════════════════════════ */
.account-dropdown {
  position: absolute !important;
  top: calc(100% + 15px) !important;
  right: -10px !important;
  background: #FFFFFF !important;
  border: 1px solid #ECECEC !important;
  border-radius: 16px !important;
  width: 200px !important;
  padding: 12px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  opacity: 0 !important;
  transform: translateY(10px) scale(0.95) !important;
  pointer-events: none !important;
  transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
  z-index: 10001 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}
.account-dropdown.active,
.account-dropdown.is-open {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  pointer-events: all !important;
}
.account-dropdown a {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 10px 14px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  color: #17313B !important;
  font-weight: 500 !important;
  border-radius: 10px !important;
  transition: background 0.2s, color 0.2s !important;
}
.account-dropdown a:hover {
  background: #F4F8FA !important;
  color: #447F98 !important;
}
.account-dropdown svg {
  opacity: 0.6 !important;
  transition: opacity 0.2s !important;
}
.account-dropdown a:hover svg {
  opacity: 1 !important;
}
.dropdown-divider {
  height: 1px !important;
  background: #ECECEC !important;
  margin: 6px 0 !important;
}
.account-dropdown a.logout-link {
  color: #D32F2F !important;
}
.account-dropdown a.logout-link:hover {
  background: #FFEBEE !important;
  color: #D32F2F !important;
}

/* ════════════════════════════════════════════════
   GLOBAL NAVBAR AUTO-HIDE ON SCROLL
   ════════════════════════════════════════════════ */
.site-header {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), top 0.3s ease, background 0.4s ease, box-shadow 0.4s ease !important;
}
.site-header.nav-hidden {
  transform: translateY(calc(-100% - 60px)) !important;
}
