/* ============================================================
   GuiltFree — Premium Healthy Indian Snacks
   style.css — Complete Design System
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap');

/* ============================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
  /* Brand Colors */
  --emerald:       #005F56;
  --emerald-dark:  #004540;
  --emerald-light: #007A6E;
  --orange:        #F7931E;
  --orange-dark:   #E07B10;
  --orange-light:  #FFA94D;
  --cream:         #F8F1E7;
  --cream-dark:    #EFE4D0;
  --cream-light:   #FDF9F4;
  --white:         #FFFFFF;
  --text-dark:     #1A1A1A;
  --text-mid:      #3D3D3D;
  --text-muted:    #7A7A7A;
  --text-light:    #A8A8A8;

  /* Gradients */
  --grad-hero:     linear-gradient(135deg, #F8F1E7 0%, #FDF9F4 50%, #E8F4F2 100%);
  --grad-emerald:  linear-gradient(135deg, #005F56, #007A6E);
  --grad-orange:   linear-gradient(135deg, #F7931E, #FFA94D);
  --grad-card:     linear-gradient(145deg, #ffffff, #f8f4ef);
  --grad-dark:     linear-gradient(135deg, #004540, #005F56);

  /* Shadows */
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.14);
  --shadow-xl:     0 30px 90px rgba(0,0,0,0.18);
  --shadow-green:  0 12px 40px rgba(0,95,86,0.25);
  --shadow-orange: 0 12px 40px rgba(247,147,30,0.30);

  /* Typography */
  --font-serif:    'Playfair Display', serif;
  --font-display:  'DM Serif Display', serif;
  --font-sans:     'Inter', sans-serif;

  /* Spacing */
  --section-py:    100px;
  --container-max: 1280px;
  --container-px:  clamp(20px, 5vw, 80px);

  /* Border Radius */
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast:   all 0.2s cubic-bezier(0.4,0,0.2,1);
  --transition-med:    all 0.35s cubic-bezier(0.4,0,0.2,1);
  --transition-slow:   all 0.55s cubic-bezier(0.4,0,0.2,1);
  --transition-spring: all 0.45s cubic-bezier(0.34,1.56,0.64,1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul { list-style: none; }

/* ============================================================
   3. UTILITIES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section-py {
  padding: var(--section-py) 0;
}

.text-center { text-align: center; }

/* Section Label */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--orange);
  border-radius: 2px;
}

/* Section Heading */
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-heading span {
  color: var(--emerald);
}

.section-subheading {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition-med);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--transition-fast);
}

.btn:hover::after {
  background: rgba(255,255,255,0.1);
}

.btn-primary {
  background: var(--grad-emerald);
  color: var(--white);
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(0,95,86,0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--emerald);
  border: 2px solid var(--emerald);
}

.btn-secondary:hover {
  background: var(--emerald);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-orange {
  background: var(--grad-orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(247,147,30,0.40);
}

.btn-white {
  background: var(--white);
  color: var(--emerald);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

/* ============================================================
   5. NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-med);
}

#navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--grad-emerald);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-green);
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--emerald);
  letter-spacing: -0.5px;
}

.nav-logo-tagline {
  font-size: 10px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--emerald);
  background: rgba(0,95,86,0.08);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--emerald);
  border-radius: 2px;
  transition: var(--transition-med);
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(248,241,231,0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px;
  transform: translateX(100%);
  transition: var(--transition-slow);
}

.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--emerald);
  text-align: center;
  transition: var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--orange);
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 28px;
  cursor: pointer;
  color: var(--emerald);
  padding: 8px;
}

/* ============================================================
   6. HERO SECTION
   ============================================================ */
#hero {
  min-height: 100vh;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

/* Background decorative shapes */
.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-bg-shape-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(0,95,86,0.08) 0%, transparent 70%);
}

.hero-bg-shape-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(247,147,30,0.10) 0%, transparent 70%);
}

.hero-bg-shape-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 40%;
  background: radial-gradient(circle, rgba(0,95,86,0.05) 0%, transparent 70%);
}

/* Organic blob shapes */
.hero-blob {
  position: absolute;
  pointer-events: none;
  opacity: 0.15;
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  top: -50px;
  right: 5%;
  background: var(--emerald);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  animation: morphBlob1 12s ease-in-out infinite;
}

.hero-blob-2 {
  width: 300px;
  height: 300px;
  bottom: 10%;
  left: 5%;
  background: var(--orange);
  border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
  animation: morphBlob2 10s ease-in-out infinite;
}

@keyframes morphBlob1 {
  0%, 100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  33%       { border-radius: 40% 60% 30% 70% / 40% 50% 60% 50%; }
  66%       { border-radius: 70% 30% 50% 50% / 60% 40% 50% 40%; }
}

@keyframes morphBlob2 {
  0%, 100% { border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%; }
  33%       { border-radius: 60% 40% 70% 30% / 40% 60% 40% 60%; }
  66%       { border-radius: 30% 70% 50% 50% / 50% 50% 60% 40%; }
}

/* Floating ingredient icons */
.hero-float-icon {
  position: absolute;
  pointer-events: none;
  font-size: 32px;
  animation: floatIcon 6s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

.hero-float-icon:nth-child(1) { top: 15%; left: 8%;  animation-delay: 0s;    animation-duration: 7s; }
.hero-float-icon:nth-child(2) { top: 70%; left: 4%;  animation-delay: 1s;    animation-duration: 8s; }
.hero-float-icon:nth-child(3) { top: 25%; right: 48%; animation-delay: 2s;   animation-duration: 6s; font-size: 24px; }
.hero-float-icon:nth-child(4) { bottom: 20%; right: 48%; animation-delay: 0.5s; animation-duration: 9s; }
.hero-float-icon:nth-child(5) { top: 10%; right: 6%;  animation-delay: 1.5s; animation-duration: 7.5s; font-size: 28px; }

@keyframes floatIcon {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-16px) rotate(5deg); }
  66%       { transform: translateY(8px) rotate(-5deg); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  width: 100%;
}

/* Hero Left */
.hero-left {
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,95,86,0.10);
  border: 1px solid rgba(0,95,86,0.20);
  color: var(--emerald);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
}

.hero-badge span { font-size: 16px; }

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-heading em {
  font-style: italic;
  color: var(--emerald);
}

.hero-subheading {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
}

.trust-icon {
  width: 32px;
  height: 32px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Hero Right */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  min-height: 520px;
}

.hero-product-card {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-img-main {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  animation: heroImgFloat 7s ease-in-out infinite;
  object-fit: cover;
  aspect-ratio: 1;
}

@keyframes heroImgFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}

/* Floating product badges */
.hero-float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatBadge 6s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

.hero-float-badge-1 {
  top: -20px;
  left: -30px;
  animation-delay: 0s;
}

.hero-float-badge-2 {
  bottom: 40px;
  right: -30px;
  animation-delay: 1.5s;
}

.hero-float-badge-3 {
  bottom: -20px;
  left: 20px;
  animation-delay: 0.8s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-8px) rotate(1deg); }
  66%       { transform: translateY(4px) rotate(-1deg); }
}

.badge-icon { font-size: 28px; flex-shrink: 0; }

.badge-content { line-height: 1.2; }

.badge-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

.badge-sub {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.hero-scroll span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-wheel {
  width: 26px;
  height: 42px;
  border: 2px solid var(--emerald);
  border-radius: 13px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--emerald);
  border-radius: 2px;
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%, 100% { transform: translateY(0); opacity: 1; }
  70%       { transform: translateY(14px); opacity: 0; }
  71%       { transform: translateY(0); opacity: 0; }
}

/* ============================================================
   7. WHY GUILTFREE SECTION
   ============================================================ */
#why {
  background: var(--white);
  padding: var(--section-py) 0;
}

.why-header {
  text-align: center;
  margin-bottom: 64px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(0,95,86,0.08);
  transition: var(--transition-spring);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-emerald);
  transform: scaleX(0);
  transition: var(--transition-med);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.why-card:hover::before { transform: scaleX(1); }

.why-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--grad-emerald);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: var(--shadow-green);
  transition: var(--transition-spring);
}

.why-card:hover .why-card-icon {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 18px 40px rgba(0,95,86,0.30);
}

.why-card-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.why-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.why-card-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--emerald);
  letter-spacing: 0.5px;
}

/* ============================================================
   8. BEST SELLERS SECTION
   ============================================================ */
#products {
  background: var(--cream);
  padding: var(--section-py) 0;
}

.products-header {
  text-align: center;
  margin-bottom: 64px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-spring);
  position: relative;
  border: 1px solid rgba(0,0,0,0.04);
}

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

.product-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream);
}

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

.product-card:hover .product-card-img-wrap img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--grad-emerald);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-green);
  z-index: 1;
}

.product-nutrition-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--grad-orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  z-index: 1;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,95,86,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition-med);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay-btn {
  width: 100%;
  padding: 12px;
  background: var(--white);
  color: var(--emerald);
  border: none;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.product-overlay-btn:hover {
  background: var(--orange);
  color: var(--white);
}

.product-card-body {
  padding: 24px;
}

.product-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.product-price-main {
  font-size: 20px;
  font-weight: 800;
  color: var(--emerald);
}

.product-price-size {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.product-add-btn {
  width: 40px;
  height: 40px;
  background: var(--grad-emerald);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-green);
  transition: var(--transition-spring);
}

.product-add-btn:hover {
  transform: scale(1.15) rotate(90deg);
  box-shadow: 0 12px 30px rgba(0,95,86,0.35);
}

.product-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.star { color: #FFB800; font-size: 13px; }

.product-rating-count {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 4px;
}

/* ============================================================
   9. INGREDIENTS STORY SECTION
   ============================================================ */
#story {
  background: var(--white);
  padding: var(--section-py) 0;
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
}

.story-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.story-img-wrap:hover img {
  transform: scale(1.05);
}

.story-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: var(--grad-orange);
  border-radius: 50%;
  opacity: 0.18;
  pointer-events: none;
}

.story-stats-card {
  position: absolute;
  bottom: 28px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 160px;
}

.story-stats-number {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 800;
  color: var(--emerald);
  line-height: 1;
}

.story-stats-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.story-content .section-label { margin-bottom: 20px; }

.story-heading {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.story-heading em {
  font-style: italic;
  color: var(--emerald);
}

.story-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.story-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.ingredient-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1px solid rgba(0,95,86,0.12);
  color: var(--emerald);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: var(--transition-spring);
}

.ingredient-chip:hover {
  background: var(--emerald);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.ingredient-chip span { font-size: 16px; }

.story-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: var(--transition-med);
}

.story-pillar:hover {
  background: var(--cream-light);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,95,86,0.10);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: var(--transition-spring);
}

.story-pillar:hover .pillar-icon {
  background: var(--emerald);
  transform: scale(1.1);
}

.pillar-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.pillar-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   10. CATEGORIES SECTION
   ============================================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--emerald);
  border: 2px solid var(--emerald);
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-spring);
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--emerald);
  color: var(--white);
  box-shadow: var(--shadow-green);
}



.benefits-bg-dec {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0.07;
}

.benefits-bg-dec-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
  background: var(--orange);
}

.benefits-bg-dec-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -60px;
  background: var(--cream);
}

.benefits-header {
  text-align: center;
  margin-bottom: 64px;
}

.benefits-header .section-label { color: var(--orange-light); }
.benefits-header .section-label::before,
.benefits-header .section-label::after { background: var(--orange-light); }
.benefits-header .section-heading { color: var(--white); }
.benefits-header .section-heading span { color: var(--orange-light); }
.benefits-header .section-subheading { color: rgba(255,255,255,0.65); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.benefit-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition-spring);
}

.benefit-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-8px);
  border-color: rgba(247,147,30,0.30);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.benefit-icon {
  font-size: 44px;
  margin-bottom: 16px;
  display: block;
  transition: var(--transition-spring);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.2);
}

.benefit-counter {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 800;
  color: var(--orange-light);
  margin-bottom: 6px;
  line-height: 1;
}

.benefit-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.benefit-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}

/* ============================================================
   11. TESTIMONIALS SECTION
   ============================================================ */
#testimonials {
  background: var(--cream-light);
  padding: var(--section-py) 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 28px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: calc(33.33% - 19px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-med);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 32px;
  font-family: var(--font-serif);
  font-size: 80px;
  color: rgba(0,95,86,0.10);
  line-height: 1;
  pointer-events: none;
}

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

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.testimonial-stars .star { font-size: 16px; }

.testimonial-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--grad-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-serif);
  flex-shrink: 0;
  box-shadow: var(--shadow-green);
}

.testimonial-author-info { line-height: 1.3; }

.testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(0,95,86,0.15);
  color: var(--emerald);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-spring);
  box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
  background: var(--emerald);
  color: var(--white);
  border-color: var(--emerald);
  transform: scale(1.1);
  box-shadow: var(--shadow-green);
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,95,86,0.20);
  cursor: pointer;
  transition: var(--transition-med);
}

.slider-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--emerald);
}

/* ============================================================
   12. FEATURED IN SECTION
   ============================================================ */
#featured {
  background: var(--white);
  padding: 64px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.featured-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 40px;
}

.marquee-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 64px;
  animation: marqueeScroll 20s linear infinite;
  width: max-content;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.media-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  opacity: 0.45;
  transition: var(--transition-med);
  cursor: default;
  padding: 12px 24px;
  border-radius: var(--radius-md);
}

.media-logo:hover {
  opacity: 0.85;
  background: var(--cream);
}

.media-logo-icon {
  font-size: 28px;
}

.media-logo-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

/* ============================================================
   13. FAQ SECTION
   ============================================================ */
#faq {
  background: var(--cream-light);
  padding: var(--section-py) 0;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.faq-left .section-heading { margin-bottom: 20px; }

.faq-left p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
}

.faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.08); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition-fast);
  gap: 16px;
  user-select: none;
}

.faq-question:hover { color: var(--emerald); }

.faq-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: rgba(0,95,86,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--emerald);
  transition: var(--transition-spring);
}

.faq-item.open .faq-icon {
  background: var(--emerald);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
}

.faq-answer p {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   14. NEWSLETTER SECTION
   ============================================================ */
#newsletter {
  background: var(--grad-emerald);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.newsletter-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.newsletter-bg::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  top: -150px;
  right: -100px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.newsletter-bg::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -60px;
  background: rgba(247,147,30,0.15);
  border-radius: 50%;
}

.newsletter-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-emoji {
  font-size: 52px;
  margin-bottom: 20px;
  display: block;
  animation: bounceEmoji 3s ease-in-out infinite;
}

@keyframes bounceEmoji {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.newsletter-inner .section-heading {
  color: var(--white);
  margin-bottom: 12px;
}

.newsletter-inner .section-heading span {
  color: var(--orange-light);
}

.newsletter-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.6;
}

/* Screen-reader only utility — hides visually but keeps accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.newsletter-form {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 24px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.22);
}

.newsletter-form input {
  flex: 1;
  height: 56px;
  padding: 0 24px;
  border: none;
  outline: none;
  background: #fff;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-dark);
  line-height: 56px;
  box-sizing: border-box;
}

.newsletter-form input::placeholder {
  line-height: normal;
  opacity: 0.6;
  color: var(--text-light);
}

.newsletter-btn {
  flex-shrink: 0;
  height: 56px;
  padding: 0 28px;
  background: var(--grad-orange);
  color: var(--white);
  border: none;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.newsletter-btn:hover {
  background: linear-gradient(135deg, #E07B10, #F7931E);
  filter: brightness(1.08);
}

.newsletter-note {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   15. FOOTER
   ============================================================ */
#footer {
  background: #0D1F1D;
  padding: 80px 0 32px;
  color: rgba(255,255,255,0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-brand .nav-logo-name { color: var(--white); }
.footer-brand .nav-logo-tagline { color: var(--orange-light); }

.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.50);
  line-height: 1.75;
  margin: 20px 0 28px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition-spring);
  color: rgba(255,255,255,0.60);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-green);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.50);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--orange-light);
  transform: translateX(4px);
  display: inline-block;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item span:first-child {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.30);
}

.footer-copy span { color: var(--orange-light); }

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.30);
  transition: var(--transition-fast);
}

.footer-legal a:hover { color: rgba(255,255,255,0.70); }

/* ============================================================
   16. COOKIE TOAST
   ============================================================ */
.cookie-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 420px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transform: translateY(120%);
  transition: var(--transition-slow);
  border-left: 4px solid var(--emerald);
}

.cookie-toast.show { transform: translateY(0); }

.cookie-toast-icon { font-size: 28px; flex-shrink: 0; }

.cookie-toast-text { flex: 1; }

.cookie-toast-text p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.cookie-toast-text strong {
  color: var(--text-dark);
  font-weight: 700;
}

.cookie-toast-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.cookie-accept, .cookie-decline {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
}

.cookie-accept {
  background: var(--emerald);
  color: var(--white);
}

.cookie-accept:hover { background: var(--emerald-dark); }

.cookie-decline {
  background: var(--cream);
  color: var(--text-muted);
}

.cookie-decline:hover { background: var(--cream-dark); }

/* ============================================================
   17. BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--grad-emerald);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-green);
  transition: var(--transition-spring);
  opacity: 0;
  pointer-events: none;
  z-index: 500;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 16px 40px rgba(0,95,86,0.40);
}

/* ============================================================
   18. RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
  .hero-right { order: -1; min-height: auto; }
  .hero-img-main { max-height: 400px; object-fit: cover; border-radius: var(--radius-lg); }
  .hero-float-badge-1 { top: -10px; left: -10px; padding: 10px 14px; }
  .hero-float-badge-2 { bottom: 20px; right: -10px; padding: 10px 14px; }
  .hero-float-badge-3 { display: none; }
  .story-inner { grid-template-columns: 1fr; gap: 40px; }
  .story-img-wrap { aspect-ratio: 16/9; }
  .story-stats-card { right: 16px; bottom: 16px; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-card { padding: 28px 20px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 50px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  /* Mobile: stack vertically, each element gets its own pill shape */
  .newsletter-form {
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: visible;
    background: transparent;
    box-shadow: none;
    gap: 12px;
  }
  .newsletter-form input {
    border-radius: 999px;
    height: 56px;
    padding: 0 22px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.14);
    width: 100%;
  }
  .newsletter-btn {
    border-radius: 999px;
    padding: 0 28px;
    width: 100%;
    height: 56px;
    box-shadow: 0 4px 20px rgba(247,147,30,0.35);
  }
  .hero-heading { font-size: clamp(28px, 7vw, 40px); }
}

@media (max-width: 480px) {
  :root { --section-py: 48px; }
  .why-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-trust { gap: 12px; }
  .section-heading { font-size: clamp(26px, 7vw, 36px); }
  .hero-float-badge-1, .hero-float-badge-2 { display: none; }
}
