/* ════════════════════════════════════════════════
   AARWINS — Cinematic UI & Interactions v2.0
   Ultra-premium layered motion system
   ════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  --cine-aqua:     #447F98;
  --cine-aqua-rgb: 68, 127, 152;
  --cine-cream:    #F5F2ED;
  --cine-dark:     #17313B;
  --cine-ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --cine-ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── LENIS SMOOTH SCROLL ─── */
html.lenis,
html.lenis body { height: auto; }
.lenis-smooth { scroll-behavior: auto !important; }
.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis-stopped { overflow: hidden; }
.lenis-scrolling iframe { pointer-events: none; }

/* ─── BODY TRANSITION STATE ─── */
body { overflow-x: hidden; }
body.aw-loaded .aw-loader { pointer-events: none; }

/* ════════════════════════════════════════
   1. CINEMATIC LOADING SCREEN
════════════════════════════════════════ */
#aw-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 10vh;
  background: #F7F3EE url('/images/loading-page-desktop.png') no-repeat center center;
  background-size: cover;
  pointer-events: all;
  will-change: opacity, filter;
}

.aw-loader-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%,
    rgba(68, 127, 152, 0.1) 0%,
    transparent 70%);
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}

.aw-loader-brand {
  display: flex;
  gap: 0;
  overflow: hidden;
  margin-bottom: 48px;
}

.aw-loader-letter {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #17313B; /* Dark text on cream background */
  display: inline-block;
  will-change: transform, opacity, filter;
  line-height: 1;
  opacity: 0;
}

.aw-loader-letter:nth-child(1) { color: #447F98; } /* Signature Brand Blue */
.aw-loader-letter:nth-child(2) { color: #17313B; }
.aw-loader-letter:nth-child(3) { color: #17313B; }
.aw-loader-letter:nth-child(4) { color: #17313B; }
.aw-loader-letter:nth-child(5) { color: #17313B; }
.aw-loader-letter:nth-child(6) { color: #17313B; }
.aw-loader-letter:nth-child(7) { color: #17313B; }

.aw-loader-bar-wrap {
  width: min(200px, 50vw);
  height: 2px;
  background: rgba(23, 49, 59, 0.12); /* Subtle dark track on cream */
  position: relative;
  overflow: hidden;
}

.aw-loader-bar-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #447F98, #5FA8BA);
  transform-origin: left center;
  transform: scaleX(0);
  will-change: transform;
}

.aw-loader-tagline {
  margin-top: 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: rgba(23, 49, 59, 0.45); /* Dark text at reduced opacity on cream */
  text-transform: uppercase;
  opacity: 0;
}

/* ════════════════════════════════════════
   2. SCROLL PROGRESS BAR
════════════════════════════════════════ */
#aw-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #447F98, #8ECFDE, #447F98);
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 99998;
  pointer-events: none;
  will-change: transform;
}

/* ════════════════════════════════════════
   3. CUSTOM CINEMATIC CURSOR
════════════════════════════════════════ */
#aw-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #447F98;
  pointer-events: none;
  z-index: 99997;
  will-change: transform;
  mix-blend-mode: multiply;
  transition: width 0.3s var(--cine-ease),
              height 0.3s var(--cine-ease),
              background 0.3s;
}

#aw-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(68, 127, 152, 0.45);
  pointer-events: none;
  z-index: 99996;
  will-change: transform;
  transition: width 0.4s var(--cine-ease),
              height 0.4s var(--cine-ease),
              border-color 0.3s,
              background 0.3s;
}

#aw-cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68,127,152,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 99995;
  will-change: transform;
  filter: blur(20px);
}

#aw-cursor-dot.is-hover {
  width: 14px;
  height: 14px;
  background: #17313B;
}
#aw-cursor-ring.is-hover {
  width: 64px;
  height: 64px;
  border-color: rgba(68, 127, 152, 0.8);
  background: rgba(68, 127, 152, 0.04);
}

/* ─── CUSTOM CURSOR TOOLTIP ─── */
#aw-cursor-tooltip {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%) scale(0.9);
  transform-origin: left center;
  background: rgba(23, 49, 59, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.35s var(--cine-ease), transform 0.35s var(--cine-ease);
  box-shadow: 0 12px 28px rgba(0,0,0,0.14);
  z-index: 999999;
}

#aw-cursor-tooltip.is-active {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

@media (max-width: 991px) {
  #aw-cursor-dot,
  #aw-cursor-ring,
  #aw-cursor-glow,
  #aw-cursor-tooltip { display: none !important; }
}

/* ════════════════════════════════════════
   4. AMBIENT MOUSE LIGHT
════════════════════════════════════════ */
#aw-ambient-light {
  display: block !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68, 127, 152, 0.05) 0%, rgba(68, 127, 152, 0.01) 50%, transparent 75%);
  pointer-events: none;
  z-index: 1; /* beneath typography, above background */
  mix-blend-mode: screen;
  will-change: transform;
  transform: translate(-50%, -50%);
  transition: opacity 0.6s var(--cine-ease);
}

/* ════════════════════════════════════════
   5. GRAIN TEXTURE OVERLAY
════════════════════════════════════════ */
#aw-grain {
  display: block !important;
  position: fixed;
  inset: 0;
  z-index: 99994;
  pointer-events: none;
  opacity: 0.016; /* Ethereal, expensive noise presence */
  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.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  will-change: background-position;
}

/* ════════════════════════════════════════
   6. ATMOSPHERIC PARTICLES
════════════════════════════════════════ */
#aw-particles {
  display: block !important;
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.aw-particle {
  display: block !important;
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}

/* ─── Hero Glows & Sprout Shadows ─── */
.hero-glow-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.glow-radial-1 {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68, 127, 152, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  will-change: transform;
}

.glow-radial-2 {
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 219, 225, 0.25) 0%, transparent 70%);
  filter: blur(60px);
  will-change: transform;
}

/* ════════════════════════════════════════
   7. SPLIT WORD ANIMATION
════════════════════════════════════════ */
.aw-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.15;
}

.aw-word-inner {
  display: inline-block;
  will-change: transform, opacity;
}

/* ════════════════════════════════════════
   8. ANIMATED SECTION DIVIDERS
════════════════════════════════════════ */
.aw-animated-divider {
  display: block;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(68, 127, 152, 0.25) 30%,
    rgba(68, 127, 152, 0.45) 50%,
    rgba(68, 127, 152, 0.25) 70%,
    transparent 100%);
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0;
  will-change: transform, opacity;
  margin: 0;
}

/* ════════════════════════════════════════
   9. HERO ENHANCEMENTS
════════════════════════════════════════ */

/* Heading word-split overflow mask */
.hero-heading .aw-word {
  margin-right: 0.2em;
}

/* Product image 3D perspective */
.hero-centerpiece-wrap {
  transform-style: preserve-3d;
  perspective: 1200px;
}
.hero-centerpiece-img {
  will-change: transform;
  transform-style: preserve-3d;
}

/* Glow orbs — deeper motion range */
.glow-radial-1,
.glow-radial-2 { will-change: transform; }

/* ════════════════════════════════════════
   10. SCROLL TRANSITION — SECTION ENTRY
════════════════════════════════════════ */
/* Initially hide animatable elements before GSAP sets them */
.ed-copy-block,
.ed-h2,
.ed-body,
.ed-cats-label,
.ed-cats-title,
.ed-cats-desc,
.hp-review-card,
.hp-reviews-header,
.hp-contact-left,
.hp-contact-right,
.coll-bts-visual,
.coll-bts-copy { will-change: transform, opacity, filter; }

/* ════════════════════════════════════════
   11. CARD 3D TILT SYSTEM
════════════════════════════════════════ */
.coll-card,
.hp-review-card,
.ed-ph {
  transform-style: preserve-3d;
  perspective: 900px;
  will-change: transform, box-shadow;
  transition: box-shadow 0.4s var(--cine-ease);
}

/* ════════════════════════════════════════
   12. MAGNETIC BUTTON BASE
════════════════════════════════════════ */
.btn-primary,
.nav-shop-btn,
.coll-add-btn,
.ed-pill-btn {
  will-change: transform;
  transform: translateZ(0);
}

/* ════════════════════════════════════════
   13. COLLECTION SECTION — IMAGE REVEAL
════════════════════════════════════════ */
.coll-bts-img,
.coll-img-wrap {
  will-change: clip-path, opacity;
  clip-path: inset(0 100% 0 0);
}

/* ════════════════════════════════════════
   14. NAVBAR CINEMATIC HIDE / REVEAL
════════════════════════════════════════ */
#site-header,
.site-header {
  will-change: transform;
  transition: background 0.4s var(--cine-ease),
              box-shadow 0.4s var(--cine-ease);
}

/* ════════════════════════════════════════
   15. HERO SECTION — SCROLL PARALLAX
════════════════════════════════════════ */
.hero { overflow: visible; }

/* ════════════════════════════════════════
   16. BACK-TO-TOP CINEMATIC
════════════════════════════════════════ */
.back-top {
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
  transition: background 0.3s, color 0.3s;
}

/* ════════════════════════════════════════
   17. EDITORIAL SECTION — HOVER LIFT
════════════════════════════════════════ */
.ed-ph {
  transition: transform 0.5s var(--cine-ease), box-shadow 0.5s var(--cine-ease);
}
.ed-ph:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 24px 48px rgba(68, 127, 152, 0.14);
}

/* ════════════════════════════════════════
   18. FOOTER BLUR ENTRY
════════════════════════════════════════ */
.fb-brand,
.fb-col,
.fb-newsletter {
  will-change: transform, opacity;
}

/* ════════════════════════════════════════
   19. REDUCE MOTION SAFE GUARD
════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  #aw-loader { display: none !important; }
  .aw-word-inner { transform: none !important; opacity: 1 !important; }
  .coll-bts-img, .coll-img-wrap { clip-path: none !important; opacity: 1 !important; }
}

/* ════════════════════════════════════════
   20. TABLET / MOBILE OVERRIDES
════════════════════════════════════════ */
@media (max-width: 767px) {
  #aw-loader {
    background-image: url('/images/loading-page-mob.png') !important;
  }
  .aw-loader-brand {
    gap: 2px !important;
    margin-bottom: 24px !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 320px !important;
  }
  .aw-loader-letter { 
    font-size: clamp(1.6rem, 8vw, 2.5rem) !important; 
    letter-spacing: 0.06em !important;
  }
  .aw-loader-tagline {
    font-size: 0.65rem !important;
    letter-spacing: 0.25em !important;
    margin-top: 16px !important;
  }
  .hero-centerpiece-wrap {
    padding: 0 24px !important; /* Outer padding for centerpiece bottle */
    box-sizing: border-box !important;
  }
  .hero-centerpiece-img {
    width: 100% !important;
    max-width: 290px !important; /* Elegant outer scaling boundaries */
    margin: 0 auto !important;
  }
  #aw-grain { opacity: 0.018; }
  .ed-ph:hover { transform: none !important; box-shadow: none; }
  .coll-card, .hp-review-card, .ed-ph {
    transform-style: flat;
    perspective: none;
  }
}

/* ════════════════════════════════════════
   21. FLOATING MASCOT WIDGET (NOKO)
════════════════════════════════════════ */
#cinematic-mascot-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(68, 127, 152, 0.15);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s var(--cine-ease), box-shadow 0.3s;
}

#cinematic-mascot-container:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 15px 35px rgba(68, 127, 152, 0.15);
}

.mascot-svg {
  width: 60px;
  height: 60px;
  overflow: visible;
}

.mascot-bubble {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  background: #17313B;
  color: #fff;
  padding: 12px 18px;
  border-radius: 18px 18px 4px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  line-height: 1.4;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.95);
  transform-origin: bottom right;
  transition: opacity 0.3s var(--cine-ease), transform 0.3s var(--cine-ease);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.mascot-bubble.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Responsive mascot rules */
@media (max-width: 768px) {
  #cinematic-mascot-container {
    bottom: 16px;
    right: 16px;
    width: 70px;
    height: 70px;
  }
  .mascot-svg {
    width: 48px;
    height: 48px;
  }
}

/* ════════════════════════════════════════
   22. SEAMLESS CLEAN LAYOUT (ANIMATED DIVIDERS)
════════════════════════════════════════ */
.aw-animated-divider,
.ed-divider,
.coll-bts-divider {
  display: block !important;
  height: 1px !important;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(68, 127, 152, 0.15) 25%, 
    rgba(68, 127, 152, 0.45) 50%, 
    rgba(68, 127, 152, 0.15) 75%, 
    transparent 100%) !important;
  border: none !important;
  margin: 80px auto !important;
  opacity: 1 !important;
  width: 90% !important;
  max-width: 1200px !important;
  transform-origin: left center;
  will-change: transform, opacity;
}

/* Maintain clean seamless sections without harsh solid borders */
.hp-reviews-section,
.hp-contact-section,
.footer-black,
.fb-bottom {
  border-top: none !important;
  border-bottom: none !important;
}

/* ════════════════════════════════════════
   23. CINEMATIC SECTION 1 — QUOTE TRANSITION
   ════════════════════════════════════════ */
.aw-quote-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #FFFFFF; /* Clean white background for the quote section */
  overflow: hidden;
  z-index: 5;
  padding: 35% 0 0 0; /* Contain the shifted video wrap within the section */
}

.aw-quote-glow {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68, 127, 152, 0.06) 0%, rgba(185, 219, 225, 0.02) 50%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  top: 75%; /* Centered around the text area */
  left: 50%;
}

.aw-quote-container {
  max-width: 1300px;
  padding: 0 40px;
  position: relative;
  z-index: 10;
  text-align: center;
  margin-top: 0; /* Standard outer margin */
  margin-bottom: 50px;
}

.aw-quote-video-wrap {
  position: relative;
  width: 100%; /* Full width to display the video in full length */
  max-width: 100%;
  height: auto; /* Display videos in full length / natural height */
  display: block; /* Display videos full-width stacked */
  overflow: hidden;
  box-shadow: none;
  background-color: #FFFFFF; /* Seamless blending with the white section background */
  border: none;
  z-index: 2;
  margin-top: -35%; /* Shift the video container up by 35% */
  margin-bottom: -17.5%; /* Pull the text container up by 17.5% to overlap closely under feet */
}

.aw-quote-video {
  width: 100%; /* Video takes full width of container */
  height: auto; /* Display full length / height of the video */
  display: block;
  object-fit: contain; /* Prevents cropping, making the walking fruits mascot smaller and fully visible */
  filter: brightness(1.08) contrast(1.02); /* Blends the video background seamlessly with the section's white background */
  opacity: 1; /* Fully bright video details */
}

.aw-quote-text {
  font-family: Impact, 'Arial Narrow', 'Haettenschweiler', sans-serif !important;
  font-size: clamp(2.8rem, 6vw, 6.5rem); /* Larger since Impact is condensed */
  font-weight: 400 !important; /* Impact is inherently ultra-bold — no need for 800 */
  line-height: 1.05;
  color: #17313B; /* Dark premium text color */
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.01em; /* Impact looks best with slight positive tracking */
  will-change: transform, opacity, filter;
}

/* ════════════════════════════════════════
   24. CINEMATIC SECTION 2 — INGREDIENT STORY (PINNED SCROLL)
   ════════════════════════════════════════ */
.aw-ingredients-section {
  position: relative;
  height: 100vh;
  width: 100%;
  background: #FFFFFF;
  overflow: hidden;
  z-index: 5;
  padding: 0 8vw;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.aw-ingredients-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68, 127, 152, 0.04) 0%, transparent 75%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.aw-ingredients-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8vw;
  position: relative;
  z-index: 2;
  height: 100%;
}

.aw-ingredients-left {
  width: 45%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  will-change: transform, opacity, filter;
}

.aw-ingredients-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #999999;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

.aw-ingredients-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
  line-height: 1.1;
  font-weight: 500;
  color: #17313B;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.aw-ingredients-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.95;
  color: #555555;
  font-weight: 300;
}

.aw-ingredients-right {
  width: 50%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.aw-ingredients-scroll-track {
  position: relative;
  width: 100%;
  height: 60vh;
  will-change: transform;
}

.aw-ingredient-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: #f5f3ef;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
  will-change: transform, opacity, filter;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aw-ingredient-card:last-child {
  margin-bottom: 0;
}

.aw-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.aw-ingredient-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.aw-ingredient-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(23, 49, 59, 0.55) 100%);
  z-index: 1;
  pointer-events: none;
}

.aw-card-overlay {
  position: absolute;
  bottom: 48px;
  left: 48px;
  z-index: 2;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.aw-card-num {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 800;
  opacity: 0.65;
  letter-spacing: 2px;
}

.aw-card-title-text {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ════════════════════════════════════════
   25. CINEMATIC SECTION 3 — PRODUCT FOCUS
   ════════════════════════════════════════ */
.aw-product-focus-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  overflow: hidden;
  z-index: 5;
  padding: 120px 0;
  box-sizing: border-box;
}

.aw-showcase-bottle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
  border: 1px solid rgba(68, 127, 152, 0.08);
}

.aw-product-focus-glow {
  position: absolute;
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68, 127, 152, 0.09) 0%, rgba(185, 219, 225, 0.03) 60%, transparent 80%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.aw-product-focus-container {
  text-align: center;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.aw-product-showcase-wrap {
  position: relative;
  width: 280px;
  height: 500px;
  margin: 0 auto;
  perspective: 1200px;
  will-change: transform;
}

.aw-product-showcase-img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 30px 60px rgba(23, 49, 59, 0.12));
  transform-style: preserve-3d;
  will-change: transform;
}

.aw-product-showcase-reflection {
  position: absolute;
  bottom: -40px;
  left: 5%;
  width: 90%;
  height: 20px;
  background: radial-gradient(ellipse, rgba(23, 49, 59, 0.1) 0%, transparent 70%);
  filter: blur(6px);
  pointer-events: none;
  will-change: transform, opacity;
}

.aw-product-focus-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.6rem, 6vw, 6.2rem);
  font-weight: 800;
  line-height: 0.95;
  color: #17313B;
  text-transform: uppercase;
  margin-top: 54px;
  letter-spacing: -0.03em;
  will-change: transform, opacity, filter;
}

/* ════════════════════════════════════════
   26. CINEMATIC SECTION 4 — DIVIDER TRANSITION
   ════════════════════════════════════════ */
.aw-scroll-divider-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 5;
}

.aw-scroll-divider-bg {
  position: absolute;
  inset: -12%; /* Safety boundaries to allow smooth zoom and scroll translations without showing edges */
  background-image: url('/images/tropical_living_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: 0;
}

.aw-scroll-divider-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.42); /* Frosted luxury haze overlay */
  z-index: 1;
  pointer-events: none;
}

.aw-scroll-divider-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 40px;
}

.aw-scroll-divider-line {
  width: 200px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(68, 127, 152, 0.75), transparent);
  margin-bottom: 48px;
  transform: scaleX(0);
  will-change: transform;
}

.aw-scroll-divider-text {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.2rem, 2.8vw, 3rem);
  font-weight: 600;
  color: #17313B;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0;
  opacity: 0;
  filter: blur(15px);
  will-change: opacity, filter, transform;
}

/* ════════════════════════════════════════
   27. MOBILE EXPERIENCES & MEDIA QUERIES
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .aw-ingredients-container {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  /* ── QUOTE SECTION: clean white, text overlaps video bottom ── */
  .aw-quote-section {
    padding: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    background: #FFFFFF !important;
    background-color: #FFFFFF !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .aw-quote-video-wrap {
    margin-top: 0 !important;
    margin-bottom: -60px !important; /* Pull text 5% higher into the video */
    margin-left: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    background-color: #FFFFFF !important;
  }
  .aw-quote-container {
    background: #FFFFFF !important;
    padding: 0 24px 40px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    position: relative !important;
    z-index: 10 !important; /* Text sits above the video */
  }
  .aw-quote-glow {
    display: none !important;
  }
  .aw-quote-text {
    font-family: Impact, 'Arial Narrow', 'Haettenschweiler', sans-serif !important;
    font-size: clamp(2.2rem, 9.5vw, 3.5rem) !important; /* Impact is condensed — needs bigger size on mobile */
    font-weight: 400 !important;
    letter-spacing: 0.01em !important;
    text-transform: uppercase !important;
  }
  .aw-quote-glow, .aw-ingredients-glow, .aw-product-focus-glow {
    width: 500px;
    height: 500px;
  }
  
  .aw-ingredients-section {
    height: 100vh;
    padding: 24px 24px 16px 24px;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
  }
  .aw-ingredients-container {
    flex-direction: column;
    height: 100%;
    justify-content: space-evenly;
    align-items: center;
    gap: 12px;
  }
  .aw-ingredients-left {
    width: 100%;
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .aw-ingredients-left .ed-pill-btn {
    margin-top: 16px !important;
  }
  .aw-ingredients-heading {
    font-size: clamp(1.8rem, 5.5vw, 2.3rem);
    margin-bottom: 8px;
    line-height: 1.25;
  }
  .aw-ingredients-text {
    font-size: 13.5px;
    line-height: 1.6;
    max-width: 480px;
    margin: 0;
  }
  .aw-ingredients-label {
    margin-bottom: 4px;
  }
  .aw-ingredients-right {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 0.8; /* Perfectly matches the 1092x1363 mobile story card ratio */
    height: auto;
    position: relative;
    overflow: hidden; /* Neatly mask card slide transitions */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  .aw-ingredients-scroll-track {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .aw-ingredient-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: #f5f3ef;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    will-change: transform, opacity;
  }
  .aw-card-overlay {
    display: flex !important;
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: auto;
    z-index: 2;
    color: #FFFFFF;
    flex-direction: column;
    gap: 4px;
  }
  .aw-card-num {
    font-size: 11px;
    letter-spacing: 1.5px;
    opacity: 0.8;
  }
  .aw-card-title-text {
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 1.2;
  }
  .aw-ingredient-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(23, 49, 59, 0.45) 0%, transparent 45%);
    z-index: 1;
    pointer-events: none;
    display: block !important;
  }
  
  .aw-product-focus-section {
    min-height: 80vh;
    height: auto;
    padding: 120px 36px;
  }
  .aw-product-showcase-wrap {
    width: 180px;
    height: 330px;
  }
  .aw-product-focus-title {
    font-size: clamp(1.8rem, 7vw, 3rem);
    margin-top: 30px;
  }
  
  .aw-scroll-divider-section {
    padding: 140px 36px;
  }
  .aw-scroll-divider-line {
    width: 100px;
    margin-bottom: 30px;
  }
}

/* ════════════════════════════════════════
   28. IMAGE PLACEHOLDER STYLES
   ════════════════════════════════════════ */
.aw-img-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(23, 49, 59, 0.03);
  border: 1px dashed rgba(23, 49, 59, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s var(--cine-ease);
}

.aw-img-placeholder:hover {
  background: rgba(68, 127, 152, 0.05);
  border-color: rgba(68, 127, 152, 0.3);
}

.aw-img-placeholder--large {
  border-radius: 24px;
  background: rgba(245, 242, 237, 0.4);
  border: 1px dashed rgba(23, 49, 59, 0.2);
}

.aw-img-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.aw-placeholder-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #17313B;
  text-transform: uppercase;
}

.aw-placeholder-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 500;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ════════════════════════════════════════
   29. WELLNESS SUBSCRIPTION RITUAL SECTION
   ════════════════════════════════════════ */
.wellness-subscription-section {
  background: #F7F3EE;
  color: #17313B;
  padding: 140px 0;
  font-family: 'DM Sans', sans-serif;
  border-top: 1px solid rgba(23, 49, 59, 0.05);
  overflow: hidden;
}

.sub-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.sub-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 80px;
  align-items: start;
}

.sub-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sub-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #888888;
  text-transform: uppercase;
}

.sub-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 500;
  color: #17313B;
  margin: 0 0 10px 0;
}

.sub-description {
  font-size: 16px;
  line-height: 1.7;
  color: #555555;
  font-weight: 300;
  max-width: 540px;
  margin: 0 0 20px 0;
}

/* Benefits Grid */
.sub-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

.sub-benefit-card {
  background: #FFFFFF;
  border: 1px solid rgba(23, 49, 59, 0.04);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(23, 49, 59, 0.01);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.sub-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(23, 49, 59, 0.05);
}

.sub-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(61, 107, 88, 0.06);
  color: #3D6B58;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.sub-benefit-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px 0;
  color: #17313B;
}

.sub-benefit-desc {
  font-size: 13px;
  color: #777777;
  line-height: 1.4;
  margin: 0;
}

/* Light Soft Pastel Color Themes for Benefit Cards */
.sub-benefit-card.card-delivery {
  background: #EBF3F6 !important;
  border-color: rgba(68, 127, 152, 0.08) !important;
}
.sub-benefit-card.card-delivery .sub-benefit-icon {
  background: rgba(68, 127, 152, 0.1) !important;
  color: #447F98 !important;
}
.sub-benefit-card.card-delivery:hover {
  box-shadow: 0 12px 30px rgba(68, 127, 152, 0.08) !important;
}

.sub-benefit-card.card-savings {
  background: #ECF5EE !important;
  border-color: rgba(61, 107, 88, 0.08) !important;
}
.sub-benefit-card.card-savings .sub-benefit-icon {
  background: rgba(61, 107, 88, 0.1) !important;
  color: #3D6B58 !important;
}
.sub-benefit-card.card-savings:hover {
  box-shadow: 0 12px 30px rgba(61, 107, 88, 0.08) !important;
}

.sub-benefit-card.card-exclusive {
  background: #FAF6E8 !important;
  border-color: rgba(215, 165, 30, 0.08) !important;
}
.sub-benefit-card.card-exclusive .sub-benefit-icon {
  background: rgba(215, 165, 30, 0.1) !important;
  color: #A07F00 !important;
}
.sub-benefit-card.card-exclusive:hover {
  box-shadow: 0 12px 30px rgba(215, 165, 30, 0.08) !important;
}

.sub-benefit-card.card-flexible {
  background: #F4EEFB !important;
  border-color: rgba(136, 108, 192, 0.08) !important;
}
.sub-benefit-card.card-flexible .sub-benefit-icon {
  background: rgba(136, 108, 192, 0.1) !important;
  color: #886CC0 !important;
}
.sub-benefit-card.card-flexible:hover {
  box-shadow: 0 12px 30px rgba(136, 108, 192, 0.08) !important;
}

.sub-benefit-card.card-consistency {
  background: #FBF0E9 !important;
  border-color: rgba(215, 105, 39, 0.08) !important;
}
.sub-benefit-card.card-consistency .sub-benefit-icon {
  background: rgba(215, 105, 39, 0.1) !important;
  color: #D76927 !important;
}
.sub-benefit-card.card-consistency:hover {
  box-shadow: 0 12px 30px rgba(215, 105, 39, 0.08) !important;
}

.sub-benefit-card.card-priority {
  background: #EBF7F5 !important;
  border-color: rgba(0, 201, 184, 0.08) !important;
}
.sub-benefit-card.card-priority .sub-benefit-icon {
  background: rgba(0, 201, 184, 0.1) !important;
  color: #00A395 !important;
}
.sub-benefit-card.card-priority:hover {
  box-shadow: 0 12px 30px rgba(0, 201, 184, 0.08) !important;
}

/* Configurator Card (Right Side) */
.sub-right {
  position: sticky;
  top: 40px;
}

.sub-configurator-card {
  background: #FFFFFF;
  border: 1px solid rgba(23, 49, 59, 0.05);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(23, 49, 59, 0.02);
}

.sub-product-display {
  position: relative;
  background: #F7F3EE;
  border-radius: 20px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  overflow: hidden;
  padding: 20px;
}

.sub-glass-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(237, 197, 91, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transition: background 0.5s ease;
}

.sub-floating-bottle {
  height: 160px;
  width: auto;
  object-fit: contain;
  z-index: 1;
  filter: drop-shadow(0 8px 16px rgba(23, 49, 59, 0.1));
  will-change: transform;
  transition: transform 0.3s ease;
}

.sub-bottle-details {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.sub-bottle-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #777777;
  text-transform: uppercase;
}

.sub-bottle-flavor-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: #17313B;
  margin: 2px 0 0 0;
}

/* Config sections inside card */
.config-section {
  margin-bottom: 25px;
}

.config-section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #777777;
  margin: 0 0 12px 0;
}

.sub-plans-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sub-plan-card {
  border: 1.5px solid rgba(23, 49, 59, 0.08);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.sub-plan-card:hover {
  border-color: #447F98;
}

.sub-plan-card.selected {
  border-color: #3D6B58;
  background: rgba(61, 107, 88, 0.02);
  box-shadow: 0 4px 15px rgba(61, 107, 88, 0.05);
}

.sub-plan-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sub-plan-name {
  font-size: 14px;
  font-weight: 600;
  color: #17313B;
}

.sub-plan-desc {
  font-size: 12px;
  color: #777777;
}

.sub-plan-price {
  font-size: 16px;
  font-weight: 700;
  color: #17313B;
}

.sub-plan-badge {
  position: absolute;
  top: -9px;
  right: 20px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.sub-plan-badge.popular {
  background: #EC802B;
}

.sub-plan-badge.value {
  background: #3D6B58;
}

/* Flavor Grid Selector */
.flavor-selector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.flavor-select-item {
  border: 1.5px solid rgba(23, 49, 59, 0.08);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s;
  user-select: none;
}

.flavor-select-item:hover {
  border-color: #447F98;
}

.flavor-select-item.selected {
  border-color: #3D6B58;
  background: rgba(61, 107, 88, 0.02);
  font-weight: 600;
}

.flavor-color-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Frequency Options Row */
.frequency-row {
  display: flex;
  gap: 10px;
}

.freq-option {
  flex: 1;
  cursor: pointer;
  user-select: none;
}

.freq-option input {
  display: none;
}

.freq-option span {
  display: block;
  text-align: center;
  border: 1.5px solid rgba(23, 49, 59, 0.08);
  border-radius: 10px;
  padding: 12px 10px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s;
}

.freq-option:hover span {
  border-color: #447F98;
}

.freq-option input:checked + span {
  border-color: #3D6B58;
  background: rgba(61, 107, 88, 0.02);
  font-weight: 600;
  color: #3D6B58;
}

/* Dynamic Summary Box */
.config-summary-box {
  background: #F7F3EE;
  border-radius: 16px;
  padding: 20px;
  margin-top: 30px;
  margin-bottom: 25px;
}

.summary-meta-line {
  font-size: 13px;
  font-weight: 600;
  color: #17313B;
  margin-bottom: 6px;
}

.summary-flavors-list {
  font-size: 11px;
  color: #777777;
  line-height: 1.4;
  margin-bottom: 15px;
}

.summary-price-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(23, 49, 59, 0.06);
  padding-top: 15px;
}

.price-left {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #777777;
}

.price-val {
  font-size: 20px;
  font-weight: 700;
  color: #17313B;
  font-family: 'DM Sans', sans-serif;
}

.savings-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: rgba(61, 107, 88, 0.08);
  border-radius: 8px;
  padding: 4px 10px;
  border: 1px solid rgba(61, 107, 88, 0.1);
}

.savings-label {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  color: #3D6B58;
}

.savings-val {
  font-size: 12px;
  font-weight: 700;
  color: #3D6B58;
  font-family: 'DM Sans', sans-serif;
}

.config-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sub-btn-primary {
  width: 100%;
  height: 52px;
  border-radius: 26px;
  border: none;
  background: #17313B;
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 6px 15px rgba(23, 49, 59, 0.12);
}

.sub-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(23, 49, 59, 0.2);
  background: #3D6B58;
}

.sub-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  border-radius: 26px;
  border: 1px solid rgba(23, 49, 59, 0.2);
  background: transparent;
  color: #17313B;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.sub-btn-secondary:hover {
  background: rgba(23, 49, 59, 0.03);
}

/* Social Proof Footer */
.sub-social-proof {
  margin-top: 100px;
  border-top: 1px solid rgba(23, 49, 59, 0.06);
  padding-top: 50px;
  text-align: center;
}

.social-proof-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #17313B;
}

.social-proof-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.proof-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.proof-stars {
  color: #EC802B;
  font-size: 12px;
  margin-bottom: 4px;
  height: 14px;
}

.proof-val {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #17313B;
}

.proof-label {
  font-size: 12px;
  color: #777777;
  margin-top: 2px;
}

/* GSAP Animations reveals classes */
.anim-sub-reveal {
  opacity: 0;
  transform: translateY(30px);
}

/* Responsive overrides */
@media (max-width: 991px) {
  .sub-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .sub-right {
    position: static;
  }
  .wellness-subscription-section {
    padding: 100px 0;
  }
}

@media (max-width: 768px) {
  .sub-benefit-card {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .sub-benefit-icon {
    margin: 0 auto 15px auto !important;
  }
}

@media (max-width: 600px) {
  .sub-container {
    padding: 0 20px;
  }
  .sub-benefits-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .flavor-selector-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .frequency-row {
    flex-direction: column;
    gap: 8px;
  }
  .sub-social-proof {
    margin-top: 60px;
  }
  .social-proof-grid {
    gap: 30px;
  }
}

/* ════════ NAVBAR CLEANUP FOR DESKTOP VIEW ════════ */
@media (min-width: 769px) {
  .nav-links a[href*="editorial"],
  .nav-links a[href*="Philosophy"],
  #nav-wishlist-btn {
    display: none !important;
  }
}


