@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Nunito+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --color-cream: #faf7f2;
  --color-warm-white: #fffef9;
  --color-amber: #d4a853;
  --color-amber-dark: #b8923f;
  --color-charcoal: #2c2c2c;
  --color-soft-brown: #8b7355;
  --color-blush: #e8d5c4;
  --color-shadow: rgba(44, 44, 44, 0.08);
  --color-shadow-md: rgba(44, 44, 44, 0.12);
  --color-overlay: rgba(44, 44, 44, 0.6);
  --color-success: #5a8f5a;
  --color-error: #c45c5c;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito Sans', sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.5rem;
  --text-xl: 2rem;
  --text-2xl: 2.5rem;
  --text-3xl: 3rem;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 50%;

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  --shadow-sm: 0 1px 3px var(--color-shadow);
  --shadow-md: 0 4px 12px var(--color-shadow-md);
  --shadow-lg: 0 8px 24px var(--color-shadow-md);

  --max-width: 75rem;
  --header-height: 4rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--color-charcoal);
  background-color: var(--color-cream);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-amber);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: var(--text-2xl);
}

h2 {
  font-size: var(--text-xl);
}

h3 {
  font-size: var(--text-lg);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  padding: var(--space-md) 0;
  transform: translateY(0);
  transition: transform var(--transition-base), background var(--transition-base);
}

.header.scrolled {
  position: fixed;
  background: var(--color-warm-white);
  box-shadow: var(--shadow-sm);
}

.header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--color-charcoal);
  letter-spacing: 0.02em;
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: var(--space-lg);
}

.nav-desktop a {
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-amber);
  transition: width var(--transition-base);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--space-sm);
  z-index: 200;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-charcoal);
  transition: var(--transition-base);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 80vh;
  background: var(--color-warm-white);
  padding: var(--space-3xl) var(--space-xl);
  padding-top: calc(var(--header-height) + var(--space-xl));
  transition: transform var(--transition-base);
  transform: translateY(-100%);
  z-index: 150;
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}

.nav-mobile.active {
  transform: translateY(0);
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.nav-mobile a {
  font-size: var(--text-sm);
  font-weight: 500;
  display: block;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-blush);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-overlay);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  z-index: 140;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(250, 247, 242, 0.88) 0%, rgba(232, 213, 196, 0.88) 100%),
    url('../visuals/bg-image-1.webp') center / cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-amber-dark);
  margin-bottom: var(--space-md);
  padding: var(--space-xs) var(--space-sm);
  background: rgba(212, 168, 83, 0.15);
  border-radius: var(--radius-sm);
}

.hero h1 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
  color: var(--color-charcoal);
}

.hero p {
  font-size: var(--text-sm);
  color: var(--color-soft-brown);
  margin-bottom: var(--space-lg);
  max-width: 90%;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.btn-primary {
  background: var(--color-amber);
  color: var(--color-warm-white);
}

.btn-primary:hover {
  background: var(--color-amber-dark);
  color: var(--color-warm-white);
}

.btn-outline {
  border: 1px solid var(--color-charcoal);
  color: var(--color-charcoal);
}

.btn-outline:hover {
  background: var(--color-charcoal);
  color: var(--color-warm-white);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-tag {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-amber-dark);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: var(--text-xl);
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}

.section-desc {
  font-size: var(--text-sm);
  color: var(--color-soft-brown);
  max-width: 500px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.feature-card {
  background: var(--color-warm-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  text-align: center;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-amber) 0%, var(--color-amber-dark) 100%);
  color: var(--color-warm-white);
  border-radius: var(--radius-md);
  font-size: var(--text-lg);
  margin: 0 auto var(--space-md);
}

.feature-card h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-sm);
}

.feature-card p {
  font-size: var(--text-xs);
  color: var(--color-soft-brown);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.product-card {
  background: var(--color-warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.product-card:hover {
  box-shadow: var(--shadow-md);
}

.product-image {
  position: relative;
  padding-top: 75%;
  background: var(--color-blush);
  overflow: hidden;
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: var(--space-md);
}

.product-name {
  font-size: var(--text-base);
  margin-bottom: var(--space-xs);
}

.product-desc {
  font-size: var(--text-xs);
  color: var(--color-soft-brown);
  margin-bottom: var(--space-sm);
}

.product-price {
  font-family: var(--font-heading);
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--color-amber-dark);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.process-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-amber);
  color: var(--color-warm-white);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  border-radius: var(--radius-full);
}

.step-content h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-xs);
}

.step-content p {
  font-size: var(--text-xs);
  color: var(--color-soft-brown);
}

.testimonials-wrapper {
  overflow: hidden;
}

.testimonial-card {
  background: var(--color-warm-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
}

.testimonial-text {
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--color-soft-brown);
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: var(--space-lg);
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -5px;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-amber);
}

.testimonial-author {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-charcoal);
}

.cta-section {
  background: linear-gradient(135deg, var(--color-charcoal) 0%, #1a1a1a 100%);
  color: var(--color-warm-white);
  text-align: center;
}

.cta-section .section-tag {
  color: var(--color-amber);
}

.cta-section .section-title {
  color: var(--color-warm-white);
}

.cta-section .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-lg);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.contact-form-container {
  background: var(--color-warm-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-charcoal);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-family: inherit;
  font-size: var(--text-sm);
  border: 1px solid var(--color-blush);
  border-radius: var(--radius-md);
  background: var(--color-cream);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-amber);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  accent-color: var(--color-amber);
}

.checkbox-group label {
  font-size: var(--text-xs);
  font-weight: 400;
  margin-bottom: 0;
}

.checkbox-group a {
  color: var(--color-amber-dark);
  text-decoration: underline;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-amber);
  color: var(--color-warm-white);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
}

.contact-item h4 {
  font-size: var(--text-sm);
  margin-bottom: var(--space-xs);
}

.contact-item p {
  font-size: var(--text-xs);
  color: var(--color-soft-brown);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 250px;
  box-shadow: var(--shadow-sm);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer {
  background: var(--color-charcoal);
  color: var(--color-warm-white);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-brand {
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: var(--text-md);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.footer-desc {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
  max-width: 300px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
  justify-content: center;
}

.footer-links a {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-amber);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-charcoal);
  color: var(--color-warm-white);
  padding: var(--space-md);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--transition-base);
  box-shadow: 0 -4px 20px var(--color-shadow-md);
}

.cookie-popup.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.cookie-content p {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.8);
}

.cookie-content a {
  color: var(--color-amber);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
}

.cookie-btn {
  padding: var(--space-xs) var(--space-md);
  font-size: var(--text-xs);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.cookie-btn.accept {
  background: var(--color-amber);
  color: var(--color-charcoal);
}

.cookie-btn.decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-warm-white);
}

.page-header {
  padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-blush) 100%);
  text-align: center;
}

.page-header h1 {
  margin-bottom: var(--space-sm);
}

.page-header p {
  font-size: var(--text-sm);
  color: var(--color-soft-brown);
  max-width: 500px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  font-size: var(--text-xs);
  margin-bottom: var(--space-md);
}

.breadcrumb a {
  color: var(--color-soft-brown);
}

.breadcrumb span {
  color: var(--color-charcoal);
}

.content-section {
  padding: var(--space-2xl) 0;
}

.content-block {
  margin-bottom: var(--space-xl);
}

.content-block h2 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
}

.content-block h3 {
  font-size: var(--text-md);
  margin-bottom: var(--space-sm);
}

.content-block p {
  margin-bottom: var(--space-md);
  color: var(--color-soft-brown);
}

.content-block ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
  list-style: disc;
}

.content-block li {
  margin-bottom: var(--space-sm);
  color: var(--color-soft-brown);
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.error-content h1 {
  font-size: var(--text-3xl);
  color: var(--color-amber);
  margin-bottom: var(--space-sm);
}

.error-content h2 {
  margin-bottom: var(--space-md);
}

.error-content p {
  color: var(--color-soft-brown);
  margin-bottom: var(--space-lg);
}

.thank-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-blush) 100%);
}

.thank-content {
  max-width: 500px;
}

.thank-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-success);
  color: var(--color-warm-white);
  border-radius: var(--radius-full);
  font-size: var(--text-xl);
  margin: 0 auto var(--space-lg);
}

.thank-content h1 {
  margin-bottom: var(--space-md);
}

.thank-content p {
  color: var(--color-soft-brown);
  margin-bottom: var(--space-lg);
}

.scent-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.scent-card {
  background: var(--color-warm-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: var(--space-md);
  align-items: center;
  transition: var(--transition-base);
}

.scent-card:hover {
  box-shadow: var(--shadow-md);
}

.scent-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-blush) 0%, var(--color-cream) 100%);
  border-radius: var(--radius-md);
  font-size: var(--text-lg);
}

.scent-info h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-xs);
}

.scent-info p {
  font-size: var(--text-xs);
  color: var(--color-soft-brown);
}

.kits-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.kit-card {
  background: var(--color-warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.kit-image {
  position: relative;
  padding-top: 60%;
  background: var(--color-blush);
}

.kit-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kit-content {
  padding: var(--space-lg);
}

.kit-badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-amber-dark);
  background: rgba(212, 168, 83, 0.15);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.kit-content h3 {
  font-size: var(--text-md);
  margin-bottom: var(--space-sm);
}

.kit-content p {
  font-size: var(--text-sm);
  color: var(--color-soft-brown);
  margin-bottom: var(--space-md);
}

.kit-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.kit-feature {
  font-size: var(--text-xs);
  color: var(--color-soft-brown);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.kit-feature i {
  color: var(--color-amber);
  font-size: var(--text-xs);
}

.kit-price {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-amber-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-image img {
  width: 100%;
  height: auto;
}

.about-text h2 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
}

.about-text p {
  color: var(--color-soft-brown);
  margin-bottom: var(--space-md);
}

.stats-row {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-amber);
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--color-soft-brown);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-warm-white);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md);
  font-size: var(--text-sm);
  font-weight: 600;
  text-align: left;
  background: none;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--color-cream);
}

.faq-question i {
  transition: transform var(--transition-fast);
  color: var(--color-amber);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-answer p {
  padding: 0 var(--space-md) var(--space-md);
  font-size: var(--text-sm);
  color: var(--color-soft-brown);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 1.5rem;
  }
  .section-title {
    font-size: 1.25rem;
  }
  
}


@media (min-width: 480px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .scent-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  :root {
    --text-2xl: 3rem;
    --text-xl: 2.25rem;
    --text-lg: 1.75rem;
  }

  .nav-desktop {
    display: block;
  }

  .burger {
    display: none;
  }

  .hero h1 {
    font-size: var(--text-2xl);
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }

  .footer-brand {
    text-align: left;
  }

  .footer-desc {
    margin: 0;
  }

  .footer-links {
    justify-content: flex-end;
  }

  .cookie-content {
    flex-direction: row;
    text-align: left;
  }

  .kits-showcase {
    grid-template-columns: repeat(3, 1fr);
  }

  .scent-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-xl);
  }

  .hero-content {
    max-width: 50%;
  }

  .process-steps {
    flex-direction: row;
    gap: var(--space-xl);
  }

  .process-step {
    flex-direction: column;
    text-align: center;
    flex: 1;
  }

  .step-number {
    margin: 0 auto var(--space-md);
  }

  .testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }

  .testimonial-card {
    margin-bottom: 0;
  }
}
