/* The Fourth Trimester - Standalone CSS
   A premium wellness brand blending Chinese heritage with modern aesthetics
*/

/* ========================================
   CSS Variables (Design Tokens)
   ======================================== */
:root {
  /* Brand Colors */
  --terracotta: #B35549;
  --cream: #F8E5B3;
  --coral: #F89F72;
  --peach: #F9C5A8;
  --burgundy: #8A3542;
  --nude: #EBCBA3;

  /* Semantic Colors */
  --background: #F8F6F4;
  --foreground: #131313;
  --card: #F7F4F2;
  --card-foreground: #131313;
  --primary: #B35549;
  --primary-foreground: #FFFFFF;
  --secondary: #F8E5B3;
  --secondary-foreground: #131313;
  --muted: #EBCBA3;
  --muted-foreground: #595959;
  --accent: #F89F72;
  --border: #E5DCD5;
  --destructive: #E53E3E;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;

  /* Shadows */
  --shadow-soft: 0 4px 20px -4px rgba(179, 85, 73, 0.1);
  --shadow-medium: 0 8px 30px -8px rgba(179, 85, 73, 0.15);
  --shadow-elevated: 0 20px 60px -15px rgba(179, 85, 73, 0.2);

  /* Spacing */
  --container-max: 1400px;
  --container-padding: 1.5rem;

  /* Stage Colors */
  --stage-1: #F78F6E;
  --stage-1-header: #E07A5F;
  --stage-2: #C9493B;
  --stage-2-header: #B03D31;
  --stage-3: #A03F4F;
  --stage-3-header: #8A3542;
  --stage-4: #8A3542;
  --stage-4-header: #722D38;
}

/* ========================================
   Base Styles
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 5rem;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
}

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

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

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

ul {
  list-style: none;
}

.hidden {
  display: none !important;
}

/* ========================================
   Container
   ======================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  letter-spacing: 0.025em;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: var(--burgundy);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--muted-foreground);
}

.btn-outline:hover {
  border-color: rgba(0, 0, 0, 0.3);
  color: var(--foreground);
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(248, 246, 244, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 220, 213, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  display: none;
}

@media (min-width: 640px) {
  .logo-text {
    display: block;
  }
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: rgba(19, 19, 19, 0.8);
  transition: color 0.3s ease;
}

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

.nav-btn {
  margin-left: 1rem;
  padding: 0.625rem 1.5rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: background-color 0.3s ease;
}

.nav-btn:hover {
  background-color: var(--burgundy);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  padding: 0.5rem;
  color: var(--foreground);
}

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

.menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile Navigation */
.nav-mobile {
  background-color: var(--background);
  border-top: 1px solid var(--border);
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.nav-mobile .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  gap: 1rem;
}

.nav-mobile-link {
  font-size: 1.125rem;
  color: rgba(19, 19, 19, 0.8);
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  text-align: center;
  width: 100%;
}

.nav-mobile-link:hover {
  color: var(--primary);
}

.nav-mobile-btn {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: 0.375rem;
  font-size: 1rem;
  text-align: center;
  transition: background-color 0.3s ease;
}

.nav-mobile-btn:hover {
  background-color: var(--burgundy);
}

@media (min-width: 1024px) {
  .nav-mobile {
    display: none !important;
  }
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--background) 0%, rgba(248, 229, 179, 0.3) 100%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 10;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  .hero-container {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

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

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

.hero-tagline {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
  max-width: 220px;
}

@media (min-width: 640px) {
  .hero-tagline {
    max-width: none;
  }
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: -0.025em;
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title-accent {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .hero-description {
    margin: 0 0 2rem 0;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

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

.hero-buttons .btn {
  width: 100%;
}

@media (min-width: 640px) {
  .hero-buttons .btn {
    width: 13rem;
  }
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
}

.hero-image-container {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

@media (min-width: 1024px) {
  .hero-image-container {
    aspect-ratio: 3/4;
  }
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(248, 229, 179, 0.2), transparent);
}

.hero-decoration-1 {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 8rem;
  height: 8rem;
  background-color: var(--secondary);
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(2rem);
}

.hero-decoration-2 {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 6rem;
  height: 6rem;
  background-color: var(--peach);
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(1rem);
}

/* Section Divider */
.section-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ========================================
   Section Common Styles
   ======================================== */
.section-tagline {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: -0.025em;
  font-size: 1.875rem;
  text-wrap: balance;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-title-accent {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
  margin-top: 0.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-description {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 42rem;
  margin: 1.5rem auto 0;
}

/* ========================================
   Philosophy Section
   ======================================== */
.philosophy {
  padding: 6rem 0 8rem;
  background-color: rgba(248, 229, 179, 0.3);
  margin-top: -1px;
}

@media (min-width: 1024px) {
  .philosophy {
    padding: 8rem 0 10rem;
  }
}

.philosophy-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.philosophy-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.philosophy-text:last-of-type {
  margin-bottom: 0;
}

.text-highlight {
  font-weight: 600;
  color: var(--primary);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

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

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .stat-number {
    font-size: 2.25rem;
  }
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  letter-spacing: 0.05em;
}

/* ========================================
   Benefits Section
   ======================================== */
.benefits {
  position: relative;
  padding: 6rem 0 8rem;
}

@media (min-width: 1024px) {
  .benefits {
    padding: 8rem 0 10rem;
  }
}

.benefits-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 70rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .benefits-grid {
    display: grid;
  }
}

.benefit-card {
  padding: 2rem;
  border-radius: 1rem;
  background-color: var(--card);
  box-shadow: var(--shadow-soft);
  transition: all 0.5s ease;
  height: 100%;
}

.benefit-card:hover {
  background-color: rgba(248, 229, 179, 0.5);
  box-shadow: var(--shadow-elevated);
}

.benefit-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background-color: rgba(179, 85, 73, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  background-color: rgba(179, 85, 73, 0.2);
}

.benefit-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.benefit-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.benefit-description {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* Benefits Carousel (Mobile) */
.benefits-carousel {
  display: block;
}

@media (min-width: 768px) {
  .benefits-carousel {
    display: none;
  }
}

/* ========================================
   Carousel Common Styles
   ======================================== */
.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
  touch-action: pan-x;
}

.carousel-slide {
  flex: 0 0 85%;
  padding: 0.5rem;
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.carousel-btn {
  padding: 0.5rem;
  border-radius: 50%;
  background-color: rgba(179, 85, 73, 0.1);
  transition: background-color 0.3s ease;
}

.carousel-btn:hover {
  background-color: rgba(179, 85, 73, 0.2);
}

.carousel-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: rgba(179, 85, 73, 0.3);
  transition: all 0.3s ease;
}

.carousel-dot.active {
  width: 1.5rem;
  background-color: var(--primary);
}

.carousel-hint {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.75rem;
}

/* ========================================
   Journey/Progression Section
   ======================================== */
.journey {
  padding: 6rem 0;
}

@media (min-width: 1024px) {
  .journey {
    padding: 8rem 0;
  }
}

.journey-wrapper {
  max-width: 70rem;
  margin: 0 auto;
}

/* Progression Chart (Desktop) */
.progression-chart {
  display: none;
  background-color: var(--cream);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-medium);
  overflow: hidden;
}

@media (min-width: 768px) {
  .progression-chart {
    display: block;
  }
}

.stage {
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1rem;
}

.stage:last-of-type {
  margin-bottom: 0;
}

.stage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  color: white;
}

.stage-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stage-name {
  font-weight: 600;
  font-size: 0.875rem;
}

.stage-subtitle {
  opacity: 0.8;
  font-size: 0.875rem;
}

.stage-days {
  font-size: 0.875rem;
  opacity: 0.8;
}

.stage-1-header { background-color: var(--stage-1-header); }
.stage-2-header { background-color: var(--stage-2-header); }
.stage-3-header { background-color: var(--stage-3-header); }
.stage-4-header { background-color: var(--stage-4-header); }

.stage-days-row {
  display: flex;
}

.stage-icon-cell {
  width: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.days-grid {
  flex: 1;
  display: grid;
}

.days-7 {
  grid-template-columns: repeat(7, 1fr);
}

.days-grid span {
  text-align: center;
  padding: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.days-grid span:last-child {
  border-right: none;
}

.stage-row {
  display: flex;
}

.row-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
}

.items-row {
  flex: 1;
  display: flex;
}

.item {
  text-align: center;
  padding: 0.75rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.item:last-child {
  border-right: none;
}

.item-name {
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
}

.item-chinese {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  margin-top: 0.125rem;
}

/* Stage Background Colors */
.stage-1-bg { background-color: var(--stage-1); }
.stage-1-bg-90 { background-color: rgba(247, 143, 110, 0.9); }
.stage-1-bg-80 { background-color: rgba(247, 143, 110, 0.8); }

.stage-2-bg { background-color: var(--stage-2); }
.stage-2-bg-90 { background-color: rgba(201, 73, 59, 0.9); }
.stage-2-bg-80 { background-color: rgba(201, 73, 59, 0.8); }

.stage-3-bg { background-color: var(--stage-3); }
.stage-3-bg-90 { background-color: rgba(160, 63, 79, 0.9); }
.stage-3-bg-80 { background-color: rgba(160, 63, 79, 0.8); }

.stage-4-bg { background-color: var(--stage-4); }
.stage-4-bg-90 { background-color: rgba(138, 53, 66, 0.9); }
.stage-4-bg-80 { background-color: rgba(138, 53, 66, 0.8); }

/* Chart Legend */
.chart-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 73, 59, 0.2);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(19, 19, 19, 0.7);
}

.legend-icon {
  width: 1rem;
  height: 1rem;
}

.chart-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* Journey Carousel (Mobile) */
.journey-carousel {
  display: block;
}

@media (min-width: 768px) {
  .journey-carousel {
    display: none;
  }
}

/* Stage Cards (Mobile) */
.stage-card {
  background-color: var(--cream);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.stage-card-header {
  padding: 0.75rem 1rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stage-card-header .stage-name {
  font-weight: 600;
}

.stage-card-header .stage-subtitle {
  opacity: 0.8;
  font-size: 0.875rem;
  margin-left: 0.5rem;
}

.stage-badge {
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
}

.stage-card-content {
  padding: 1rem;
  flex: 1;
}

.stage-card-section {
  margin-bottom: 0.75rem;
}

.stage-card-section:last-child {
  margin-bottom: 0;
}

.stage-card-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(19, 19, 19, 0.7);
  margin-bottom: 0.5rem;
}

.stage-card-label svg {
  width: 1rem;
  height: 1rem;
}

.stage-card-label span {
  font-size: 0.875rem;
  font-weight: 500;
}

.stage-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  font-size: 0.875rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  color: white;
}

.stage-1-tag { background-color: var(--stage-1); }
.stage-1-tag-light { background-color: rgba(247, 143, 110, 0.8); }
.stage-2-tag { background-color: var(--stage-2); }
.stage-2-tag-light { background-color: rgba(201, 73, 59, 0.8); }
.stage-3-tag { background-color: var(--stage-3); }
.stage-3-tag-light { background-color: rgba(160, 63, 79, 0.8); }
.stage-4-tag { background-color: var(--stage-4); }
.stage-4-tag-light { background-color: rgba(138, 53, 66, 0.8); }

/* ========================================
   CTA/Products Section
   ======================================== */
.cta {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .cta {
    padding: 8rem 0;
  }
}

.cta-bg-decoration {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--nude) 50%, var(--peach) 100%);
  opacity: 0.3;
}

.cta-bg-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background-color: rgba(179, 85, 73, 0.05);
  border-radius: 50%;
  filter: blur(3rem);
}

.cta-container {
  position: relative;
}

.cta-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.cta-logo {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 2rem;
}

.cta-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* Products Grid (Desktop) */
.products-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .products-grid {
    display: grid;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    gap: 2.5rem;
  }
}

.product-card {
  position: relative;
  background-color: var(--card);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  text-align: left;
  width: 100%;
  height: 100%;
}

.product-card:hover {
  box-shadow: var(--shadow-elevated);
}

.product-card.popular {
  box-shadow: 0 0 0 2px rgba(179, 85, 73, 0.3), var(--shadow-medium);
}

.popular-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background-color: rgba(179, 85, 73, 0.9);
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  z-index: 10;
}

.product-image-wrapper {
  aspect-ratio: 1;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-info {
  padding: 1rem;
  text-align: center;
}

.product-name {
  font-weight: 600;
  color: var(--foreground);
}

.product-price {
  font-size: 0.875rem;
  color: rgba(89, 89, 89, 0.7);
  margin-top: 0.25rem;
}

/* Products Carousel (Mobile) */
.products-carousel {
  display: block;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .products-carousel {
    display: none;
  }
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
  position: relative;
  padding: 5rem 0 7rem;
  background-color: var(--background);
  overflow: hidden;
}

@media (min-width: 768px) {
  .faq {
    padding: 7rem 0 9rem;
  }
}

.faq-decoration-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 16rem;
  height: 16rem;
  background-color: rgba(179, 85, 73, 0.05);
  border-radius: 50%;
  filter: blur(3rem);
  transform: translate(-50%, -50%);
}

.faq-decoration-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20rem;
  height: 20rem;
  background-color: rgba(248, 159, 114, 0.05);
  border-radius: 50%;
  filter: blur(3rem);
  transform: translate(50%, 50%);
}

.faq-container {
  position: relative;
  z-index: 10;
}

.faq-title {
  font-weight: 700;
  margin-bottom: 1rem;
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .faq-question {
    font-size: 1.125rem;
  }
}

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

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  padding: 4rem 0;
  background-color: var(--foreground);
  color: var(--background);
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.footer-brand {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  width: 3rem;
  height: 3rem;
  filter: invert(1);
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.footer-description {
  color: rgba(248, 246, 244, 0.7);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 24rem;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-list a {
  font-size: 0.875rem;
  color: rgba(248, 246, 244, 0.7);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(248, 246, 244, 0.2);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(248, 246, 244, 0.5);
}

/* ========================================
   Modal
   ======================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal {
  position: relative;
  background-color: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  max-width: 28rem;
  width: 100%;
  box-shadow: var(--shadow-elevated);
}

@media (min-width: 640px) {
  .modal {
    padding: 2rem;
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--foreground);
}

.modal-close svg {
  width: 1.25rem;
  height: 1.25rem;
}

.modal-content {
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.modal-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.modal-product-name {
  font-weight: 500;
  color: var(--foreground);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  background-color: white;
  transition: border-color 0.3s ease;
}

.modal-input:focus {
  outline: none;
  border-color: var(--primary);
}

.modal-error {
  color: var(--destructive);
  font-size: 0.875rem;
  margin-top: -0.5rem;
}

.modal-btn {
  width: 100%;
}

/* ========================================
   Toast Notification
   ======================================== */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-elevated);
  z-index: 60;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.toast-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.toast-message {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ========================================
   Animations
   ======================================== */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    animation: fadeIn 0.6s ease forwards;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
