/* style.css - OWKAR Handheld Vacuum Sealer Homepage Custom Stylesheet */

/* --- Fonts & Base Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Dancing+Script:wght@600;700&display=swap');

:root {
  /* Color System */
  --primary: #2E4303;
  --primary-rgb: 46, 67, 3;
  --secondary: #A7CA3B;
  --secondary-rgb: 167, 202, 59;
  --third: #EEF8E8;
  --third-rgb: 238, 248, 232;
  
  --dark-bg: #1A2802;
  --darker-bg: #0F1801;
  --light-bg: #EEF8E8;
  --card-dark: rgba(238, 248, 232, 0.05);
  --card-border: rgba(238, 248, 232, 0.12);
  --card-shadow: 0 10px 30px -10px rgba(15, 24, 1, 0.3);
  
  /* Typography */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout */
  --container-max: 1800px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Header Height */
  --header-height: 80px;
}

/* --- Reset & Global Styling --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  background-color: var(--dark-bg);
  color: var(--third);
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background: var(--dark-bg);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--darker-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border: 2px solid var(--darker-bg);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.2;
  color: var(--third);
}

p {
  color: rgba(238, 248, 232, 0.8);
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

/* --- Layout Elements & Reusable Classes --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-title span {
  color: var(--secondary);
}

.section-desc {
  font-size: 1.125rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  gap: 8px;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--primary);
  box-shadow: none; /* Removed shadow */
}

.btn-primary:hover {
  background-color: #bce44a;
  transform: none; /* Flat styling, no lifting/scaling */
  box-shadow: none;
}

.btn-secondary {
  background-color: var(--third); /* Off-white background */
  color: var(--primary); /* Dark green text for readability */
  border: none;
  box-shadow: none; /* Removed shadow */
}

.btn-secondary:hover {
  background-color: #e2edd9; /* Slightly darker off-white */
  color: var(--primary);
  transform: none; /* Flat styling, no lifting/scaling */
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

/* Glow Backdrops */
.glow-bg {
  position: absolute;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 202, 59, 0.15) 0%, rgba(167, 202, 59, 0) 70%);
  z-index: 0;
  pointer-events: none;
  filter: blur(80px);
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--card-dark);
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  padding: 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(238, 248, 232, 0.05) 0%, rgba(238, 248, 232, 0) 100%);
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(167, 202, 59, 0.3);
}

/* --- Announcement Bar --- */
.announcement-bar {
  background-color: var(--secondary);
  color: var(--primary);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 150;
  position: relative;
  overflow: hidden;
}

.announcement-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.announcement-container p {
  color: var(--primary);
  font-weight: 700;
}

/* --- Floating Header (No Background) --- */
.header {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  font-family: var(--font-headings);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--third);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--secondary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.action-icon {
  color: var(--third);
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  /* border-radius: var(--radius-full);
  background: rgba(238, 248, 232, 0.06);
  border: 1px solid rgba(238, 248, 232, 0.1); */
  background-color: transparent;
  border: none;
  outline: none;
}

.action-icon:hover {
  color: var(--secondary);
  /* background: rgba(167, 202, 59, 0.1);
  border-color: var(--secondary); */
  transform: translateY(-2px);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--secondary);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--dark-bg);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  /* min-height: 100vh; */
  display: flex;
  align-items: flex-start; /* Aligns elements to the top of the section */
  padding-top: calc(var(--header-height) + 60px); /* Top padding offset for transparent header */
  padding-bottom: 163px;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(167, 202, 59, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(46, 67, 3, 0.4) 0%, transparent 60%),
              var(--darker-bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr; /* Shifted ratio to stretch left content closer to center */
  gap: 60px;
  align-items: flex-start; /* Aligns contents to grid top */
}

.hero-content {
  z-index: 10;
  position: relative;
}
.hero-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  /* background: rgba(238, 248, 232, 0.03);
  border: 1px solid rgba(238, 248, 232, 0.08); */
  padding: 10px 0px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
}

.hero-rating-badge .rating-stars {
  display: flex;
  gap: 4px;
  color: var(--secondary);
}

.hero-rating-badge .rating-stars svg {
  width: 18px;
  height: 18px;
}

.hero-rating-badge .rating-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(238, 248, 232, 0.95);
  font-family: var(--font-body);
}

.hero-rating-badge .rating-text span {
  color: var(--secondary);
  font-weight: 700;
}

.hero-title {
  font-size: 5.5rem; /* Increased size to cover to the middle */
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.05;
}

.hero-title span {
  /* display: block; */
  color: var(--secondary);
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 36px;
  line-height: 1.6;
  max-width: 620px; /* Extended width to balance grid scale */
}

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

/* Larger CTA buttons specific to Hero */
.hero-ctas .btn {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.hero-trust-list {
  display: flex;
  gap: 24px;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(238, 248, 232, 0.8);
}

.trust-item svg {
  color: var(--secondary);
  width: 18px;
  height: 18px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrapper {
  position: relative;
  overflow: visible;
  /* Removed float animation from wrapper so children float independently */
}

.hero-img-wrapper.collage-layout {
  width: 100%;
  height: 485px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  right: 70px; /* Shifted left to balance layout and make room for right-side callouts */
}

.hero-collage-img {
  position: absolute;
  object-fit: contain;
  transition: var(--transition);
}

.collage-sealer {
  z-index: 3;
  height: 500px;
  width: auto;
  bottom: 0;
  left: 127px;
  transform: translateX(-50%);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
  animation: float-sealer 6s ease-in-out infinite alternate;
  top: 0;
}

.collage-bag {
  z-index: 2;
  height: 310px;
  width: auto;
  bottom: 61px;
  left: -180px;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.35));
  animation: float-bag 5s ease-in-out infinite alternate 0.5s;
}

.collage-container {
  z-index: 2;
  height: 235px;
  width: auto;
  bottom: 15px;
  left: 155px;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.35));
  animation: float-container 6.5s ease-in-out infinite alternate 1.2s;
}

.collage-clip {
  z-index: 4;
  height: 110px;
  width: auto;
  transform: rotate(-15deg);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  animation: float-clip 4.8s ease-in-out infinite alternate 1.8s;
  top: 78px;
}

/* Custom Independent Floating Keyframe Animations */
@keyframes float-sealer {
  0% { transform: translateX(-50%) translateY(0); }
  100% { transform: translateX(-50%) translateY(-12px); }
}

@keyframes float-bag {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-8px) rotate(1deg); }
}

@keyframes float-container {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-10px) rotate(-1.2deg); }
}

@keyframes float-clip {
  0% { transform: rotate(-15deg) translateY(0); }
  100% { transform: rotate(-11deg) translateY(-14px); }
}

.hero-callout {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 24, 1, 0.85);
  border: 1px solid rgba(167, 202, 59, 0.25);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 8px 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  z-index: 10;
  pointer-events: none;
}

.callout-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.callout-icon svg {
  width: 14px;
  height: 14px;
}

.callout-text h4 {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.callout-text p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 2px 0 0 0;
}

.dash-line {
  position: absolute;
  border-bottom: 1.5px dashed var(--secondary);
  pointer-events: none;
}

/* Callout 1: Sealer (Top Left) */
.callout-sealer {
  top: 10px;
  left: 300px;
}

.line-sealer {
  width: 167px;
  left: -168px;
  top: 50%;
  /* transform: rotate(5deg); */
  transform-origin: left center;
}

/* Callout 2: Reusable Bag (Middle Left) */
.callout-bag {
  top: 180px;
  left: -62%;
}

.line-bag {
  width: 110px;
  right: -110px;
  top: 50%;
  /* transform: rotate(10deg); */
  transform-origin: left center;
}

/* Callout 3: Glass Container (Middle Right) */
.callout-container {
  bottom: 36px;
  right: -23px;
}

.line-container {
  width: 90px;
  left: -90px;
  top: 50%;
  /* transform: rotate(-10deg); */
  transform-origin: right center;
}

/* Callout 4: Sealer Clip (Bottom Left) */
.callout-clip {
  top: 106px;
  right: -27px;
}

.line-clip {
  width: 140px;
  left: -140px;
  top: 50%;
  /* transform: rotate(15deg); */
  transform-origin: left center;
}


/* --- Hero Promo Ticker --- */
.hero-ticker-section {
  background-color: var(--third);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(46, 67, 3, 0.08);
  border-bottom: 1px solid rgba(46, 67, 3, 0.08);
  position: relative;
  z-index: 20;
}

.ticker-wrap {
  overflow: hidden;
  width: 100%;
}

.ticker-track {
  display: flex;
  gap: 70px;
  width: max-content;
  animation: ticker-slide-scroll 30s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-family: var(--font-headings);
  font-weight: 400; /* Set font-weight to 400 for a thin typography aesthetic */
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker-icon {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

@keyframes ticker-slide-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}


/* --- Full-Width Parallax Video Section --- */
.parallax-video-section {
  position: relative;
  height: 750px;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.parallax-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 24, 1, 0.45); /* Soft dark green overlay tint */
  z-index: 2;
  pointer-events: none;
}

.parallax-video-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 140%; /* Taller than viewport to allow vertical translation scroll bounds */
  object-fit: cover;
  transform: translate3d(-50%, -50%, 0);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 768px) {
  .parallax-video-section {
    height: 350px;
  }
}


/* --- Partners Section --- */
.partners-section {
  position: relative;
  /* background: rgba(238, 248, 232, 0.88); */
  background-color: var(--third); /* Light off-white green background */
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 60px 0;
  margin-top: -60px; /* Blend overlap with hero */
  z-index: 20;
  /* border-top: 1px solid rgba(46, 67, 3, 0.05); */
  /* border-bottom: 1px solid rgba(46, 67, 3, 0.05);
  box-shadow: 0 -15px 30px rgba(15, 24, 1, 0.03); */
}

.partners-section .section-title {
  color: var(--primary);
  margin-bottom: 40px;
  text-align: center;
}

/* Full Width Auto Carousel */
.partners-carousel {
  overflow: hidden;
  width: 100%;
  display: flex;
  position: relative;
  padding: 10px 0;
}

.partners-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: logo-scroll 30s linear infinite;
  align-items: center;
}

/* Pause scroll when user hovers */
.partners-carousel:hover .partners-track {
  animation-play-state: paused;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
  user-select: none;
  height: 100px;
  width: 100px;
}

.partner-logo img {
  width: 100%;
  object-fit: contain;
  opacity: 0.65;
  transition: var(--transition);
  filter: brightness(0.9) contrast(1.1);
}

.partner-logo:hover img {
  opacity: 1;
  transform: scale(1.05);
}

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

/* Animations */
@keyframes float-slow {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-15px) rotate(1deg); }
}

@keyframes float-oppose {
  0% { transform: translateY(-10px) scale(1); }
  100% { transform: translateY(10px) scale(0.98); }
}

/* --- Value Propositions (3rd Party Tested) --- */
.value-props {
  background-color: var(--primary); /* Dark green brand color */
  padding: 85px 0;
  color: #ffffff;
}

.value-props .props-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.props-text-block h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 20px;
  font-family: var(--font-headings);
}

.props-text-block p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.props-cards-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 options only */
  gap: 20px;
}

.prop-badge-card {
  /* background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06); */
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  transition: var(--transition);
  width: 150px;
}

.prop-badge-card:hover {
  /* background: rgba(255, 255, 255, 0.05); */
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); */
}

.prop-img-wrapper {
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prop-card-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: var(--transition);
  display: block;
}

.prop-badge-card:hover .prop-card-img {
  transform: scale(1.02);
}
.prop-badge-card p {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  margin: 15px 0 0 0;
  text-align: center;
}
/* --- Products Section --- */
.products-section {
  position: relative;
  background-color: var(--third); /* Light off-white green background */
  padding: 100px 0;
  z-index: 10;
}

.products-section .section-title {
  color: var(--primary); /* Dark green header text */
  margin-bottom: 16px;
  text-align: center;
}

.products-section .section-desc {
  color: rgba(46, 67, 3, 0.8);
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 Columns side by side */
  gap: 24px;
}

.products-section .product-card {
  background: transparent;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.products-section .product-card:hover {
  transform: translateY(-5px);
}

.products-section .product-image-container {
  width: 100%;
  aspect-ratio: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #ffffff; /* Frame images in a clean white container */
  border-radius: var(--radius-md);
  border: 1px solid rgba(46, 67, 3, 0.06);
}

.products-section .product-image-container img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: var(--transition);
}

.products-section .product-card:hover .product-image-container img {
  transform: scale(1.04);
}

.products-section .product-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  align-items: center;
}

.products-section .product-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
}

.products-section .product-brand {
  font-family: var(--font-headings);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(46, 67, 3, 0.4);
  margin-bottom: 12px;
}

.products-section .product-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.products-section .price-current {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-headings);
}

.products-section .price-old {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: rgba(46, 67, 3, 0.4);
}

.products-section .price-save {
  font-size: 0.8rem;
  font-weight: 700;
  color: #d93838;
}

/* Badges */
.products-section .product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  z-index: 5;
}

.products-section .product-badge.sale {
  background-color: #eef8e8;
  color: #2e4303;
  border: 1px solid rgba(46, 67, 3, 0.15);
}

.products-section .product-badge.sold-out {
  background-color: #d93838;
  color: #ffffff;
}

/* Add to Cart button inside the white card */
.products-section .add-to-cart-trigger {
  width: 100%;
  margin-top: auto;
  background-color: var(--primary);
  color: var(--third);
  font-size: 0.85rem;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  font-weight: 700;
  box-shadow: none;
  transition: var(--transition);
}

.products-section .add-to-cart-trigger:hover:not(:disabled) {
  background-color: #405d05;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 67, 3, 0.15);
}

/* --- How It Works Section --- */
.how-it-works {
  background: var(--primary); /* Deep green background matching Grüns */
  position: relative;
  padding: 100px 0;
}

.how-it-works .section-title {
  color: var(--third); /* White-ish headings */
}

.how-it-works .section-desc {
  color: rgba(238, 248, 232, 0.7);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns side by side */
  gap: 30px;
  position: relative;
}

.step-card {
  background-color: #ffffff; /* Solid white background as Grüns */
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  transition: var(--transition);
  height: 600px;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-image-wrapper {
  width: 100%;
  /* height: 250px; */
  overflow: hidden;
  border-radius: 16px;
}

.step-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.step-card:hover .step-image-wrapper img {
  transform: scale(1.04);
}

.step-caption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}

.step-caption h3 {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary); /* Dark olive green brand text */
  margin-bottom: 8px;
}

.step-caption p {
  font-size: 0.95rem;
  color: #555555; /* Neutral dark grey descriptions */
  font-weight: 500;
  margin: 0;
}

/* --- Container Spotlight (A+ Content Inspired) --- */
.spotlight-section {
  background: var(--third);
  color: var(--primary);
}

.spotlight-section h2, 
.spotlight-section h3, 
.spotlight-section h4 {
  color: var(--primary);
}

.spotlight-section p {
  color: rgba(46, 67, 3, 0.85);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: start;
}

.spotlight-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- Spotlight Product Purchase Layout --- */
.product-detail-header-group {
  display: flex;
  flex-direction: column;
  gap: 12px; /* tight, standard spacing */
  margin-bottom: 24px; /* gap between this group and the recommended options */
}

.product-detail-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  margin: 0;
}

.product-detail-rating .stars {
  color: #2b9348; /* Green stars to match rating standard */
  font-size: 1.1rem;
}

.product-detail-rating .rating-num {
  font-weight: 700;
  color: var(--primary);
}

.product-detail-rating .reviews-count {
  color: #666;
}

.product-detail-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin: 0;
}

.product-detail-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.product-detail-price .price-current {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-headings);
}

.product-detail-price .price-old {
  font-size: 1.25rem;
  text-decoration: line-through;
  color: #888;
}

.product-detail-price .discount-badge {
  background-color: var(--secondary);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.product-detail-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(46, 67, 3, 0.85);
  margin: 0;
}

.product-detail-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.95rem;
  color: var(--primary);
  margin: 0;
}

.product-detail-meta p {
  margin: 0;
}

.product-detail-meta .in-stock {
  color: #2b9348;
  font-weight: 700;
}

.product-detail-bullets {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
}

.product-detail-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 600;
}

.product-detail-bullets .checkmark {
  color: #2b9348;
  font-weight: 900;
  font-size: 1.1rem;
}

/* Recommended Options Grid Card style */
.recommended-options {
  margin-bottom: 30px;
}

.recommended-options h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.option-card {
  background: #ffffff;
  border: 1px solid rgba(46, 67, 3, 0.1);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.option-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(46, 67, 3, 0.05);
}

.option-label {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  position: relative;
  width: 100%;
}

.option-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Custom checkbox */
.custom-checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(46, 67, 3, 0.2);
  border-radius: var(--radius-sm);
  display: inline-block;
  position: relative;
  background-color: #fff;
  transition: var(--transition);
  flex-shrink: 0;
}

.option-checkbox:checked + .custom-checkbox {
  background-color: var(--primary);
  border-color: var(--primary);
}

.option-checkbox:checked + .custom-checkbox::after {
  content: '✓';
  position: absolute;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.option-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  background: #fafdf8;
  border-radius: var(--radius-sm);
  padding: 4px;
  flex-shrink: 0;
}

.option-info {
  flex-grow: 1;
}

.option-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.option-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #888;
}

.option-rating .stars {
  color: #2b9348;
  font-size: 0.85rem;
}

.option-price {
  text-align: right;
  flex-shrink: 0;
}

.opt-price-curr {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.opt-price-old {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: #888;
  display: block;
}

/* Purchase Controls */
.purchase-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid rgba(46, 67, 3, 0.1);
  padding-top: 24px;
}

.purchase-controls .quantity-selector {
  display: flex;
  align-items: center;
  gap: 16px;
}

.purchase-controls .qty-label {
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}

.purchase-controls .qty-control-box {
  display: flex;
  align-items: center;
  border: 1px solid rgba(46, 67, 3, 0.15);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: #ffffff;
}

.purchase-controls .qty-btn {
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--primary);
  transition: var(--transition);
}

.purchase-controls .qty-btn:hover {
  background-color: rgba(46, 67, 3, 0.05);
}

.purchase-controls .qty-input {
  border: none;
  border-left: 1px solid rgba(46, 67, 3, 0.15);
  border-right: 1px solid rgba(46, 67, 3, 0.15);
  width: 48px;
  height: 36px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  background: transparent;
}

.purchase-buttons {
  display: flex;
  gap: 16px;
  width: 100%;
}

.purchase-buttons .btn {
  flex: 1;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.spotlight-add-to-cart {
  background-color: var(--secondary);
  color: var(--primary);
}

.spotlight-add-to-cart:hover {
  background-color: #92b230;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(167, 202, 59, 0.3);
}

.spotlight-buy-now {
  background-color: var(--primary);
  color: var(--third);
}

.spotlight-buy-now:hover {
  background-color: #1a2802;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(46, 67, 3, 0.3);
}

.spotlight-visual {
  position: sticky;
  top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.gallery-preview {
  width: 100%;
  aspect-ratio: 1.1;
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(46, 67, 3, 0.08);
  box-shadow: 0 25px 50px rgba(46, 67, 3, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
}

.gallery-preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.15s ease-in-out;
}

.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  width: 100%;
}

.thumb-item {
  aspect-ratio: 1;
  background-color: #ffffff;
  border: 2px solid rgba(46, 67, 3, 0.08);
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4px;
  transition: var(--transition);
}

.thumb-item img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.thumb-item:hover {
  border-color: var(--secondary);
}

.thumb-item.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(46, 67, 3, 0.1);
}

.comparison-chart {
  background: rgba(167, 202, 59, 0.06);
  border: 1px dashed rgba(46, 67, 3, 0.2);
  border-radius: var(--radius-md);
  padding: 20px;
  width: 100%;
  margin-top: 30px;
}

.chart-header {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 16px;
  text-align: center;
}

.chart-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chart-row {
  display: grid;
  grid-template-columns: 120px 1fr 60px;
  align-items: center;
  gap: 12px;
}

.label-cell {
  font-size: 0.85rem;
  font-weight: 700;
}

.bar-cell {
  height: 20px;
  background: rgba(46, 67, 3, 0.06);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
}

.bar-fill.owkar {
  width: 100%;
  background: linear-gradient(to right, var(--primary), var(--secondary));
}

.bar-fill.traditional {
  width: 35%;
  background: #C49F30;
}

.bar-fill.standard {
  width: 15%;
  background: #C45530;
}

.value-cell {
  font-size: 0.85rem;
  font-weight: 800;
  text-align: right;
}

/* --- PDP Trust & Accordions Section --- */
.pdp-trust-accordions {
  margin-top: 30px;
  width: 100%;
  border-top: 1px solid rgba(46, 67, 3, 0.1);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pdp-guarantee-banner {
  background-color: #d8ebd2; /* Soft light green matching Grüns guarantee banner */
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.pdp-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: center;
}

.pdp-trust-badges .badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pdp-trust-badges .badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(46, 67, 3, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
  background-color: #ffffff;
}

.pdp-trust-badges .badge-icon.green-check svg {
  color: #2b9348;
}
.pdp-trust-badges .badge-icon.green-shield svg {
  color: #2b9348;
}
.pdp-trust-badges .badge-icon.green-hsa svg {
  color: #2b9348;
}

.pdp-trust-badges .badge-icon svg {
  width: 20px;
  height: 20px;
}

.pdp-trust-badges .badge-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

/* Accordions */
.pdp-accordions {
  display: flex;
  flex-direction: column;
}

.pdp-acc-item {
  border-bottom: 1px solid rgba(46, 67, 3, 0.15);
}

.pdp-acc-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  cursor: pointer;
  text-align: left;
}

.pdp-acc-trigger .plus-icon {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.pdp-acc-item.active .pdp-acc-trigger .plus-icon {
  transform: rotate(45deg);
}

.pdp-acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0;
}

.pdp-acc-item.active .pdp-acc-content {
  max-height: 200px;
  padding-bottom: 16px;
}

.pdp-acc-content p {
  font-size: 0.925rem;
  line-height: 1.6;
  color: rgba(46, 67, 3, 0.8);
  margin: 0;
}

/* Tastes Like / Preserves Best Section */
.pdp-tastes-like {
  text-align: center;
  margin-top: 10px;
}

.pdp-tastes-like h4 {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.pdp-tastes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pdp-tastes-grid .taste-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pdp-tastes-grid .taste-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background-color: #ffffff;
  border: 1px solid rgba(46, 67, 3, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.pdp-tastes-grid .taste-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
}

/* Packed With / Built With Section */
.pdp-packed-with {
  margin-top: 10px;
}

.pdp-packed-with h4 {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  text-align: center;
}

.pdp-packed-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  margin: 0 auto;
}

.pdp-packed-list .packed-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pdp-packed-list .packed-bullet {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}

.pdp-packed-list .packed-bullet.bullet-veggies {
  background-color: #a7ca3b; /* green */
}
.pdp-packed-list .packed-bullet.bullet-fruits {
  background-color: #e85d04; /* orange-red */
}
.pdp-packed-list .packed-bullet.bullet-minerals {
  background-color: #ffb703; /* yellow */
}

.pdp-packed-list .packed-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

/* --- Redesigned Scroll Parallax Unboxing Section (with Pinning) --- */
.parallax-section {
  background-color: var(--dark-bg);
  position: relative;
  height: 300vh; /* Taller scroll track for unboxing and zoom phases */
}

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

.parallax-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding-top: 60px;
}

.parallax-wrapper {
  position: relative;
  height: 520px; /* Compact wrapper height for exact viewport alignment */
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.parallax-box {
  position: relative;
  z-index: 5;
  height: 300px; /* Reduced box height */
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  pointer-events: none;
  margin-bottom: -20px; /* Pulls box flush, eliminating blank bottom pixels */
}

.parallax-box-cap {
  position: absolute;
  z-index: 3; /* Placed BEHIND the product (z-index 4) but sits on top of the box body */
  height: auto;
  width: auto;
  max-height: 295px; /* Set max height constraint */
  object-fit: contain;
  bottom: 280px; /* Adjusted to align with the top edge of the smaller box */
  pointer-events: none;
}

.parallax-sealer-window {
  position: absolute;
  bottom: 70px; /* Adjusted to match top opening of the smaller box */
  left: 0;
  right: 0;
  top: -350px; /* Extended boundary upward to allow full unboxing zoom without top clipping */
  overflow: hidden; /* Clips the lower part of the sealer */
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
  z-index: 4; /* Sits in front of the cap (z-index 3) but behind box body (z-index 5) */
}

.parallax-sealer {
  position: relative;
  z-index: 2;
  height: auto;
  width: 140px; /* Wider width to fill the box top opening closely but not fully */
  object-fit: contain;
  transform: translateY(220px); /* Taller graphic starts lower */
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
  pointer-events: none;
}

/* Side Elements Slide-in Styling */
.side-element {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  bottom: 80px;
}

.side-element.left-side {
  left: -450px; /* Positions outside the 600px wrapper */
  bottom: 200px; /* Positioned higher up according to your image */
}

.side-element.right-side {
  right: -450px; /* Positions outside the 600px wrapper */
}

.unboxing-arrow-img {
  position: absolute;
  left: -162px;
  top: -161px;
  width: 140px;
  height: auto;
  z-index: 12;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-120px) rotate(45deg);
  filter: drop-shadow(rgba(0, 0, 0, 0.3) 0px 5px 15px);
  transition: opacity 0.4s, transform 0.4s;
}

.unboxing-arrow-caption {
  position: absolute;
  left: -409px;
  top: -228px;
  z-index: 12;
  font-family: var(--font-headings); /* Outfit, sans-serif */
  font-size: 36px;
  font-weight: 400; /* Extra bold matching the reference screenshot */
  color: #ffffff; /* White font color matching the reference screenshot */
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
  transform: translateX(-120px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  font-style: italic;
}

.unboxing-arrow-img-right {
  position: absolute;
  right: -36px; /* Mirrors left side */
  top: -51px; /* Positioned lower to align with the container element */
  width: 140px;
  height: auto;
  z-index: 12;
  pointer-events: none;
  opacity: 0;
  transform: translateX(120px) rotate(-45deg);
  filter: drop-shadow(rgba(0, 0, 0, 0.3) 0px 5px 15px);
  transition: opacity 0.4s, transform 0.4s;
}

.unboxing-arrow-caption-right {
  position: absolute;
  right: -268px; /* Mirrors left side */
  top: -114px; /* Positioned lower to align with the container element */
  z-index: 12;
  font-family: var(--font-headings); /* Outfit, sans-serif */
  font-size: 36px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
  transform: translateX(120px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  font-style: italic;
}

.side-img {
  height: 350px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.25));
}

.left-side .side-img {
  transform: rotate(-8deg); /* Slightly rotate the bag for a natural dynamic layout */
}

.side-caption {
  margin-top: 15px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0;
  text-align: center;
  background: rgba(238, 248, 232, 0.04);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(238, 248, 232, 0.08);
}

/* --- Countdown / Special Offer Banner --- */
.offer-banner {
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(238, 248, 232, 0.05);
  border-bottom: 1px solid rgba(238, 248, 232, 0.05);
}

.offer-banner::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 140%;
  background: radial-gradient(circle, rgba(167, 202, 59, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.offer-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.offer-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.offer-visual-wrapper img {
  height: auto;
  display: block;
  max-width: 474px;
}

.offer-badge-glow {
  position: absolute;
  top: -20px;
  left: 0;
  background: var(--secondary);
  color: var(--primary);
  font-weight: 800;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 0 30px rgba(167, 202, 59, 0.4);
  font-family: var(--font-headings);
  transform: rotate(-3deg);
}

.offer-content h2 {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.offer-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.kit-inclusions-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 32px;
}

.inclusion-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

.inclusion-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.inclusion-detail {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.inclusion-detail strong {
  color: #ffffff;
  font-family: var(--font-headings);
  font-weight: 700;
}

/* --- Social Proof / Instagram Grid --- */
.instagram-section {
  background: var(--darker-bg);
}

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

.insta-card {
  position: relative;
  aspect-ratio: 0.9;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(238, 248, 232, 0.08);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  background: rgba(238, 248, 232, 0.02);
}

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

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 67, 3, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.insta-overlay svg {
  color: var(--secondary);
  font-size: 2rem;
  transform: scale(0.8);
  transition: var(--transition);
}

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

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

.insta-card:hover .insta-overlay svg {
  transform: scale(1);
}

/* --- New Testimonials Layout --- */
.testimonials-section {
  background-color: var(--third); /* Light off-white green background (#EEF8E8) */
  padding: 100px 0;
  color: var(--primary);
}

.testimonials-header {
  margin-bottom: 50px;
  text-align: left;
}

.testimonials-label {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--primary);
  opacity: 0.7;
  display: block;
  margin-bottom: 12px;
}

.testimonials-title {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
}

.testimonials-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 10px 0 10px max(24px, calc((100vw - 1200px) / 2));
}

.testimonials-track-v2 {
  display: flex;
  gap: 28px;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  width: max-content;
}

.testimonial-card-v2 {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(46, 67, 3, 0.04);
  border: 1px solid rgba(46, 67, 3, 0.06);
  display: flex;
  flex-direction: column;
  height: 530px; /* Taller height */
  width: 400px; /* Wider card width */
  flex-shrink: 0;
  transition: var(--transition);
}

.testimonial-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(46, 67, 3, 0.08);
}

.card-img-wrapper {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: #f7faf5;
  position: relative;
}

.card-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: var(--transition);
}

.testimonial-card-v2:hover .card-img-wrapper::after {
  background: rgba(0, 0, 0, 0.25);
}

.card-img-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

.testimonial-card-v2:hover .card-img-play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.card-review-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content-v2 {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-stars {
  color: #2b9348; /* green stars matching customer screenshot */
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.card-review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(46, 67, 3, 0.85);
  margin-bottom: 24px;
  flex-grow: 1;
  font-weight: 500;
}

.card-user-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  border-top: 1px solid rgba(46, 67, 3, 0.08);
  padding-top: 16px;
}

.card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-user-info h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2px;
}

.card-verified {
  font-size: 0.75rem;
  font-weight: 700;
  color: #2b9348;
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-verified .check-icon {
  font-weight: 900;
}

/* Video Card Styling (Image Background Option) */
.testimonial-card-v2.video-card {
  background-size: cover;
  background-position: center;
  position: relative;
  border: none;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(46, 67, 3, 0.3) 0%, rgba(46, 67, 3, 0.9) 100%);
  z-index: 1;
}

.play-btn-wrapper {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.play-button-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  cursor: pointer;
}

.testimonial-card-v2.video-card:hover .play-button-icon {
  transform: scale(1.1);
  background-color: #ffffff;
}

.video-card-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.video-card-content .card-review-text {
  color: rgba(255, 255, 255, 0.9);
}

.video-card-content .card-stars {
  color: var(--secondary); /* lime stars for dark contrast overlay */
}

.white-text {
  color: #ffffff !important;
}

/* Carousel Navigation Underneath */
.carousel-nav-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
  width: 100%;
}

.slider-btn-v2 {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--primary);
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
}

.slider-btn-v2:hover {
  background-color: var(--primary);
  color: #ffffff;
}

/* --- Video Popup Modal --- */
.video-popup-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.25s ease forwards;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.modal-video-container {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #000000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
  z-index: 2;
  transform: scale(0.92);
  animation: scaleUpModal 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.modal-video-player {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(90deg);
}

@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleUpModal {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.video-popup-modal.closing {
  animation: fadeOutModal 0.25s ease forwards;
}

@keyframes fadeOutModal {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* --- FAQ Accordion --- */
.faq-section {
  background: var(--darker-bg);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  background: var(--card-dark);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.15rem;
  user-select: none;
}

.faq-question svg {
  transition: var(--transition);
  color: var(--secondary);
}

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

.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 0.95rem;
  color: rgba(238, 248, 232, 0.7);
}

/* Open states */
.faq-item.active {
  border-color: rgba(167, 202, 59, 0.3);
  box-shadow: var(--card-shadow);
}

.faq-item.active .faq-question svg {
  transform: rotate(45deg);
}

/* --- Footer --- */
.footer {
  background: #090F01;
  border-top: 1px solid rgba(238, 248, 232, 0.05);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h3 {
  font-size: 1.15rem;
  margin-bottom: 24px;
  position: relative;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary);
}

.footer-about p {
  font-size: 0.9rem;
  margin-top: 20px;
  margin-bottom: 24px;
}

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

.social-link {
  background: rgba(238, 248, 232, 0.05);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--third);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(238, 248, 232, 0.7);
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact svg {
  color: var(--secondary);
  flex-shrink: 0;
}

.footer-newsletter p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  background: rgba(238, 248, 232, 0.05);
  border: 1px solid rgba(238, 248, 232, 0.1);
  border-radius: var(--radius-full);
  padding: 12px 20px;
  color: var(--third);
  font-family: var(--font-body);
  font-size: 0.875rem;
  flex-grow: 1;
  outline: none;
  transition: var(--transition);
}

.newsletter-input:focus {
  border-color: var(--secondary);
  background: rgba(238, 248, 232, 0.08);
}

.newsletter-btn {
  background: var(--secondary);
  color: var(--primary);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.newsletter-btn:hover {
  transform: scale(1.05);
  background: #bce44a;
}

.footer-bottom {
  border-top: 1px solid rgba(238, 248, 232, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(238, 248, 232, 0.4);
}

.payment-icons {
  display: flex;
  gap: 12px;
  opacity: 0.5;
}

/* --- Slide-Out Cart Drawer --- */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 24, 1, 0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 450px;
  max-width: 100%;
  height: 100vh;
  background: #111A01;
  border-left: 1px solid var(--card-border);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  z-index: 201;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.cart-drawer.active {
  right: 0;
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.cart-close {
  background: transparent;
  border: none;
  color: var(--third);
  font-size: 1.5rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cart-close:hover {
  background: rgba(238, 248, 232, 0.08);
  color: var(--secondary);
}

.cart-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-empty-message {
  text-align: center;
  margin: auto 0;
  color: rgba(238, 248, 232, 0.5);
}

.cart-empty-message svg {
  font-size: 3rem;
  margin-bottom: 16px;
  color: rgba(238, 248, 232, 0.2);
}

.cart-item {
  display: flex;
  gap: 16px;
  background: rgba(238, 248, 232, 0.03);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(238, 248, 232, 0.05);
}

.cart-item-img {
  width: 70px;
  height: 70px;
  background: rgba(238, 248, 232, 0.03);
  border-radius: var(--radius-sm);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-item-img img {
  max-height: 100%;
  object-fit: contain;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 0.95rem;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 10px;
}

.cart-item-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quantity-selector {
  display: flex;
  align-items: center;
  background: rgba(238, 248, 232, 0.06);
  border: 1px solid rgba(238, 248, 232, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.qty-btn {
  background: transparent;
  border: none;
  color: var(--third);
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: rgba(238, 248, 232, 0.1);
  color: var(--secondary);
}

.qty-val {
  width: 28px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: rgba(238, 248, 232, 0.4);
  cursor: pointer;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.cart-item-remove:hover {
  color: #C45530;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--card-border);
  background: rgba(238, 248, 232, 0.01);
}

.cart-totals {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.cart-total-row.grand-total {
  font-size: 1.25rem;
  font-weight: 800;
  border-top: 1px solid rgba(238, 248, 232, 0.1);
  padding-top: 12px;
  color: var(--third);
}

.cart-checkout-btn {
  width: 100%;
  justify-content: center;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .hero-callout {
    display: none !important; /* Hide callouts on smaller screens to prevent content overlapping */
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid::before {
    display: none;
  }
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .value-props .props-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-img-wrapper.collage-layout {
    height: 380px;
  }
  .collage-sealer {
    height: 360px !important;
  }
  .collage-bag {
    height: 240px !important;
    left: 20px !important;
  }
  .collage-container {
    height: 180px !important;
    right: 20px !important;
  }
  .collage-clip {
    height: 90px !important;
    left: 110px !important;
  }
  .hero-content {
    text-align: center;
  }
  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-trust-list {
    justify-content: center;
  }
  .props-cards-block {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .countdown-box {
    justify-content: center;
  }
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .unboxing-arrow-img,
  .unboxing-arrow-caption,
  .unboxing-arrow-img-right,
  .unboxing-arrow-caption-right {
    display: none !important; /* Hide callouts on mobile to prevent clipping and content collision */
  }
}

@media (max-width: 480px) {
  .props-cards-block {
    grid-template-columns: 1fr;
  }
  .testimonial-card-v2 {
    width: calc(100vw - 40px);
  }
  .testimonials-track-v2 {
    gap: 16px;
  }
}

/* --- Scroll Entrance Animations (Progressive Enhancement) --- */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    @keyframes reveal-up {
      from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
      }
    }
    
    .scroll-reveal {
      animation: reveal-up auto linear forwards;
      animation-timeline: view();
      animation-range: entry 5% cover 30%;
    }
  }
}
