@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
  /* Design System Color Palette */
  --bg-primary: #FFFDF9;
  --bg-secondary: #F8F6F2;
  --bg-mint-tint: #F2FAF7; /* extremely subtle mint background tint */
  --bg-card: #FFFFFF;
  --color-green: #61C7A5;
  --color-green-hover: #49B893;
  --color-sky-blue: #8CCDF7;
  --color-peach: #FFC9A9;
  --color-lavender: #CDBAF5;
  --color-yellow: #FFD76A;
  --color-coral: #FF8B94;
  
  --text-primary: #1D2B36;
  --text-secondary: #5E6A73;
  --color-divider: #ECECEC;
  
  /* Spacing System (Multiples of 8) */
  --space-8: 8px;
  --space-16: 16px;
  --space-24: 24px;
  --space-32: 32px;
  --space-40: 40px;
  --space-48: 48px;
  --space-56: 56px;
  --space-64: 64px;
  --space-80: 80px;
  --space-96: 96px;
  --space-120: 120px;
  
  /* Border Radii */
  --radius-btn: 16px;
  --radius-card: 24px;
  --radius-image: 28px;
  --radius-tag: 999px;
  --radius-input: 18px;
  
  /* Shadows */
  --shadow-small: 0px 8px 20px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0px 15px 40px rgba(0, 0, 0, 0.08);
  --shadow-large: 0px 25px 60px rgba(0, 0, 0, 0.10);
  
  /* Transitions */
  --transition-fast: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-btn: 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-card: 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-section: 450ms ease;
  --transition-page: 500ms ease;
}

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

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

/* BASE RULES: MOBILE FIRST */
body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 170%;
  font-size: 16px; /* Mobile Body Size */
  font-weight: 400;
  overflow-x: hidden;
}

@media (min-width: 1024px) {
  body {
    font-size: 18px; /* Desktop Body Size */
  }
}

/* Mobile Typography Hierarchy (Default) */
h1, .h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 110%;
}

h2, .h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 120%;
}

h3, .h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
}

p {
  color: var(--text-secondary);
}

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

/* Desktop Typography Hierarchy overrides */
@media (min-width: 1024px) {
  h1, .h1 {
    font-size: 64px;
  }
  h2, .h2 {
    font-size: 44px;
  }
  h3, .h3 {
    font-size: 30px;
  }
}

/* Containers */
.container {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 768px) {
  .container {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

/* Mobile Section Padding (Default) */
.section-padding {
  padding-top: var(--space-72);
  padding-bottom: var(--space-72);
}

/* Tablet & Desktop Section Padding overrides */
@media (min-width: 768px) {
  .section-padding {
    padding-top: var(--space-96);
    padding-bottom: var(--space-96);
  }
}

@media (min-width: 1280px) {
  .section-padding {
    padding-top: var(--space-120);
    padding-bottom: var(--space-120);
  }
}

/* Section Header default mobile */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--space-48) auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 1024px) {
  .section-header {
    margin-bottom: var(--space-80);
  }
}

.eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-green);
  text-transform: uppercase;
  margin-bottom: var(--space-16);
}

.section-title {
  margin-bottom: var(--space-20);
}

.section-description {
  font-size: 16px;
  line-height: 170%;
  color: var(--text-secondary);
  max-width: 720px;
}

@media (min-width: 1024px) {
  .section-description {
    font-size: 18px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 16px;
  transition: transform var(--transition-btn), background-color var(--transition-btn), box-shadow var(--transition-btn);
  cursor: pointer;
  border: none;
  outline: none;
  padding: 0 var(--space-32);
}

.btn-primary {
  background-color: var(--color-green);
  color: #FFFFFF;
  box-shadow: 0px 4px 10px rgba(97, 199, 165, 0.2);
}

.btn-primary:hover {
  background-color: var(--color-green-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0px 8px 20px rgba(97, 199, 165, 0.3);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  background-color: #FFFFFF;
  border: 2px solid var(--color-green);
  color: var(--color-green);
}

.btn-secondary:hover {
  background-color: #F3FCF8;
  transform: translateY(-2px) scale(1.02);
}

.btn-secondary:active {
  transform: scale(0.98);
}

.btn:disabled, .btn-disabled {
  opacity: 0.6;
  pointer-events: none;
  transform: none !important;
  box-shadow: none !important;
}

/* 40. Loading Screen */
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-page) ease;
}

#loading-overlay video {
  width: 100%;
  max-width: 600px;
  max-height: 80vh;
  object-fit: contain;
}

/* 41. Navigation Bar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  z-index: 999;
  transition: background-color var(--transition-card), box-shadow var(--transition-card);
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  header {
    height: 72px;
  }
}

header.scrolled {
  background-color: #FFFFFF;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.06);
}

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

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 36px;
  width: auto;
}

@media (min-width: 768px) {
  .logo-img {
    height: 44px;
  }
}

.logo-wrapper {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: #FFFFFF;
}

.logo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18); /* zoom in by 18% to hide black edges */
  transition: transform 300ms ease-in-out;
}

.logo-link:hover .logo-wrapper img {
  transform: scale(1.30);
}

/* Menu Items Center (Hidden by default on mobile) */
.nav-menu-wrapper {
  display: none;
}

@media (min-width: 1024px) {
  .nav-menu-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-40);
  }
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--space-40);
}

.nav-menu a {
  font-weight: 500;
  font-size: 16px;
  color: var(--text-secondary);
}

.nav-menu a:hover, .nav-menu a.active {
  color: var(--text-primary);
}

/* Right buttons */
.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-16);
}

@media (min-width: 768px) {
  .nav-right {
    gap: var(--space-24);
  }
}

/* Language switch toggle pill */
.lang-toggle {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-tag);
  padding: 4px;
  display: inline-flex;
  border: 1px solid var(--color-divider);
}

.lang-btn {
  background: none;
  border: none;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-tag);
  cursor: pointer;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.lang-btn.active {
  background-color: #FFFFFF;
  color: var(--text-primary);
  box-shadow: var(--shadow-small);
}

/* Desktop Navigation CTA (Hidden on mobile) */
.nav-whatsapp-btn {
  display: none;
}

@media (min-width: 1024px) {
  .nav-whatsapp-btn {
    display: inline-flex;
    height: 46px;
    padding: 0 var(--space-24);
    font-size: 15px;
    border-radius: 12px;
  }
}

/* Mobile Hamburger Menu */
.hamburger-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.hamburger-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

@media (min-width: 1024px) {
  .hamburger-toggle {
    display: none;
  }
}

/* Mobile Drawer Navigation (80% sliding right) */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -80%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1000;
  box-shadow: -10px 0px 30px rgba(0, 0, 0, 0.1);
  padding: var(--space-40) var(--space-32);
  display: flex;
  flex-direction: column;
  gap: var(--space-32);
  transition: right 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}

.mobile-nav-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-divider);
  padding-bottom: var(--space-16);
}

.drawer-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-secondary);
}

.mobile-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
}

.mobile-menu-list a {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-secondary);
}

.mobile-menu-list a:hover {
  color: var(--text-primary);
}

/* Overlay Backdrop */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
  backdrop-filter: blur(4px);
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Reusable Placeholder styling */
.placeholder-box {
  background-color: #F4F4F4;
  border: 2px dashed #D9D9D9;
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-24);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.placeholder-box i, .placeholder-box svg {
  font-size: 32px;
  color: #B3B3B3;
  margin-bottom: var(--space-12);
}

.placeholder-box .label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8C8C8C;
  margin-bottom: var(--space-8);
}

.placeholder-box .caption {
  font-size: 11px;
  color: #B3B3B3;
}

/* Aspect ratio wrappers */
.ratio-1-1 { aspect-ratio: 1 / 1; }
.ratio-3-4 { aspect-ratio: 3 / 4; }
.ratio-4-5 { aspect-ratio: 4 / 5; }
.ratio-4-3 { aspect-ratio: 4 / 3; }
.ratio-16-9 { aspect-ratio: 16 / 9; }
.ratio-9-16 { aspect-ratio: 9 / 16; }

/* Hero Section (Default Mobile Stack) */
.hero-section {
  padding-top: calc(64px + var(--space-48));
  padding-bottom: var(--space-56);
  background-color: var(--bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

@media (min-width: 1024px) {
  .hero-section {
    padding-top: calc(72px + var(--space-64));
    padding-bottom: var(--space-80);
    min-height: 920px;
    height: 100vh;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-40);
  align-items: center;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 48% 52%;
    gap: 72px;
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-left {
    align-items: flex-start;
    text-align: left;
  }
}

.hero-headline {
  margin-bottom: var(--space-28);
  max-width: 100%;
}

@media (min-width: 1024px) {
  .hero-headline {
    max-width: 620px;
  }
}

.hero-description {
  margin-bottom: var(--space-40);
  max-width: 100%;
}

@media (min-width: 1024px) {
  .hero-description {
    max-width: 560px;
  }
}

/* Mobile Button Group (Vertical Default Stack) */
.hero-btn-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  margin-bottom: var(--space-48);
  width: 100%;
  align-items: center;
}

.hero-btn-group .btn {
  width: 100% !important;
  max-width: 400px;
}

@media (min-width: 768px) {
  .hero-btn-group {
    flex-direction: row;
    justify-content: center;
  }
  .hero-btn-group .btn {
    width: auto !important;
  }
  .hero-btn-group .btn-primary { width: 230px !important; }
  .hero-btn-group .btn-secondary { width: 220px !important; }
}

@media (min-width: 1024px) {
  .hero-btn-group {
    justify-content: flex-start;
  }
}

/* Trust Badges Container (Vertical Mobile Stack) */
.hero-badges-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .hero-badges-container {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

@media (min-width: 1024px) {
  .hero-badges-container {
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
}

.hero-badge-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-16);
  width: 100%;
  text-align: left;
}

@media (min-width: 768px) {
  .hero-badge-item {
    max-width: 240px;
  }
}

.hero-badge-icon {
  font-size: 24px;
  color: var(--color-green);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.hero-badge-text h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.hero-badge-text p {
  font-size: 13px;
  line-height: 140%;
}

.hero-right {
  display: flex;
  justify-content: center;
  order: 2; /* Ensure image displays after buttons/text on mobile stack */
}

@media (min-width: 1024px) {
  .hero-right {
    order: unset;
  }
}

.hero-slideshow {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  height: auto;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-image);
  box-shadow: var(--shadow-large);
  background-color: var(--bg-secondary);
}

@media (min-width: 768px) {
  .hero-slideshow {
    width: 500px;
    height: 500px;
  }
}

@media (min-width: 1024px) {
  .hero-slideshow {
    width: 620px;
    height: 620px;
  }
}

.slideshow-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Arrows */
.slideshow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.85);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  box-shadow: var(--shadow-small);
  z-index: 10;
  opacity: 0.8; /* Changed from 0 to show arrows by default (critical for touch devices) */
  transition: opacity var(--transition-fast), background-color var(--transition-fast), transform var(--transition-fast);
  backdrop-filter: blur(4px);
}

.floating-whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  display: block;
}

.slideshow-arrow:hover {
  background-color: #FFFFFF;
  transform: translateY(-50%) scale(1.08);
}

.slideshow-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.slideshow-arrow.prev {
  left: 20px;
}

.slideshow-arrow.next {
  right: 20px;
}

/* Show arrows on hover of slideshow */
.hero-slideshow:hover .slideshow-arrow {
  opacity: 1;
}

/* Dots */
.slideshow-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
  padding: 8px 16px;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-tag);
  backdrop-filter: blur(6px);
}

.slideshow-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: width 0.3s ease, background-color 0.3s ease, border-radius 0.3s ease;
}

.slideshow-dots .dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.slideshow-dots .dot.active {
  width: 24px;
  border-radius: 5px;
  background-color: #FFFFFF;
}

/* Floating Petals System Styling */
.hero-petals-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
}

.floating-petal {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity;
  filter: blur(1px);
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes float-up-left {
  0% {
    transform: translate(0, 100vh) rotate(0deg) scale(0.8);
    opacity: 0;
  }
  10% {
    opacity: 0.15;
  }
  90% {
    opacity: 0.15;
  }
  100% {
    transform: translate(-150px, -200px) rotate(360deg) scale(1.2);
    opacity: 0;
  }
}

@keyframes float-up-right {
  0% {
    transform: translate(0, 100vh) rotate(0deg) scale(1.2);
    opacity: 0;
  }
  10% {
    opacity: 0.18;
  }
  90% {
    opacity: 0.18;
  }
  100% {
    transform: translate(150px, -250px) rotate(-270deg) scale(0.8);
    opacity: 0;
  }
}

@keyframes float-slow-drift {
  0% {
    transform: translate(-100px, 80vh) rotate(0deg) scale(1);
    opacity: 0;
  }
  15% {
    opacity: 0.12;
  }
  85% {
    opacity: 0.12;
  }
  100% {
    transform: translate(150px, -150px) rotate(180deg) scale(1.1);
    opacity: 0;
  }
}

.float-anim-1 { animation: float-up-left 25s infinite; }
.float-anim-2 { animation: float-up-right 30s infinite; }
.float-anim-3 { animation: float-slow-drift 35s infinite; }

/* Transition/Scroll Drift Petal */
.drift-petal {
  position: fixed;
  pointer-events: none;
  opacity: 0;
  z-index: 9999;
  filter: blur(1.5px);
  will-change: transform, opacity;
}

@keyframes screen-drift {
  0% {
    transform: translate(-10vw, -10vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.15;
  }
  90% {
    opacity: 0.15;
  }
  100% {
    transform: translate(110vw, 110vh) rotate(450deg);
    opacity: 0;
  }
}

.drift-active {
  animation: screen-drift 12s ease-in-out forwards;
}

/* Button Sparkle Petals */
.sparkle-petal {
  position: absolute;
  pointer-events: none;
  width: 12px;
  height: 12px;
  opacity: 0.8;
  z-index: 10;
  animation: sparkle-fade 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes sparkle-fade {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.8;
  }
  100% {
    transform: translate(var(--dx), var(--dy)) scale(0.3) rotate(var(--rot));
    opacity: 0;
  }
}

/* Animated mouse scroll indicator (Hidden on Mobile) */
.scroll-indicator {
  display: none;
}

@media (min-width: 1024px) {
  .scroll-indicator {
    position: absolute;
    bottom: var(--space-24);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
  }
}

.scroll-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}

.mouse-icon {
  width: 20px;
  height: 32px;
  border: 2px solid var(--text-primary);
  border-radius: 12px;
  position: relative;
}

.mouse-icon::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background-color: var(--text-primary);
  border-radius: 2px;
  animation: mouse-scroll 1.5s infinite;
}

@keyframes mouse-scroll {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 8px); opacity: 0; }
}

/* Trust Section (Section 02 - Mobile default: 1 col) */
.trust-section {
  background-color: var(--bg-secondary);
}

.trust-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .trust-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 36px;
  height: 320px;
  box-shadow: var(--shadow-medium);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-card), box-shadow var(--transition-card);
}

.trust-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-large);
}

.trust-card-top {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.trust-card-icon {
  font-size: 32px;
  color: var(--color-green);
}

.trust-card h3 {
  font-size: 20px;
  font-weight: 700;
}

.trust-card p {
  font-size: 15px;
  line-height: 160%;
}

.trust-card-bottom {
  display: flex;
  justify-content: flex-end;
}

.trust-card-placeholder {
  width: 60px;
  border-radius: 12px;
  padding: 8px;
}

/* What's Included Section (Mobile default: stack) */
.included-section {
  background-color: var(--bg-primary);
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-40);
  align-items: center;
}

@media (min-width: 1024px) {
  .included-grid {
    grid-template-columns: 45% 55%;
    gap: 64px;
  }
}

.included-left-placeholder {
  width: 100%;
}

/* Mobile grid for items is 1 column by default */
.included-right-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .included-right-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.item-card {
  background-color: var(--bg-card);
  height: 150px;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-small);
  display: flex;
  gap: var(--space-16);
  transition: transform 220ms ease;
  border: 1px solid var(--color-divider);
}

.item-card:hover {
  transform: translateY(-2px);
}

.item-card:hover .item-icon {
  transform: scale(1.05);
}

.item-icon {
  font-size: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: transform 220ms ease;
}

.item-text h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.item-text p {
  font-size: 14px;
  line-height: 150%;
}

.included-note {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: var(--space-32);
  text-align: center;
}

@media (min-width: 1024px) {
  .included-note {
    text-align: left;
  }
}

.included-btn-wrapper {
  margin-top: var(--space-48);
  display: flex;
  justify-content: center;
}

.included-btn-wrapper .btn {
  width: 100%;
  max-width: 260px;
}

/* Our Collection / Products Section (Mobile default: 1 col) */
.collection-section {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--color-divider);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: stretch;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-card);
  padding: var(--space-32);
  box-shadow: var(--shadow-medium);
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
  transition: transform var(--transition-card), box-shadow var(--transition-card);
  position: relative;
  border: 1px solid var(--color-divider);
}

@media (min-width: 1024px) {
  .product-card {
    padding: var(--space-40);
  }
}

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

.product-card:hover .product-img-placeholder img {
  transform: scale(1.04);
}

.product-img-placeholder {
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
}

.product-img-placeholder img {
  transition: transform 250ms ease;
}

.product-tag-pill {
  align-self: flex-start;
  padding: 4px 12px;
  background-color: var(--bg-secondary);
  border-radius: var(--radius-tag);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.product-title {
  font-size: 24px;
  font-weight: 700;
}

.product-desc {
  font-size: 15px;
  line-height: 160%;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: var(--space-8);
}

.product-features li {
  font-size: 15px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-features li::before {
  content: '✔';
  color: var(--color-green);
  font-weight: 700;
}

.product-price-wrapper {
  margin-top: auto;
  padding-top: var(--space-24);
  border-top: 1px solid var(--color-divider);
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.product-price-lbl {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
}

.product-card .btn {
  width: 100%;
}

/* Premium Card (Premium Kit Highlighted) */
.product-card.premium-kit-card {
  border: 2px solid var(--color-green);
  box-shadow: var(--shadow-large);
  z-index: 2;
}

@media (min-width: 1280px) {
  .product-card.premium-kit-card {
    transform: scale(1.05);
  }
  .product-card.premium-kit-card:hover {
    transform: translateY(-8px) scale(1.06);
  }
}

.premium-ribbon {
  position: absolute;
  top: -15px;
  right: 24px;
  background-color: var(--color-green);
  color: #FFFFFF;
  padding: var(--space-8) var(--space-16);
  border-radius: var(--radius-tag);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.premium-footer-note {
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
  margin-top: var(--space-8);
}

/* Comparison Table (Responsively Scrollable horizontally) */
.compare-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-top: var(--space-80);
  margin-bottom: var(--space-32);
}

@media (min-width: 1024px) {
  .compare-title {
    font-size: 30px;
    margin-top: var(--space-120);
    margin-bottom: var(--space-48);
  }
}

.compare-table-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--color-divider);
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  min-width: 600px; /* Force minimum width to scroll scrollbar on small screens */
  border-collapse: collapse;
  text-align: left;
  background-color: #FFFFFF;
}

.compare-table th, .compare-table td {
  padding: var(--space-16) var(--space-20);
  border-bottom: 1px solid var(--color-divider);
  font-size: 15px;
}

@media (min-width: 768px) {
  .compare-table th, .compare-table td {
    padding: var(--space-24);
    font-size: 16px;
  }
}

.compare-table th {
  font-weight: 700;
  background-color: var(--bg-secondary);
}

.compare-table td.premium-col, .compare-table th.premium-col {
  background-color: #F0FAF7;
}

/* Add-ons Section (Mobile default: 1 col) */
.addons-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-top: var(--space-80);
  margin-bottom: var(--space-32);
}

.addons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

.addon-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-card);
  padding: var(--space-24);
  box-shadow: var(--shadow-small);
  border: 1px solid var(--color-divider);
  display: flex;
  gap: var(--space-24);
  align-items: center;
}

.addon-img-placeholder {
  width: 80px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .addon-img-placeholder {
    width: 100px;
  }
}

.addon-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  width: 100%;
}

.addon-badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.addon-name {
  font-size: 16px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .addon-name {
    font-size: 18px;
  }
}

.addon-price-lbl {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.addon-price-lbl span {
  font-size: 13px;
  text-decoration: line-through;
  color: var(--text-secondary);
  font-weight: 400;
  margin-left: 8px;
}

.addons-note {
  text-align: center;
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: var(--space-24);
}

/* Process Timeline Section (Mobile default: vertical stack) */
.process-section {
  background-color: var(--bg-primary);
}

.timeline-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

@media (min-width: 1024px) {
  .timeline-container {
    flex-direction: row;
    overflow-x: auto;
    padding: var(--space-24) 0;
    scrollbar-width: none;
  }
  .timeline-container::-webkit-scrollbar {
    display: none;
  }
}

.timeline-card {
  width: 100%;
  background-color: var(--bg-card);
  border-radius: var(--radius-card);
  padding: var(--space-24);
  box-shadow: var(--shadow-small);
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  transition: transform var(--transition-fast);
  border: 1px solid var(--color-divider);
}

@media (min-width: 1024px) {
  .timeline-card {
    flex: 1;
    min-width: 240px;
    height: 180px;
  }
}

.timeline-card:hover {
  transform: translateY(-2px);
}

.timeline-icon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.timeline-icon {
  font-size: 28px;
  color: var(--color-green);
}

.timeline-number {
  font-size: 14px;
  font-weight: 700;
  color: #B3B3B3;
}

.timeline-card h4 {
  font-size: 16px;
  font-weight: 700;
}

.timeline-card p {
  font-size: 13px;
  line-height: 145%;
}

/* Reviews Section (Mobile default: 2 cols) */
.reviews-section {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--color-divider);
}

.reviews-grid-9-16 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: var(--space-32);
}

@media (min-width: 768px) {
  .reviews-grid-9-16 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-grid-9-16 {
    grid-template-columns: repeat(6, 1fr);
    margin-top: var(--space-48);
  }
}

.reviews-grid-1-1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: var(--space-16);
  margin-bottom: var(--space-32);
}

@media (min-width: 768px) {
  .reviews-grid-1-1 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-grid-1-1 {
    grid-template-columns: repeat(6, 1fr);
    margin-top: var(--space-24);
    margin-bottom: var(--space-48);
  }
}

.reviews-section .btn {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

/* Founder Story Section (Mobile default: stack) */
.founder-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--color-divider);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-40);
  align-items: center;
}

@media (min-width: 1024px) {
  .founder-grid {
    grid-template-columns: 38% 62%;
    gap: 64px;
  }
}

.founder-left-placeholder {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.founder-story-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
  text-align: center;
  align-items: center;
}

@media (min-width: 1024px) {
  .founder-story-wrapper {
    gap: var(--space-24);
    text-align: left;
    align-items: flex-start;
  }
}

.founder-story-title {
  font-size: 28px;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .founder-story-title {
    font-size: 30px;
  }
}

.founder-story-copy {
  font-size: 16px;
  line-height: 180%;
  color: var(--text-secondary);
}

@media (min-width: 1024px) {
  .founder-story-copy {
    font-size: 18px;
  }
}

.founder-signature {
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  margin-top: var(--space-16);
  display: flex;
  flex-direction: column;
}

.founder-signature span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* FAQ Accordion Section */
.faq-section {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--color-divider);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.faq-card {
  background-color: var(--bg-secondary);
  border-radius: 20px;
  overflow: hidden;
  transition: background-color var(--transition-fast);
}

.faq-card-header {
  width: 100%;
  padding: var(--space-20) var(--space-24);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  outline: none;
}

@media (min-width: 768px) {
  .faq-card-header {
    padding: var(--space-24) var(--space-32);
  }
}

.faq-card-header h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  padding-right: 12px;
}

@media (min-width: 768px) {
  .faq-card-header h4 {
    font-size: 18px;
  }
}

.faq-card-icon {
  font-size: 20px;
  color: var(--text-secondary);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms cubic-bezier(0.25, 0.8, 0.25, 1), padding 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 0 var(--space-24);
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 160%;
}

@media (min-width: 768px) {
  .faq-card-body {
    padding: 0 var(--space-32);
    font-size: 16px;
  }
}

/* Accordion Open State */
.faq-card.active {
  background-color: #F0FAF7;
}

.faq-card.active .faq-card-icon {
  transform: rotate(180deg);
  color: var(--color-green);
}

.faq-card.active .faq-card-body {
  max-height: 350px;
  padding-bottom: var(--space-24);
}

/* Before You Order Centered Card */
.before-order-section {
  background-color: var(--bg-primary);
}

.before-order-card {
  max-width: 900px;
  margin: 0 auto;
  background-color: #FFF8EE;
  border: 1px solid #FFE8CC;
  border-radius: 32px;
  padding: var(--space-40) var(--space-24);
  text-align: center;
  box-shadow: var(--shadow-medium);
}

@media (min-width: 768px) {
  .before-order-card {
    padding: var(--space-56) var(--space-48);
  }
}

.before-order-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: var(--space-20);
}

@media (min-width: 768px) {
  .before-order-card h3 {
    font-size: 28px;
    margin-bottom: var(--space-24);
  }
}

.before-order-card p {
  font-size: 15px;
  line-height: 170%;
  color: #7A6248;
  margin-bottom: var(--space-16);
}

@media (min-width: 768px) {
  .before-order-card p {
    font-size: 16px;
  }
}

.before-order-card p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--text-primary);
}

/* Footer Section (Mobile default: 1 col stack) */
.footer-section {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  padding: 80px 0 40px 0;
  border-top: 1px solid var(--color-divider);
}

@media (min-width: 1024px) {
  .footer-section {
    padding: 100px 0 40px 0;
  }
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 64px;
    margin-bottom: var(--space-64);
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

@media (min-width: 768px) {
  .footer-col {
    gap: var(--space-24);
  }
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
}

.footer-tagline {
  font-size: 15px;
  line-height: 150%;
  color: var(--text-secondary);
  max-width: 280px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

@media (min-width: 768px) {
  .footer-links-list {
    gap: var(--space-16);
  }
}

.footer-links-list a {
  font-size: 15px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--color-green);
}

.footer-divider {
  border: 0;
  height: 1px;
  background-color: var(--color-divider);
  margin-bottom: var(--space-32);
}

@media (min-width: 768px) {
  .footer-divider {
    margin-bottom: var(--space-40);
  }
}

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

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Global Floating elements */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0px 4px 15px rgba(37, 211, 102, 0.3);
  z-index: 99;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.05);
}

/* Pulse animation triggered by script */
.floating-whatsapp-btn.pulse {
  animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Tooltip (Hidden on mobile screens to prevent distraction) */
.whatsapp-tooltip {
  display: none;
}

@media (min-width: 768px) {
  .whatsapp-tooltip {
    display: block;
    position: absolute;
    right: 76px;
    background-color: var(--text-primary);
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: opacity 250ms ease, transform 250ms ease;
    box-shadow: var(--shadow-small);
  }
}

.floating-whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.scroll-to-top-btn {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 48px;
  height: 48px;
  background-color: #FFFFFF;
  color: var(--text-primary);
  border: 1px solid var(--color-divider);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-small);
  z-index: 98;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 300ms ease, transform 300ms ease, background-color var(--transition-fast);
}

.scroll-to-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-to-top-btn:hover {
  background-color: var(--bg-secondary);
}

/* Premium Modal (Order Modal) */
.premium-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.premium-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.premium-modal {
  background-color: #FFFFFF;
  border-radius: 24px;
  width: 90%;
  max-width: 520px;
  padding: 24px;
  box-shadow: var(--shadow-large);
  position: relative;
  transform: scale(0.95);
  transition: transform 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
}

@media (min-width: 768px) {
  .premium-modal {
    padding: 32px;
    gap: var(--space-24);
  }
}

.premium-modal-overlay.active .premium-modal {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-secondary);
  line-height: 1;
}

.modal-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 120%;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .modal-title {
    font-size: 24px;
  }
}

.modal-description {
  font-size: 15px;
  color: var(--text-secondary);
}

/* Step 1 Cover Cards Grid */
.cover-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: var(--space-8);
}

@media (min-width: 768px) {
  .cover-cards-grid {
    gap: 20px;
  }
}

.cover-card {
  background-color: var(--bg-secondary);
  border: 2px solid transparent;
  border-radius: 20px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-12);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.cover-card:hover {
  background-color: #ECEAE6;
}

.cover-card-emoji {
  font-size: 32px;
}

@media (min-width: 768px) {
  .cover-card-emoji {
    font-size: 40px;
  }
}

.cover-card.selected {
  border-color: var(--color-green);
  background-color: #FFFFFF;
}

.cover-card-check {
  display: none;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-green);
  color: #FFFFFF;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.cover-card.selected .cover-card-check {
  display: flex;
}

/* Step 2 Confirmation Row */
.selection-confirm-text {
  font-size: 14px;
  background-color: #F3FCF8;
  border: 1px solid #D5F3E7;
  color: var(--color-green-hover);
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
}

.modal-action-row {
  margin-top: var(--space-8);
}

.modal-action-row .btn {
  width: 100%;
}

/* Reusable global transition system */
.fade-up-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-section) ease, transform var(--transition-section) ease;
}

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

/* Policy Pages Layout */
.policy-page-body {
  background-color: var(--bg-secondary);
}

.policy-page-header {
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--color-divider);
}

.policy-wrapper {
  padding: var(--space-80) 0;
}

@media (min-width: 1024px) {
  .policy-wrapper {
    padding: var(--space-120) 0;
  }
}

.policy-card {
  background-color: #FFFFFF;
  border-radius: 24px;
  box-shadow: var(--shadow-medium);
  padding: var(--space-32) var(--space-20);
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .policy-card {
    padding: var(--space-64);
  }
}

.policy-card h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: var(--space-24);
  border-bottom: 2px solid var(--bg-secondary);
  padding-bottom: var(--space-16);
}

@media (min-width: 768px) {
  .policy-card h1 {
    font-size: 40px;
    margin-bottom: var(--space-32);
  }
}

.policy-card h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: var(--space-32);
  margin-bottom: var(--space-16);
}

@media (min-width: 768px) {
  .policy-card h2 {
    font-size: 24px;
    margin-top: var(--space-48);
  }
}

.policy-card p {
  color: var(--text-secondary);
  margin-bottom: var(--space-24);
  font-size: 15px;
  line-height: 175%;
}

@media (min-width: 768px) {
  .policy-card p {
    font-size: 16px;
  }
}

.policy-card ul, .policy-card ol {
  margin-left: var(--space-24);
  margin-bottom: var(--space-24);
  color: var(--text-secondary);
}

.policy-card li {
  margin-bottom: var(--space-8);
  font-size: 15px;
  line-height: 160%;
}

@media (min-width: 768px) {
  .policy-card li {
    font-size: 16px;
  }
}

.policy-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--color-green);
  margin-bottom: var(--space-24);
}

@media (min-width: 768px) {
  .policy-back-link {
    margin-bottom: var(--space-32);
  }
}

.policy-back-link:hover {
  color: var(--color-green-hover);
}

/* ===========================================================
   BRAND IDENTITY COLOR ACCENTS & TINTS BY SECTION
   =========================================================== */

/* Hero Section: Mint Accent */
#hero .eyebrow {
  color: var(--color-green);
}

/* Products/Collection Section: Coral Accent */
#collection .eyebrow {
  color: var(--color-coral);
}

/* Trust Section: Subtle Mint Tint Background & Sky Blue Accent */
#trust-benefits {
  background-color: var(--bg-mint-tint);
}
#trust-benefits .eyebrow {
  color: var(--color-sky-blue);
}
#trust-benefits .trust-card-icon i {
  color: var(--color-sky-blue);
}

/* Timeline Section: Lavender Accent */
#how-it-works-timeline .eyebrow {
  color: var(--color-lavender);
}
#how-it-works-timeline .timeline-icon {
  color: var(--color-lavender);
}
#how-it-works-timeline .timeline-number {
  color: var(--color-lavender);
  opacity: 0.8;
}

/* Reviews Section: Coral/Pink Accent */
#reviews .eyebrow {
  color: var(--color-coral);
}

/* Founder Story Section: Sky Blue Accent */
#founder .eyebrow {
  color: var(--color-sky-blue);
}

/* FAQ Section: Warm Yellow Accent */
#faq .eyebrow {
  color: var(--color-yellow);
}
#faq .faq-card-icon i {
  color: var(--color-yellow);
}
#faq .faq-card-header h4 {
  transition: color var(--transition-fast);
}
#faq .faq-card.active {
  border-color: var(--color-yellow);
}
#faq .faq-card.active .faq-card-header h4 {
  color: var(--color-yellow);
}

/* Slideshow dots: active dot to match section accent */
#hero .slideshow-dots .dot.active {
  background-color: var(--color-green);
}

/* ===========================================================
   PRODUCT DETAIL PAGE STYLING (SEO Crawlable Pages)
   =========================================================== */

.product-detail-section {
  padding-top: calc(64px + var(--space-48));
  padding-bottom: var(--space-80);
}

@media (min-width: 1024px) {
  .product-detail-section {
    padding-top: calc(72px + var(--space-64));
    padding-bottom: var(--space-120);
  }
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-40);
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .product-detail-grid {
    grid-template-columns: 45% 55%;
    gap: 64px;
  }
}

.product-detail-img {
  width: 100%;
  border-radius: var(--radius-image);
  box-shadow: var(--shadow-medium);
  overflow: hidden;
}

.product-detail-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.product-detail-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
}

.product-detail-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  color: var(--text-primary);
}

@media (min-width: 768px) {
  .product-detail-title {
    font-size: 40px;
  }
}

.product-detail-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  border-bottom: 1px solid var(--color-divider);
  padding-bottom: var(--space-16);
}

.product-detail-desc {
  font-size: 16px;
  line-height: 180%;
  color: var(--text-secondary);
}

.product-detail-features-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.product-detail-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-detail-features li {
  font-size: 16px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-detail-features li::before {
  content: '✔';
  color: var(--color-green);
  font-weight: 700;
}
