/* ============================================
   DIMES — Doğanın Lezzeti
   Premium Turkish Fruit Juice Brand
   ============================================ */

/* --- Fonts: Bold, Modern & Playful Beverage Typography --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@700;800;900&family=Outfit:wght@700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--cream);
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  /* Palette — six named values */
  --green-deep: #1b6b42;
  --green-light: #e6f4ec;
  --amber: #d4870e;
  --cream: #faf6f0;
  --ink: #1c1917;
  --stone: #78716c;

  /* Derived */
  --green-deep-hover: #155735;
  --amber-warm: #b8730a;
  --cream-warm: #f5ede0;
  --white: #ffffff;

  /* Bold, Fun & Modern Beverage Typography */
  --font-display: 'Plus Jakarta Sans', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Fluid type */
  --text-hero: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  --text-section: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  --text-card-title: clamp(1.125rem, 1.5vw + 0.5rem, 1.375rem);
  --text-body: clamp(0.9375rem, 0.5vw + 0.75rem, 1.0625rem);
  --text-small: 0.875rem;
  --text-xs: 0.75rem;
  --text-eyebrow: 0.8125rem;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows — warm-tinted */
  --shadow-soft: 0 2px 8px rgba(28, 25, 23, 0.05);
  --shadow-md: 0 4px 20px rgba(28, 25, 23, 0.07);
  --shadow-lg: 0 12px 40px rgba(28, 25, 23, 0.09);
  --shadow-card: 0 1px 4px rgba(28, 25, 23, 0.04);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 200ms;
}

/* ============================================
   TYPOGRAPHY UTILITIES
   ============================================ */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: var(--space-md);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-section);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: var(--space-md);
}

.section-desc {
  font-size: var(--text-body);
  color: var(--stone);
  line-height: 1.7;
  max-width: 44ch;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ============================================
   HEADER / NAVIGATION
   Fixed over video background, transparent top, glass pill menu
   ============================================ */
/* ============================================
   HEADER / FULL-WIDTH TOP ATTACHED NAVBAR
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
  padding: 0.65rem var(--space-xl);
  background: transparent;
  box-shadow: none;
  border: none;
  border-radius: 0;
}

/* Logo inside White Navbar */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  max-height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
  transition: transform 0.25s ease;
}

.logo-img:hover {
  transform: scale(1.04);
}

/* Nav links inside White Navbar */
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-2xl);
  flex: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.2vw, 2.25rem);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
  margin: 0 auto;
}

.nav-link {
  font-size: var(--text-small);
  font-weight: 700;
  color: #1c1917;
  transition: color var(--duration) var(--ease);
  position: relative;
  letter-spacing: -0.01em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-deep);
  border-radius: var(--radius-full);
  transition: width var(--duration) var(--ease);
}

.nav-link:hover {
  color: var(--green-deep);
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-deep);
  border-radius: var(--radius-full);
  transition: width var(--duration) var(--ease);
}

.nav-link:hover {
  color: var(--green-deep);
}

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

.nav-cta {
  font-size: var(--text-small);
  font-weight: 800;
  color: #ffffff !important;
  background: linear-gradient(135deg, #e11d48 0%, #dc2626 100%); /* İkonik DİMES Kırmızısı */
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(225, 29, 72, 0.38);
  transition:
    background var(--duration) var(--ease),
    transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.nav-cta:hover {
  background: linear-gradient(135deg, #be123c 0%, #b91c1c 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.5);
}

/* ============================================
   NAV DROPDOWN MENU (İçecek Aileleri)
   ============================================ */
.nav-dropdown-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-link--dropdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.nav-dropdown-item:hover .dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 0.6rem;
  min-width: 280px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Invisible bridge so mouse hover doesn't break moving from nav item to dropdown */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-dropdown-item:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  color: #1c1917;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.dropdown-link:hover {
  background: #f0fdf4;
  transform: translateX(3px);
}

.dropdown-icon {
  font-size: 1.45rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-link-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.dropdown-link-text strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: #15803d;
  line-height: 1.2;
}

.dropdown-link-text small {
  font-size: 0.75rem;
  color: #78716c;
  margin-top: 2px;
  font-weight: 500;
  line-height: 1.2;
}

/* Mobile Drawer Elements Default State (hidden on desktop) */
.mobile-drawer-header {
  display: none;
}

.nav-backdrop {
  display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: var(--radius-full);
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}

/* ============================================
   HERO SECTION
   Full viewport, asymmetric, with grain texture
   ============================================ */
/* Hero Scroll Section - Sticky Pinned smooth video experience */
.hero-scroll-section {
  position: relative;
  height: 180vh; /* Smooth pinned hero scroll distance */
  background: var(--cream);
}

.hero-sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Full Hero Video Background - 100% Vivid & Clear */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  filter: brightness(0.94) contrast(1.08) saturate(1.15);
  transform: none !important;
  transition: none !important;
}

/* Minimal overlay - Only subtle gradient so video is 100% vivid & visible */
.hero-smoky-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.18) 45%,
    rgba(0, 0, 0, 0.55) 82%,
    rgba(250, 246, 240, 1) 100%
  );
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 820px;
}

.hero-title {
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
  color: #4ade80; /* Bright vivid green highlight */
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: -0.03em;
  right: -0.03em;
  height: 0.12em;
  background: var(--amber);
  opacity: 0.6;
  border-radius: 0.05em;
  z-index: -1;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

/* Scroll Hint Icon */
.hero-scroll-hint {
  margin-top: var(--space-xl);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  animation: bounce-hint 2s infinite;
}

.hero-scroll-hint svg {
  width: 18px;
  height: 18px;
}

@keyframes bounce-hint {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
  60% { transform: translateY(-3px); }
}

/* Hero stats — Frosted Glass High-Contrast Container */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  padding: 1.5rem 2rem;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 3;
}

.hero-stat {
  text-align: center;
  min-width: 0;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw + 0.5rem, 4.25rem);
  font-weight: 900;
  color: #ffffff !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.85);
  line-height: 1;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stat-value .stat-plus {
  color: #fbbf24 !important; /* Radiant gold */
  margin-left: 3px;
  font-size: 0.85em;
  font-weight: 900;
  text-shadow: 0 2px 10px rgba(251, 191, 36, 0.6);
}

.hero-stat-label {
  font-size: 0.82rem;
  font-weight: 800;
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  margin-top: var(--space-xs);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.95;
}

/* ============================================
   SECTION COMMONS
   Varied spacing — not same rhythm everywhere
   ============================================ */
section {
  padding: var(--space-5xl) 0;
}

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--space-4xl);
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ============================================
   SECTION DIVIDERS — organic juice blob shapes
   The signature design element
   ============================================ */
.section-divider {
  display: block;
  width: 100%;
  height: auto;
  margin: -1px 0;
  position: relative;
  z-index: 5;
}

/* Blob shape via clip-path on a pseudo-element approach.
   The HTML uses inline SVGs for the dividers, but we style
   them here for color and organic feel. */

/* ============================================
   PRODUCTS SECTION
   Staggered grid — not a boring uniform layout
   ============================================ */
.products {
  background: var(--white);
  padding: var(--space-5xl) 0 var(--space-4xl);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl) var(--space-xl);
}

/* Stagger: offset every other card downward */
.product-card:nth-child(even) {
  transform: translateY(2.5rem);
}

.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(28, 25, 23, 0.05);
  background: var(--cream);
  transition:
    transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
  box-shadow: var(--shadow-card);
}

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

.product-card:nth-child(even):hover {
  transform: translateY(calc(2.5rem - 6px));
}

.product-card-visual {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card-visual .fruit-art {
  width: 130px;
  height: 130px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s var(--ease);
}

.product-card:hover .fruit-art {
  transform: scale(1.08) rotate(-3deg);
}

.product-card-body {
  padding: var(--space-lg) var(--space-xl) var(--space-xl);
}

.product-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.product-card-title {
  font-family: var(--font-display);
  font-size: var(--text-card-title);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
  color: var(--ink);
}

.product-card-desc {
  font-size: var(--text-small);
  color: var(--stone);
  line-height: 1.65;
}

/* Product card color variants */
.product-card--orange .product-card-visual {
  background: linear-gradient(160deg, #fef7ed 0%, #fde0b6 100%);
}
.product-card--orange .product-tag {
  background: #fff7ed;
  color: #c2410c;
}

.product-card--red .product-card-visual {
  background: linear-gradient(160deg, #fef2f2 0%, #fecaca 100%);
}
.product-card--red .product-tag {
  background: #fef2f2;
  color: #dc2626;
}

.product-card--green .product-card-visual {
  background: linear-gradient(160deg, #f0fdf4 0%, #bbf7d0 100%);
}
.product-card--green .product-tag {
  background: #f0fdf4;
  color: #16a34a;
}

.product-card--purple .product-card-visual {
  background: linear-gradient(160deg, #faf5ff 0%, #e9d5ff 100%);
}
.product-card--purple .product-tag {
  background: #faf5ff;
  color: #9333ea;
}

.product-card--yellow .product-card-visual {
  background: linear-gradient(160deg, #fefce8 0%, #fde68a 100%);
}
.product-card--yellow .product-tag {
  background: #fefce8;
  color: #a16207;
}

.product-card--pink .product-card-visual {
  background: linear-gradient(160deg, #fdf2f8 0%, #fbcfe8 100%);
}
.product-card--pink .product-tag {
  background: #fdf2f8;
  color: #be185d;
}

/* ============================================
   STORY SECTION — Warm Heritage & Authentic Chronicle
   ============================================ */
.story {
  background: #2b1307;
  position: relative;
  overflow: hidden;
  padding: var(--space-5xl) 0;
  color: #faf6f0;
}

.story::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(217, 119, 6, 0.22), transparent 60%),
    radial-gradient(ellipse at 85% 70%, rgba(180, 83, 9, 0.18), transparent 60%);
  pointer-events: none;
}

.story .container {
  position: relative;
  z-index: 2;
}

.story-editorial {
  background: linear-gradient(145deg, rgba(46, 20, 8, 0.8) 0%, rgba(30, 13, 5, 0.9) 100%);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-2xl);
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.story-editorial-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3rem;
}

.story-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  padding: 0.35rem 1.2rem;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
  margin-bottom: 1.2rem;
}

.story-editorial-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.18;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.story-editorial-spark {
  color: #fbbf24;
  font-style: italic;
}

.story-editorial-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

/* Left Narrative */
.story-editorial-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(254, 243, 199, 0.88);
}

.story-lead {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.7;
}

.story-lead strong {
  color: #fbbf24;
}

.story-editorial-text p em {
  color: #fef08a;
  font-style: italic;
}



/* Right Timeline Chronicle */
.story-timeline-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}

.story-timeline-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.story-timeline-badge {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #fbbf24;
  text-transform: uppercase;
}

.story-timeline-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #ffffff;
  margin-top: 0.35rem;
}

.story-timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: relative;
}

.story-timeline-steps::before {
  content: '';
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 36px;
  width: 2px;
  background: linear-gradient(180deg, #fbbf24 0%, rgba(251, 191, 36, 0.2) 100%);
}

.story-milestone {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}

.story-milestone-year {
  width: 72px;
  min-width: 72px;
  height: 34px;
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  color: #451a03;
  font-size: 0.85rem;
  font-weight: 900;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.35);
  letter-spacing: -0.01em;
}

.story-milestone-info {
  flex: 1;
}

.story-milestone-info h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.story-milestone-info p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(254, 243, 199, 0.75);
}

/* ============================================
   VALUES / STATS SECTION
   Horizontal marquee / ticker feel
   ============================================ */
.values {
  background: var(--green-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: var(--space-4xl) 0;
}

/* Subtle radial gradient for depth */
.values::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 70%, rgba(27, 107, 66, 0.6), transparent 55%),
    radial-gradient(ellipse at 85% 25%, rgba(212, 135, 14, 0.12), transparent 50%);
  pointer-events: none;
}

.values .container {
  position: relative;
  z-index: 1;
}

.values .section-eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.values .section-title {
  color: var(--white);
}

.values-title-logo {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  color: var(--white);
}

.values-logo-img {
  height: clamp(62px, 8vw, 88px);
  max-height: 92px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.45));
  transition: transform 0.3s ease;
}

.values-logo-img:hover {
  transform: scale(1.06);
}

.values .section-desc {
  color: rgba(255, 255, 255, 0.75);
}

/* Ticker / marquee strip */
.values-grid {
  display: flex;
  gap: 0;
  overflow: hidden;
  position: relative;
}

/* Animate the entire grid as a horizontal ticker */
.values-grid {
  animation: ticker 35s linear infinite;
  width: max-content;
}

.value-card {
  flex: 0 0 auto;
  text-align: center;
  padding: var(--space-2xl) var(--space-3xl);
  position: relative;
  white-space: nowrap;
}

/* Divider line between cards */
.value-card + .value-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.value-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--amber);
}

.value-card-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw + 0.5rem, 3rem);
  font-weight: 400;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.03em;
  color: var(--white);
}

.value-card-label {
  font-size: var(--text-small);
  opacity: 0.55;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ============================================
   SUSTAINABILITY SECTION
   Vibrant, nature-inspired cards with rich gradients
   ============================================ */
.sustainability {
  background: linear-gradient(180deg, #faf6f0 0%, #f0fdf4 35%, #f0f9ff 70%, #faf6f0 100%);
  padding: var(--space-5xl) 0 calc(var(--space-5xl) + 2rem);
  position: relative;
  overflow: hidden;
}

.sustainability::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.sustainability::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.sustainability-card {
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition:
    transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    border-color var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

/* 1: Yerel Çiftçi — Doğal Zümrüt & Tarım Yeşili */
.sustainability-card:nth-child(1) {
  background: linear-gradient(145deg, #ffffff 0%, #f0fdf4 55%, #dcfce7 100%);
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-left: 6px solid #16a34a;
  transform: rotate(-1.2deg);
  z-index: 2;
}
.sustainability-card:nth-child(1) .sustainability-icon {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.35);
}
.sustainability-card:nth-child(1) h3 {
  color: #14532d;
}
.sustainability-card:nth-child(1) p {
  color: #166534;
}
.sustainability-card:nth-child(1):hover {
  box-shadow: 0 25px 50px rgba(22, 163, 74, 0.22);
}

/* 2: Geri Dönüşüm — Ekolojik Deniz & Gökyüzü Mavisi */
.sustainability-card:nth-child(2) {
  background: linear-gradient(145deg, #ffffff 0%, #f0f9ff 55%, #e0f2fe 100%);
  border: 1px solid rgba(14, 165, 233, 0.28);
  border-left: 6px solid #0284c7;
  transform: rotate(0.8deg);
  z-index: 3;
  margin-top: 1.5rem;
}
.sustainability-card:nth-child(2) .sustainability-icon {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.35);
}
.sustainability-card:nth-child(2) h3 {
  color: #0c4a6e;
}
.sustainability-card:nth-child(2) p {
  color: #075985;
}
.sustainability-card:nth-child(2):hover {
  box-shadow: 0 25px 50px rgba(2, 132, 199, 0.22);
}

/* 3: Güneş Enerjisi — Sıcak Güneş Altını & Amber */
.sustainability-card:nth-child(3) {
  background: linear-gradient(145deg, #ffffff 0%, #fffbeb 55%, #fef3c7 100%);
  border: 1px solid rgba(245, 158, 11, 0.32);
  border-left: 6px solid #d97706;
  transform: rotate(1deg);
  z-index: 1;
  margin-top: -1rem;
}
.sustainability-card:nth-child(3) .sustainability-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.35);
}
.sustainability-card:nth-child(3) h3 {
  color: #78350f;
}
.sustainability-card:nth-child(3) p {
  color: #92400e;
}
.sustainability-card:nth-child(3):hover {
  box-shadow: 0 25px 50px rgba(217, 119, 6, 0.22);
}

/* 4: Su Tasarrufu — Derin Saf Kaynak & Safir Mavisi */
.sustainability-card:nth-child(4) {
  background: linear-gradient(145deg, #ffffff 0%, #eff6ff 55%, #dbeafe 100%);
  border: 1px solid rgba(59, 130, 246, 0.28);
  border-left: 6px solid #2563eb;
  transform: rotate(-0.6deg);
  z-index: 2;
  margin-top: 0.5rem;
}
.sustainability-card:nth-child(4) .sustainability-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}
.sustainability-card:nth-child(4) h3 {
  color: #1e3a8a;
}
.sustainability-card:nth-child(4) p {
  color: #1e40af;
}
.sustainability-card:nth-child(4):hover {
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.22);
}

.sustainability-card:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.02) !important;
  z-index: 10;
}

.sustainability-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  transition: transform 0.3s var(--ease);
}

.sustainability-card:hover .sustainability-icon {
  transform: scale(1.1) rotate(4deg);
}

.sustainability-icon svg {
  width: 26px;
  height: 26px;
}

.sustainability-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-card-title);
  font-weight: 800;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.sustainability-card p {
  font-size: var(--text-small);
  line-height: 1.7;
  font-weight: 500;
}

/* ============================================
   CTA SECTION
   Simple, restrained — just text + link
   ============================================ */
/* ============================================
   CTA SECTION — Premium Brand Experience
   ============================================ */
.cta {
  background: var(--cream);
  padding: var(--space-4xl) 0 var(--space-5xl);
}

.cta-box {
  background: linear-gradient(135deg, #064e3b 0%, #14532d 40%, #15803d 100%);
  border-radius: var(--radius-2xl);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 3.5rem);
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(6, 78, 59, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.16);
  color: #86efac;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.cta-title-spark {
  color: #fde047;
  font-style: italic;
}

.cta-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  margin: 0 auto 2.25rem;
  max-width: 580px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  color: #0f172a;
  padding: 0.85rem 1.75rem 0.85rem 1.15rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.5);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background 0.3s ease;
}

.cta-btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45), 0 0 0 2px rgba(255, 255, 255, 0.8);
  background: #ffffff;
}

.cta-btn-icon {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  padding: 6px;
  flex-shrink: 0;
}

.cta-logo-mini {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cta-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.cta-btn-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cta-btn-url {
  font-size: 1.15rem;
  font-weight: 900;
  color: #15803d;
  letter-spacing: -0.01em;
}

.cta-arrow-icon {
  width: 22px;
  height: 22px;
  color: #15803d;
  transition: transform 0.3s ease;
}

.cta-btn-primary:hover .cta-arrow-icon {
  transform: translateX(4px);
}

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  flex-wrap: wrap;
}

.cta-trust-dot {
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.5);
  padding: var(--space-4xl) 0 var(--space-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.footer-brand p {
  font-size: var(--text-small);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
}

.footer-col a {
  display: block;
  font-size: var(--text-small);
  padding: var(--space-xs) 0;
  transition: color var(--duration) var(--ease);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: var(--text-small);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--duration) var(--ease),
    transform var(--duration) var(--ease),
    color var(--duration) var(--ease);
}

.footer-social a:hover {
  background: var(--green-deep);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   SCROLL / FADE-IN ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered cards keep their transforms */
.product-card.fade-in.visible:nth-child(even) {
  transform: translateY(2.5rem);
}

.sustainability-card.fade-in.visible:nth-child(1) {
  transform: rotate(-1.2deg);
}
.sustainability-card.fade-in.visible:nth-child(2) {
  transform: rotate(0.8deg);
}
.sustainability-card.fade-in.visible:nth-child(3) {
  transform: rotate(1deg);
}
.sustainability-card.fade-in.visible:nth-child(4) {
  transform: rotate(-0.6deg);
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes hero-drift {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(25px, -35px) scale(1.04);
  }
  66% {
    transform: translate(-15px, 18px) scale(0.97);
  }
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================
   RESPONSIVE — Meaningful layout changes
   ============================================ */

/* --- Tablet landscape --- */
@media (max-width: 1024px) {
  .products-grid {
    gap: var(--space-xl) var(--space-lg);
  }

  .story-grid {
    gap: var(--space-2xl);
  }

  .story-content {
    padding: var(--space-2xl);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

/* --- Tablet portrait & mobile (< 900px) --- */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex !important;
  }

  /* Backdrop Overlay: Dims the rest of screen */
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Navigation Drawer: Slides from the LEFT (width 290px / max 80vw, DOES NOT cover full screen) */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 290px;
    max-width: 82vw;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    z-index: 999;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 1.5rem 1.25rem;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.25);
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    gap: 1.25rem;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .mobile-drawer-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
  }

  .mobile-drawer-close {
    background: #f4f4f5;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #18181b;
    cursor: pointer;
  }

  .mobile-drawer-close svg {
    width: 20px;
    height: 20px;
  }

  .nav-links {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    width: 100%;
  }

  .nav-links > li {
    width: 100%;
  }

  .nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    color: #1c1917;
  }

  .nav-link:hover {
    background: #f0fdf4;
    color: #15803d;
  }

  .nav-link::after {
    display: none !important;
  }

  /* Mobile Dropdown inside Drawer (Collapsed by default, opens only on tap) */
  .nav-dropdown-item {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .nav-dropdown-menu {
    display: none;
    position: static;
    transform: none !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #f8fafc;
    border-radius: var(--radius-md);
    padding: 0.5rem;
    margin-top: 0.35rem;
    margin-left: 0.5rem;
    flex-direction: column;
    gap: 4px;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-dropdown-item.is-open .nav-dropdown-menu {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .nav-dropdown-item.is-open .dropdown-chevron {
    transform: rotate(180deg);
  }

  .dropdown-link {
    padding: 0.6rem 0.75rem;
    border-radius: var(--radius-sm);
  }

  .dropdown-link:hover {
    background: #e6f4ec;
  }

  .nav-cta {
    display: flex !important;
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-top: auto;
    padding: 0.85rem;
  }

  /* Mobile Hero Optimization (100% Static video, no zoom on scroll) */
  .hero-scroll-section {
    height: auto !important;
    min-height: 100vh;
    min-height: 100lvh;
    overflow: hidden;
  }

  .hero-sticky-wrapper {
    position: relative !important;
    top: 0 !important;
    height: auto !important;
    min-height: 100vh;
    min-height: 100lvh;
    padding: 6rem 1rem 3.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-video-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
  }

  .hero-bg-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    filter: brightness(0.9) contrast(1.05) saturate(1.1) !important;
  }

  .hero-scroll-hint {
    display: none !important;
  }

  .hero-container {
    padding: 0 !important;
    width: 100%;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(2rem, 7.5vw, 2.75rem) !important;
    line-height: 1.15 !important;
    margin-bottom: 0.65rem !important;
  }

  .hero-subtitle {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1.25rem !important;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.35rem !important;
    margin-top: 1.25rem !important;
    padding: 0.85rem 0.5rem !important;
    border-radius: var(--radius-lg) !important;
    background: rgba(0, 0, 0, 0.65) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    width: 100%;
  }

  .hero-stat {
    min-width: 0 !important;
    width: 100% !important;
    padding: 0 !important;
  }

  .hero-stat-value {
    font-size: clamp(1.75rem, 5.5vw, 2.25rem) !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    line-height: 1 !important;
  }

  .hero-stat-label {
    font-size: 0.65rem !important;
    font-weight: 800 !important;
    color: #f3f4f6 !important;
    margin-top: 0.25rem !important;
    letter-spacing: 0.02em !important;
  }

  /* Products: horizontal scroll strip on mobile */
  .products-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--space-lg);
    padding-bottom: var(--space-md);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .products-grid::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    flex: 0 0 78vw;
    max-width: 320px;
    scroll-snap-align: center;
  }

  /* Remove stagger offset on mobile scroll */
  .product-card:nth-child(even) {
    transform: none;
  }
  .product-card.fade-in.visible:nth-child(even) {
    transform: none;
  }

  .story-editorial {
    padding: 2rem 1.25rem !important;
  }

  .story-editorial-grid {
    grid-template-columns: 1fr !important;
    gap: 2.25rem !important;
  }



  .story-timeline-card {
    padding: 1.5rem 1rem !important;
  }

  /* Sustainability: single column, cards un-rotated */
  .sustainability-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .sustainability-card,
  .sustainability-card:nth-child(1),
  .sustainability-card:nth-child(2),
  .sustainability-card:nth-child(3),
  .sustainability-card:nth-child(4) {
    transform: none !important;
    margin-top: 0 !important;
  }

  .sustainability-card.fade-in.visible,
  .sustainability-card.fade-in.visible:nth-child(1),
  .sustainability-card.fade-in.visible:nth-child(2),
  .sustainability-card.fade-in.visible:nth-child(3),
  .sustainability-card.fade-in.visible:nth-child(4) {
    transform: none !important;
  }

  /* Values marquee continues on mobile */
  .value-card {
    padding: var(--space-xl) var(--space-2xl);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-lg);
    text-align: center;
  }

  .cta-box {
    padding: var(--space-2xl) var(--space-md);
  }

  section {
    padding: var(--space-4xl) 0;
  }
}

/* --- Small phones --- */

/* ============================================
   COOL FAMILY SECTION
   ============================================ */
.cool-family {
  background: linear-gradient(180deg, #faf6f0 0%, #f0fdfa 40%, #e6fffa 100%);
  position: relative;
  overflow: hidden;
  padding: var(--space-5xl) 0;
}

.cool-badge-trend {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: #0ea5e9;
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
}

.cool-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  color: var(--white);
  position: relative;
  overflow: hidden;
  margin-bottom: var(--space-3xl);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.cool-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.35), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cool-banner-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.cool-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw + 1rem, 3.25rem);
  line-height: 1.1;
  margin-bottom: var(--space-md);
  color: var(--white);
}

.cool-banner-title .cool-spark {
  color: #38bdf8;
  font-style: italic;
}

.cool-banner-desc {
  font-size: var(--text-body);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

/* Mix Steps Bar */
.cool-mix-steps {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  padding: var(--space-md) var(--space-lg);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cool-step {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-small);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.cool-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #38bdf8;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}

.cool-step-arrow {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
}

/* ============================================
   NEKTAR FAMILY SECTION
   ============================================ */
.nektar-family {
  background: var(--cream);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

/* Interactive Nektar Mix & Taste Guide Banner */
.nektar-banner {
  background: linear-gradient(135deg, #7c2d12 0%, #c2410c 45%, #ea580c 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-3xl);
  margin-bottom: var(--space-2xl);
  box-shadow: 0 15px 40px rgba(194, 65, 12, 0.25);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.nektar-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.nektar-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  color: var(--white);
}

.nektar-banner-title .nektar-spark {
  color: #fbbf24;
  font-style: italic;
}

.nektar-banner-desc {
  font-size: var(--text-body);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.nektar-mix-steps {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  padding: var(--space-md) var(--space-lg);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.nektar-step {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-small);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.nektar-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fbbf24;
  color: #451a03;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}

.nektar-step-arrow {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
}

.nektar-roster-frame {
  width: 100%;
  background: #230c05; /* Üstteki Nektar panosunun derin sıcak amber / terracotta tonu */
  border-radius: var(--radius-xl);
  padding: 12px;
  box-shadow: 0 25px 60px rgba(124, 45, 18, 0.28), 0 0 0 1px rgba(234, 88, 12, 0.2);
  border: 1px solid rgba(234, 88, 12, 0.22);
  position: relative;
}

.nektar-roster {
  display: flex;
  height: 520px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: #170703;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nektar-roster-frame.is-expanded .nektar-roster {
  height: 580px;
}

.nektar-roster-slice {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-xl) var(--space-xs);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  will-change: flex, opacity, transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition:
    flex 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    opacity 0.35s ease;
  text-decoration: none;
}

.nektar-roster-slice:last-child {
  border-right: none;
}

.nektar-roster-slice::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.12;
  will-change: opacity;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 1: Şeftali Nektarı Glow (Canlı Şeftali Turuncusu & Altın) */
.nektar-slice--seftali::before {
  background: radial-gradient(circle at 50% 60%, #ff7849 0%, #f97316 35%, #ea580c 60%, #7c2d12 100%);
}
.nektar-slice--seftali.is-centered {
  border-color: rgba(251, 146, 60, 0.85) !important;
  box-shadow: inset 0 0 45px rgba(249, 115, 22, 0.5), 0 0 35px rgba(234, 88, 12, 0.4) !important;
}

/* 2: Tropikal Meyveler Glow (Elektrik Okyanus Mavisi) */
.nektar-slice--tropikal::before {
  background: radial-gradient(circle at 50% 60%, #38bdf8 0%, #0ea5e9 35%, #0284c7 60%, #082f49 100%);
}
.nektar-slice--tropikal.is-centered {
  border-color: rgba(56, 189, 248, 0.85) !important;
  box-shadow: inset 0 0 45px rgba(56, 189, 248, 0.5), 0 0 35px rgba(2, 132, 199, 0.4) !important;
}

/* 3: Mango İçeceği Glow (Canlı Neon Mango Yeşili) */
.nektar-slice--mango::before {
  background: radial-gradient(circle at 50% 60%, #4ade80 0%, #22c55e 35%, #16a34a 60%, #052e16 100%);
}
.nektar-slice--mango.is-centered {
  border-color: rgba(74, 222, 128, 0.85) !important;
  box-shadow: inset 0 0 45px rgba(34, 197, 94, 0.5), 0 0 35px rgba(22, 163, 74, 0.4) !important;
}

/* 4: Orman Meyveleri Glow (Doğal Böğürtlen & Vişne Tonu — Neon Parlama Kaldırıldı) */
.nektar-slice--orman::before {
  background: radial-gradient(circle at 50% 60%, #9d174d 0%, #831843 40%, #500724 75%, #200210 100%);
}
.nektar-slice--orman.is-centered {
  border-color: rgba(244, 63, 94, 0.5) !important;
  box-shadow: inset 0 0 30px rgba(157, 23, 77, 0.4) !important;
}

/* 5: Ananas İçeceği Glow (Güneş Sarısı & Altın Ananas) */
.nektar-slice--ananas::before {
  background: radial-gradient(circle at 50% 60%, #fde047 0%, #facc15 35%, #eab308 60%, #713f12 100%);
}
.nektar-slice--ananas.is-centered {
  border-color: rgba(253, 224, 71, 0.85) !important;
  box-shadow: inset 0 0 45px rgba(250, 204, 21, 0.5), 0 0 35px rgba(234, 179, 8, 0.4) !important;
}

/* Desktop Only Hover Rules (Never triggered on touch gestures) */
@media (hover: hover) and (pointer: fine) {
  .nektar-slice--seftali:hover {
    border-color: rgba(251, 146, 60, 0.85);
    box-shadow: inset 0 0 45px rgba(249, 115, 22, 0.5), 0 0 35px rgba(234, 88, 12, 0.4);
  }
  .nektar-slice--tropikal:hover {
    border-color: rgba(56, 189, 248, 0.85);
    box-shadow: inset 0 0 45px rgba(56, 189, 248, 0.5), 0 0 35px rgba(2, 132, 199, 0.4);
  }
  .nektar-slice--mango:hover {
    border-color: rgba(74, 222, 128, 0.85);
    box-shadow: inset 0 0 45px rgba(34, 197, 94, 0.5), 0 0 35px rgba(22, 163, 74, 0.4);
  }
  .nektar-slice--orman:hover {
    border-color: rgba(244, 63, 94, 0.5);
    box-shadow: inset 0 0 30px rgba(157, 23, 77, 0.4);
  }
  .nektar-slice--ananas:hover {
    border-color: rgba(253, 224, 71, 0.85);
    box-shadow: inset 0 0 45px rgba(250, 204, 21, 0.5), 0 0 35px rgba(234, 179, 8, 0.4);
  }

  .nektar-roster:hover .nektar-roster-slice {
    flex: 0.82;
    opacity: 0.65;
  }

  .nektar-roster-slice:hover {
    flex: 1.85 !important;
    opacity: 1 !important;
    z-index: 10;
  }

  .nektar-roster-slice:hover::before {
    opacity: 0.98;
  }
}

.nektar-roster-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
  width: 100%;
  will-change: transform;
}

.nektar-roster-img {
  max-height: 270px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  will-change: transform, filter;
  transform: translateZ(0);
  backface-visibility: hidden;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.nektar-roster-slice:hover .nektar-roster-img {
  transform: translateY(-16px) scale(1.15) rotate(3deg) translateZ(0);
  filter:
    drop-shadow(0 28px 35px rgba(0, 0, 0, 0.8))
    drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
}

/* Top Badge inside slice */
.nektar-roster-badge {
  position: relative;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.nektar-roster-slice:hover .nektar-roster-badge {
  background: var(--white);
  color: #170703;
}

/* Bottom Info inside slice */
.nektar-roster-info {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding-bottom: var(--space-xs);
}

.nektar-roster-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
  line-height: 1.2;
}

.nektar-roster-tag {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
  white-space: nowrap;
}

.nektar-roster-back {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  transform: translateY(-12px) translateZ(0);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.nektar-roster-back svg {
  width: 15px;
  height: 15px;
}

.nektar-roster-back:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-12px) scale(1.05) translateZ(0);
}

.nektar-roster-frame.is-expanded .nektar-roster-back {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) translateZ(0);
}

.nektar-roster-slice.is-active {
  flex: 1 0 100% !important;
  opacity: 1 !important;
  z-index: 30 !important;
  flex-direction: row !important;
  justify-content: flex-start !important;
  align-items: center !important;
  padding: 2rem 3.5rem !important;
  cursor: default !important;
}

.nektar-roster-slice.is-active::before {
  opacity: 0.98 !important;
}

.nektar-roster-frame.is-expanded .nektar-roster-slice:not(.is-active) {
  flex: 0 0 0 !important;
  opacity: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: none !important;
  pointer-events: none !important;
}

.nektar-roster-slice.is-active .nektar-roster-visual {
  width: 300px;
  min-width: 300px;
  height: 380px;
  margin-top: 0;
  will-change: transform, width;
}

.nektar-roster-slice.is-active .nektar-roster-img {
  max-height: 340px !important;
  max-width: 210px !important;
  transform: translateY(0) scale(1.15) rotate(-3deg) translateZ(0) !important;
  filter:
    drop-shadow(0 30px 40px rgba(0, 0, 0, 0.75))
    drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5)) !important;
}

.nektar-roster-slice.is-active > .nektar-roster-badge,
.nektar-roster-slice.is-active > .nektar-roster-info {
  display: none !important;
}

.nektar-roster-detail {
  display: none;
  opacity: 0;
  position: relative;
  z-index: 20;
  will-change: transform, opacity;
  transform: translateX(40px) translateZ(0);
  transition: opacity 0.4s 0.1s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s 0.1s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 560px;
  color: #ffffff !important;
  padding-left: 2rem;
}

.nektar-roster-slice.is-active .nektar-roster-detail {
  display: block;
  opacity: 1;
  transform: translateX(0) translateZ(0);
}

.nektar-detail-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 2.9rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff !important;
  margin-top: 0.2rem;
  margin-bottom: 0.85rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.95);
}

.nektar-detail-subtitle {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: #fbbf24 !important;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nektar-detail-desc {
  font-size: 0.88rem;
  color: #ffffff !important;
  line-height: 1.55;
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
  font-weight: 500;
}

.nektar-nutrition-box {
  margin-top: 0.5rem;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.1rem;
  max-width: 490px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nektar-nutrition-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fbbf24;
  margin-bottom: 0.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.35rem;
}

.nektar-nut-badge {
  background: rgba(251, 191, 36, 0.25);
  color: #fbbf24;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
}

.nektar-nutrition-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem 1.25rem;
}

.nektar-nut-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  padding: 0.15rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

.nektar-nut-row strong {
  color: #ffffff;
  font-weight: 700;
}

.nektar-nutrition-footer {
  margin-top: 0.5rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fbbf24;
  letter-spacing: 0.02em;
}

/* ============================================
   COOL FAMILY SECTION
   ============================================ */
.cool-roster-frame {
  width: 100%;
  background: #0b1120;
  border-radius: var(--radius-xl);
  padding: 12px;
  box-shadow: 0 25px 60px rgba(11, 17, 32, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.08);
  position: relative;
}

.cool-roster {
  display: flex;
  height: 520px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: #090d16;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cool-roster-frame.is-expanded .cool-roster {
  height: 580px;
}

/* Expanded Detail State on Roster Slices - 60 FPS */
.cool-roster-slice.is-active {
  flex: 1 0 100% !important;
  opacity: 1 !important;
  z-index: 30 !important;
  flex-direction: row !important;
  justify-content: flex-start !important;
  align-items: center !important;
  padding: 2rem 3.5rem !important;
  cursor: default !important;
}

.cool-roster-slice.is-active::before {
  opacity: 0.98 !important;
}

.cool-roster-frame.is-expanded .cool-roster-slice:not(.is-active) {
  flex: 0 0 0 !important;
  opacity: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: none !important;
  pointer-events: none !important;
}

/* Product Image alignment to the LEFT in detail view */
.cool-roster-slice.is-active .cool-roster-visual {
  width: 300px;
  min-width: 300px;
  height: 380px;
  margin-top: 0;
  will-change: transform, width;
}

.cool-roster-slice.is-active .cool-roster-img {
  max-height: 340px !important;
  max-width: 210px !important;
  transform: translateY(0) scale(1.15) rotate(-3deg) translateZ(0) !important;
  filter:
    drop-shadow(0 30px 40px rgba(0, 0, 0, 0.75))
    drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5)) !important;
}

/* Hide default badge & bottom info in detail view */
.cool-roster-slice.is-active > .cool-roster-badge,
.cool-roster-slice.is-active > .cool-roster-info {
  display: none !important;
}

/* Detail Content on the RIGHT side - 60 FPS Slide-in */
.cool-roster-detail {
  display: none;
  opacity: 0;
  position: relative;
  z-index: 20;
  will-change: transform, opacity;
  transform: translateX(40px) translateZ(0);
  transition: opacity 0.4s 0.1s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s 0.1s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 560px;
  color: #ffffff !important;
  padding-left: 2rem;
}

.cool-roster-slice.is-active .cool-roster-detail {
  display: block;
  opacity: 1;
  transform: translateX(0) translateZ(0);
}

.cool-detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  line-height: 1.1;
  color: #ffffff !important;
  margin-top: 0.6rem;
  margin-bottom: 0.25rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.95);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.cool-detail-subtitle {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: #fbbf24 !important; /* Vivid Gold Accent */
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cool-detail-desc {
  font-size: 0.88rem;
  color: #ffffff !important;
  line-height: 1.55;
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
  font-weight: 500;
}

.cool-detail-desc strong {
  color: #fbbf24 !important;
}

/* Nutritional Values Table Box */
.cool-nutrition-box {
  margin-top: 0.5rem;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.1rem;
  max-width: 490px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Individual Vertical Character Columns (6 Slices) - GPU Accelerated 60 FPS */
.cool-roster-slice {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-xl) var(--space-xs);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  will-change: flex, opacity, transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition:
    flex 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    opacity 0.35s ease;
  text-decoration: none;
}

.cool-roster-slice:last-child {
  border-right: none;
}

/* Base gradient background for slice */
.cool-roster-slice::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.12;
  will-change: opacity;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Active Color Glow for each slice */
/* 1: Cool Lime (Yeşil & Siyah) */
.cool-slice--lime::before {
  background: radial-gradient(circle at 50% 60%, #22c55e 0%, #15803d 40%, #052e16 100%);
}
.cool-slice--lime.is-centered {
  border-color: rgba(74, 222, 128, 0.85) !important;
  box-shadow: inset 0 0 45px rgba(34, 197, 94, 0.5), 0 0 35px rgba(22, 163, 74, 0.4) !important;
}

/* 2: Cool Lime Zero Sugar (Mint Yeşil & Siyah Slate) */
.cool-slice--zero::before {
  background: radial-gradient(circle at 50% 60%, #14b8a6 0%, #0f766e 40%, #022c22 100%);
}
.cool-slice--zero.is-centered {
  border-color: rgba(45, 212, 191, 0.85) !important;
  box-shadow: inset 0 0 45px rgba(20, 184, 166, 0.5), 0 0 35px rgba(15, 118, 110, 0.4) !important;
}

/* 3: Cool Berry Mix (Kırmızı & Bordo) */
.cool-slice--berry::before {
  background: radial-gradient(circle at 50% 60%, #f43f5e 0%, #be123c 40%, #4c0519 100%);
}
.cool-slice--berry.is-centered {
  border-color: rgba(251, 113, 133, 0.85) !important;
  box-shadow: inset 0 0 45px rgba(244, 63, 94, 0.5), 0 0 35px rgba(190, 18, 60, 0.4) !important;
}

/* 4: Cool Mango Mix (Turuncu & Derin Amber) */
.cool-slice--mango::before {
  background: radial-gradient(circle at 50% 60%, #f97316 0%, #c2410c 40%, #431407 100%);
}
.cool-slice--mango.is-centered {
  border-color: rgba(253, 186, 116, 0.85) !important;
  box-shadow: inset 0 0 45px rgba(249, 115, 22, 0.5), 0 0 35px rgba(194, 65, 12, 0.4) !important;
}

/* 5: Cool Sour Mix Böğürtlen (Mor & Viyole) */
.cool-slice--bogurtlen::before {
  background: radial-gradient(circle at 50% 60%, #a855f7 0%, #6b21a8 40%, #2e1065 100%);
}
.cool-slice--bogurtlen.is-centered {
  border-color: rgba(216, 180, 254, 0.85) !important;
  box-shadow: inset 0 0 45px rgba(168, 85, 247, 0.5), 0 0 35px rgba(107, 33, 168, 0.4) !important;
}

/* 6: Cool Sour Mix Elma (Elektrik Elma Yeşili & Zümrüt) */
.cool-slice--elma::before {
  background: radial-gradient(circle at 50% 60%, #4ade80 0%, #16a34a 40%, #064e3b 100%);
}
.cool-slice--elma.is-centered {
  border-color: rgba(134, 239, 172, 0.85) !important;
  box-shadow: inset 0 0 45px rgba(74, 222, 128, 0.5), 0 0 35px rgba(22, 163, 74, 0.4) !important;
}

/* Desktop Only Hover Rules for Cool */
@media (hover: hover) and (pointer: fine) {
  .cool-slice--lime:hover {
    border-color: rgba(74, 222, 128, 0.85);
    box-shadow: inset 0 0 45px rgba(34, 197, 94, 0.5), 0 0 35px rgba(22, 163, 74, 0.4);
  }
  .cool-slice--zero:hover {
    border-color: rgba(45, 212, 191, 0.85);
    box-shadow: inset 0 0 45px rgba(20, 184, 166, 0.5), 0 0 35px rgba(15, 118, 110, 0.4);
  }
  .cool-slice--berry:hover {
    border-color: rgba(251, 113, 133, 0.85);
    box-shadow: inset 0 0 45px rgba(244, 63, 94, 0.5), 0 0 35px rgba(190, 18, 60, 0.4);
  }
  .cool-slice--mango:hover {
    border-color: rgba(253, 186, 116, 0.85);
    box-shadow: inset 0 0 45px rgba(249, 115, 22, 0.5), 0 0 35px rgba(194, 65, 12, 0.4);
  }
  .cool-slice--bogurtlen:hover {
    border-color: rgba(216, 180, 254, 0.85);
    box-shadow: inset 0 0 45px rgba(168, 85, 247, 0.5), 0 0 35px rgba(107, 33, 168, 0.4);
  }
  .cool-slice--elma:hover {
    border-color: rgba(134, 239, 172, 0.85);
    box-shadow: inset 0 0 45px rgba(74, 222, 128, 0.5), 0 0 35px rgba(22, 163, 74, 0.4);
  }

  .cool-roster:hover .cool-roster-slice {
    flex: 0.82;
    opacity: 0.65;
  }

  .cool-roster-slice:hover {
    flex: 1.85 !important;
    opacity: 1 !important;
    z-index: 10;
  }

  .cool-roster-slice:hover::before {
    opacity: 0.98;
  }
}

/* 3D Bottle Image & Floating Shadow - 60 FPS GPU Accelerated */
.cool-roster-visual {
  position: relative;
  z-index: 2;
  height: 290px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-md);
}

.cool-roster-img {
  max-height: 245px;
  max-width: 135px;
  width: auto;
  object-fit: contain;
  /* 3D Depth Shadows */
  filter:
    drop-shadow(0 18px 22px rgba(0, 0, 0, 0.65))
    drop-shadow(0 8px 10px rgba(0, 0, 0, 0.4));
  will-change: transform, filter;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

/* Universal 3D Tilt, Elevation & Rotation for ALL 6 Products on Hover */
.cool-roster-slice:hover .cool-roster-img {
  transform: translateY(-16px) scale(1.16) rotate(3.5deg) translateZ(0);
  filter:
    drop-shadow(0 28px 35px rgba(0, 0, 0, 0.8))
    drop-shadow(0 12px 14px rgba(0, 0, 0, 0.5));
}

/* Cool Lime — Özel Boyut Dengesi */
.cool-roster-img--lime {
  max-height: 258px;
  max-width: 142px;
  transform: scale(1.05);
}

.cool-roster-slice:hover .cool-roster-img--lime {
  transform: translateY(-16px) scale(1.21) rotate(3.5deg);
}

/* Cool Lime Zero — Özel Boyut Dengesi */
.cool-roster-img--zero {
  max-height: 236px;
  max-width: 130px;
  transform: scale(0.97);
}

.cool-roster-slice:hover .cool-roster-img--zero {
  transform: translateY(-15px) scale(1.12) rotate(3.5deg);
}

/* Top Badge inside slice */
.cool-roster-badge {
  position: relative;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.cool-roster-slice:hover .cool-roster-badge {
  background: var(--white);
  color: #090d16;
}

/* Bottom Info inside slice */
.cool-roster-info {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding-bottom: var(--space-xs);
}

.cool-roster-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
  line-height: 1.2;
}

/* Back Button in Detail Mode - GPU Accelerated 60 FPS */
.cool-roster-back {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  transform: translateY(-12px) translateZ(0);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.cool-roster-back svg {
  width: 15px;
  height: 15px;
}

.cool-roster-back:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-12px) scale(1.05) translateZ(0);
}

.cool-roster-frame.is-expanded .cool-roster-back {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) translateZ(0);
}

/* Expanded Detail State on Roster Slices - 60 FPS */
.cool-roster-slice.is-active {
  flex: 1 0 100% !important;
  opacity: 1 !important;
  z-index: 30 !important;
  flex-direction: row !important;
  justify-content: flex-start !important;
  align-items: center !important;
  padding: 3rem 4rem !important;
  cursor: default !important;
}

.cool-roster-slice.is-active::before {
  opacity: 0.98 !important;
}

.cool-roster-frame.is-expanded .cool-roster-slice:not(.is-active) {
  flex: 0 0 0 !important;
  opacity: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: none !important;
  pointer-events: none !important;
}

/* Product Image alignment to the LEFT in detail view */
.cool-roster-slice.is-active .cool-roster-visual {
  width: 320px;
  min-width: 320px;
  height: 380px;
  margin-top: 0;
  will-change: transform, width;
}

.cool-roster-slice.is-active .cool-roster-img {
  max-height: 330px !important;
  max-width: 200px !important;
  transform: translateY(0) scale(1.15) rotate(-3deg) translateZ(0) !important;
  filter:
    drop-shadow(0 30px 40px rgba(0, 0, 0, 0.75))
    drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5)) !important;
}

/* Hide default badge & bottom info in detail view */
.cool-roster-slice.is-active > .cool-roster-badge,
.cool-roster-slice.is-active > .cool-roster-info {
  display: none !important;
}

/* Detail Content on the RIGHT side - 60 FPS Slide-in */
.cool-roster-detail {
  display: none;
  opacity: 0;
  position: relative;
  z-index: 20;
  will-change: transform, opacity;
  transform: translateX(40px) translateZ(0);
  transition: opacity 0.4s 0.1s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s 0.1s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 560px;
  color: #ffffff !important;
  padding-left: 2rem;
}

.cool-roster-slice.is-active .cool-roster-detail {
  display: block;
  opacity: 1;
  transform: translateX(0) translateZ(0);
}

.cool-detail-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff !important;
  backdrop-filter: blur(8px);
  margin-bottom: 0.8rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cool-detail-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 2.9rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff !important;
  margin-top: 0.2rem;
  margin-bottom: 0.85rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.95);
}

.cool-detail-subtitle {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fbbf24 !important; /* Vivid Gold Accent */
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
  letter-spacing: 0.05em;
}

.cool-detail-desc {
  font-size: 0.95rem;
  color: #ffffff !important;
  line-height: 1.65;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
  font-weight: 500;
}

.cool-detail-desc strong {
  color: #fbbf24 !important;
}

/* Nutritional Values Table Box */
.cool-nutrition-box {
  margin-top: 0.75rem;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.cool-nutrition-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fbbf24 !important;
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.cool-nut-badge {
  background: rgba(255, 255, 255, 0.3);
  color: #ffffff !important;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
}

.cool-nutrition-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.35rem 1.4rem;
  font-size: 0.78rem;
}

.cool-nut-row {
  display: flex;
  justify-content: space-between;
  color: #ffffff !important;
  padding: 0.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 600;
}

.cool-nut-row span {
  color: #ffffff !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.cool-nut-row strong {
  color: #ffffff !important;
  font-weight: 800;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.cool-nutrition-footer {
  margin-top: 0.55rem;
  padding-top: 0.4rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
  font-size: 0.74rem;
  font-weight: 700;
  color: #4ade80;
  text-align: center;
  letter-spacing: 0.02em;
}

.cool-detail-highlights {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cool-highlight {
  font-size: 0.825rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  color: var(--white);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cool-roster-tag {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
  white-space: nowrap;
}

/* Mobile & Touch Ergonomic Optimization (< 900px) */
@media (max-width: 900px) {
  .cool-roster-frame,
  .nektar-roster-frame {
    padding: 8px;
    border-radius: var(--radius-lg);
  }

  .cool-roster,
  .nektar-roster {
    display: flex;
    flex-direction: row;
    height: 380px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: none; /* Serbest, akıcı ve özgür kaydırma */
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 10px;
    touch-action: pan-y pan-x; /* Sayfanın yukarı/aşağı doğal akışta kaydırılmasına tam izin verir */
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
  }

  /* Custom subtle scrollbar for mobile carousel */
  .cool-roster::-webkit-scrollbar,
  .nektar-roster::-webkit-scrollbar {
    height: 4px;
  }
  .cool-roster::-webkit-scrollbar-thumb,
  .nektar-roster::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 4px;
  }

  .cool-roster-slice,
  .nektar-roster-slice {
    flex: 0 0 175px !important;
    min-width: 175px;
    height: 100%;
    border-radius: var(--radius-md);
    border-right: none;
    padding: 1.25rem 0.5rem;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, border-color 0.25s ease;
  }

  /* Disable hover, active and focus bleeding on mobile touch */
  .cool-roster:hover .cool-roster-slice,
  .nektar-roster:hover .nektar-roster-slice,
  .cool-roster-slice:hover,
  .nektar-roster-slice:hover,
  .cool-roster-slice:active,
  .nektar-roster-slice:active,
  .cool-roster-slice:focus,
  .nektar-roster-slice:focus {
    flex: 0 0 175px !important;
    transform: none !important;
  }

  /* Non-centered slices stay strictly dark and subtle */
  .cool-roster-slice:not(.is-centered)::before,
  .nektar-roster-slice:not(.is-centered)::before {
    opacity: 0.12 !important;
  }

  .cool-roster-slice:not(.is-centered),
  .nektar-roster-slice:not(.is-centered) {
    border-color: rgba(255, 255, 255, 0.12) !important;
    box-shadow: none !important;
  }

  .cool-roster-slice:not(.is-centered) .cool-roster-img,
  .nektar-roster-slice:not(.is-centered) .nektar-roster-img {
    transform: none !important;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.55)) !important;
  }

  .cool-roster-slice:not(.is-centered) .cool-roster-badge,
  .nektar-roster-slice:not(.is-centered) .nektar-roster-badge {
    background: rgba(255, 255, 255, 0.12) !important;
    color: rgba(255, 255, 255, 0.85) !important;
  }

  /* ONLY the ONE Centered Slice Glows Vibrant */
  .cool-roster-slice.is-centered::before,
  .nektar-roster-slice.is-centered::before {
    opacity: 0.96 !important;
  }

  .cool-roster-slice.is-centered,
  .nektar-roster-slice.is-centered {
    border-color: rgba(255, 255, 255, 0.55) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 25px rgba(255, 255, 255, 0.15) !important;
  }

  .cool-roster-slice.is-centered .cool-roster-img,
  .nektar-roster-slice.is-centered .nektar-roster-img {
    transform: translateY(-8px) scale(1.1) rotate(2deg) translateZ(0) !important;
    filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.75)) !important;
  }

  .cool-roster-slice.is-centered .cool-roster-badge,
  .nektar-roster-slice.is-centered .nektar-roster-badge {
    background: var(--white) !important;
    color: #090d16 !important;
  }

  .cool-roster-visual,
  .nektar-roster-visual {
    height: 200px;
    margin-top: 0.5rem;
  }

  .cool-roster-img,
  .nektar-roster-img {
    max-height: 180px;
    max-width: 100px;
  }

  /* Mobile Detail Mode (Expanded Card) - Fit content height 100% perfectly with zero dark overflow */
  .cool-roster-frame.is-expanded,
  .nektar-roster-frame.is-expanded {
    height: auto !important;
    min-height: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    border: none !important;
  }

  .cool-roster-frame.is-expanded .cool-roster,
  .nektar-roster-frame.is-expanded .nektar-roster {
    display: block !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    padding: 0 !important;
    background: transparent !important;
  }

  /* Completely hide all non-active slices so they occupy 0px */
  .cool-roster-frame.is-expanded .cool-roster-slice:not(.is-active),
  .nektar-roster-frame.is-expanded .nektar-roster-slice:not(.is-active) {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .cool-roster-slice.is-active,
  .nektar-roster-slice.is-active {
    display: block !important;
    flex: none !important;
    width: 100% !important;
    min-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: 2.2rem 1rem 1rem !important;
    border-radius: var(--radius-lg);
  }

  .cool-roster-slice.is-active .cool-roster-visual,
  .nektar-roster-slice.is-active .nektar-roster-visual {
    width: 100%;
    min-width: 100%;
    height: 140px;
    margin-top: 0;
  }

  .cool-roster-slice.is-active .cool-roster-img,
  .nektar-roster-slice.is-active .nektar-roster-img {
    max-height: 135px !important;
    max-width: 85px !important;
    transform: translateY(0) scale(1) rotate(0deg) translateZ(0) !important;
  }

  .cool-roster-detail,
  .nektar-roster-detail {
    padding-left: 0 !important;
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-top: 0.35rem;
    transform: translateY(20px) translateZ(0);
  }

  .cool-roster-slice.is-active .cool-roster-detail,
  .nektar-roster-slice.is-active .nektar-roster-detail {
    transform: translateY(0) translateZ(0);
  }

  .cool-detail-title,
  .nektar-detail-title {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 0.1rem;
  }

  .cool-detail-subtitle,
  .nektar-detail-subtitle {
    font-size: 0.82rem;
    text-align: center;
    margin-bottom: 0.35rem;
  }

  .cool-detail-desc,
  .nektar-detail-desc {
    font-size: 0.78rem;
    line-height: 1.45;
    text-align: center;
    margin: 0 auto 0.4rem auto;
    max-width: 100%;
  }

  .cool-nutrition-box,
  .nektar-nutrition-box {
    margin: 0.4rem auto 0 auto;
    padding: 0.5rem 0.75rem;
    max-width: 100%;
  }

  .cool-nutrition-header,
  .nektar-nutrition-header {
    font-size: 0.7rem;
    margin-bottom: 0.3rem;
    padding-bottom: 0.25rem;
  }

  .cool-nutrition-grid,
  .nektar-nutrition-grid {
    grid-template-columns: 1fr;
    gap: 0.15rem;
    font-size: 0.7rem;
  }

  .cool-nut-row,
  .nektar-nut-row {
    padding: 0.1rem 0;
  }

  .cool-nutrition-footer,
  .nektar-nutrition-footer {
    margin-top: 0.35rem;
    padding-top: 0.25rem;
    font-size: 0.68rem;
  }

  .cool-roster-back,
  .nektar-roster-back {
    top: 10px;
    right: 10px;
    padding: 0.32rem 0.75rem;
    font-size: 0.7rem;
    gap: 5px;
  }

  .cool-roster-back svg,
  .nektar-roster-back svg {
    width: 12px;
    height: 12px;
  }

  /* Mobile Section Headers & Banners */
  .nektar-family,
  .cool-family {
    padding: 2.75rem 0 !important;
  }

  .nektar-family .section-header,
  .cool-family .section-header {
    margin-bottom: 1.65rem !important;
    text-align: center;
  }

  .nektar-family .section-eyebrow,
  .cool-family .section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 0.28rem 0.85rem;
    border-radius: var(--radius-full);
    background: rgba(212, 135, 14, 0.14);
    color: #b45309;
    margin-bottom: 0.5rem;
  }

  .cool-family .section-eyebrow {
    background: rgba(14, 165, 233, 0.14);
    color: #0369a1;
  }

  .nektar-family .section-title,
  .cool-family .section-title {
    font-size: clamp(1.75rem, 6vw, 2.25rem) !important;
    line-height: 1.15;
    margin-bottom: 0.4rem;
  }

  .nektar-family .section-desc,
  .cool-family .section-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 95%;
  }

  .nektar-banner,
  .cool-banner {
    padding: 1.35rem 1.1rem !important;
    border-radius: var(--radius-lg) !important;
    margin-bottom: 1.25rem !important;
  }

  .nektar-banner-title,
  .cool-banner-title {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem) !important;
    line-height: 1.25 !important;
    margin-bottom: 0.45rem !important;
    text-align: left;
  }

  .nektar-banner-desc,
  .cool-banner-desc {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1rem !important;
    text-align: left;
  }

  .nektar-mix-steps,
  .cool-mix-steps {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.45rem !important;
    padding: 0.65rem !important;
    border-radius: var(--radius-md) !important;
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .nektar-step-arrow,
  .cool-step-arrow {
    display: none !important;
  }

  .nektar-step,
  .cool-step {
    display: flex !important;
    align-items: center !important;
    gap: 0.65rem !important;
    padding: 0.5rem 0.75rem !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: var(--radius-sm) !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
  }

  .nektar-step-num,
  .cool-step-num {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    border-radius: 50% !important;
    font-size: 0.75rem !important;
    font-weight: 900 !important;
  }

  /* Universal 120 FPS Mobile Performance Engine — Eliminates Scroll Lag & Stutter */
  *,
  *::before,
  *::after {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    will-change: auto !important;
  }

  .values,
  .sustainability,
  .footer {
    content-visibility: auto;
    contain-intrinsic-size: 500px;
  }
}

.cool-card-desc {
  font-size: var(--text-small);
  color: var(--stone);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .cool-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }

  .product-card:nth-child(even),
  .product-card.fade-in.visible:nth-child(even) {
    transform: translateY(2.5rem);
  }

  .values-grid {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
  }
}

/* ============================================
   FOCUS STYLES — Accessibility
   ============================================ */
:focus-visible {
  outline: 2px solid var(--green-deep);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Refine focus ring for specific interactive elements */
.btn:focus-visible {
  outline-offset: 4px;
}

.nav-link:focus-visible,
.footer-col a:focus-visible {
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.footer-social a:focus-visible {
  outline-offset: 3px;
}

/* Remove default outline for non-keyboard focus */
:focus:not(:focus-visible) {
  outline: none;
}
