/* LANACRE - Luxury Beauty Single-Page Website */
/* Unified stylesheet with dynamic language support (EN/FR/AR) */
/* RTL styles integrated using [dir="rtl"] selectors */

/* ========================================================================
   1. RESET & CUSTOM PROPERTIES
   ======================================================================== */

:root {
  /* Brand Colors - Black & Gold Luxury */
  --emerald: #1A1A1A;
  --emerald-light: #2D2D2D;
  --emerald-dark: #0D0D0D;
  --gold: #B8956A;
  --gold-light: #D4B48A;
  --gold-dark: #8C6D47;
  --cream: #F2EDE6;
  --cream-light: #F8F5F0;
  --cream-dark: #E5DDD2;
  --white: #FFFFFF;
  --black: #0D0D0D;
  --text: #1A1A1A;
  --text-light: #5A5A5A;
  --sage: #B8956A;
  --blush: #E8D5C8;
  --warm-bg: #FDFAF6;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.4s ease;
  --transition-slower: 0.5s ease;
  --transition-smooth: 0.6s ease;

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-2xl: 60px;
  --spacing-3xl: 80px;
  --spacing-4xl: 100px;

  /* Border Radius */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 50px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--warm-bg);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

::selection {
  background: var(--gold-light);
  color: var(--white);
}

/* ========================================================================
   2. TYPOGRAPHY
   ======================================================================== */

h1 {
  font-family: 'Lora', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--emerald-dark);
}

h2 {
  font-family: 'Lora', serif;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--emerald-dark);
}

h3 {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--emerald-dark);
}

h4 {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--emerald-dark);
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto var(--spacing-2xl);
  line-height: 1.7;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-md);
  color: var(--emerald-dark);
}

.gold-text {
  color: var(--gold);
}

.emerald-text {
  color: var(--emerald);
}

/* ========================================================================
   3. LAYOUT UTILITIES
   ======================================================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-4xl) 0;
  position: relative;
}

.section--cream {
  background: var(--cream-light);
}

.section--white {
  background: var(--white);
}

.section--warm {
  background: var(--warm-bg);
}

.section--emerald {
  background: var(--emerald-dark);
  color: var(--cream);
}

.grid {
  display: grid;
  gap: var(--spacing-lg);
}

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

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

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

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

/* ========================================================================
   4. BUTTONS
   ======================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: 15px 38px;
  border-radius: var(--radius-full);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-slow);
  text-align: center;
  position: relative;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(159, 129, 81, 0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--secondary:hover {
  background: var(--gold);
  color: var(--white);
}

.btn--emerald {
  background: var(--emerald);
  color: var(--white);
  border-color: var(--emerald);
}

.btn--emerald:hover {
  background: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 72, 52, 0.25);
}

.btn--whatsapp {
  background: #25D366;
  color: white;
  border-color: #25D366;
}

.btn--whatsapp:hover {
  background: #1DA851;
  transform: translateY(-2px);
}

.btn--large {
  padding: 18px 48px;
  font-size: 1.1rem;
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ========================================================================
   5. PRELOADER
   ======================================================================== */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--cream-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  letter-spacing: 8px;
  color: var(--emerald);
  animation: preloaderPulse 1.5s ease-in-out infinite;
  text-transform: uppercase;
}

@keyframes preloaderPulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

/* ========================================================================
   6. COOKIE BANNER
   ======================================================================== */

.cookie-banner {
  position: fixed;
  bottom: var(--spacing-md);
  left: var(--spacing-md);
  right: var(--spacing-md);
  max-width: 500px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md) 28px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  transform: translateY(120%);
  transition: transform var(--transition-slow) ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner.hidden {
  transform: translateY(120%);
}

.cookie-banner__text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--spacing-sm);
}

.cookie-banner__btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
}

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

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

.cookie-banner__btn--decline {
  background: var(--cream-dark);
  color: var(--text);
  flex: 1;
}

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

/* ========================================================================
   7. NAVIGATION
   ======================================================================== */

.nav,
.navbar {
  position: fixed;
  top: var(--spacing-md);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1240px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 60px;
  padding: 10px 28px;
  z-index: 8000;
  transition: all var(--transition-slow) ease;
  box-shadow: var(--shadow-sm);
}

.nav--scrolled,
.navbar.nav--scrolled {
  top: 8px;
  padding: 8px 24px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

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

.nav__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
}

.nav__logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--emerald-dark);
  text-transform: uppercase;
  line-height: 1.2;
}

.nav__logo-tagline {
  font-size: 0.5rem;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 1px;
  font-weight: 500;
}

.nav__links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition-base);
  position: relative;
  padding: 4px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--transition-base) ease;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link:hover,
.nav__link.active {
  color: var(--emerald);
}

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

.nav__lang {
  position: relative;
}

.nav__lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--cream-dark);
  background: transparent;
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition-base);
}

.nav__lang-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.nav__lang-btn svg {
  width: 16px;
  height: 16px;
}

.nav__lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition-base);
  min-width: 140px;
  z-index: 100;
}

.nav__lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__lang-option {
  display: block;
  width: 100%;
  padding: 12px 20px;
  border: none;
  background: none;
  text-align: left;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--transition-fast);
  color: var(--text);
}

.nav__lang-option:hover {
  background: var(--cream-light);
}

.nav__lang-option.active {
  color: var(--gold);
  font-weight: 600;
}

.nav__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  transition: all var(--transition-base);
}

.nav__whatsapp:hover {
  background: #1DA851;
  transform: scale(1.08);
}

.nav__whatsapp svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 8100;
}

.nav__hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--emerald-dark);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav__hamburger.active .nav__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.nav__hamburger.active .nav__hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active .nav__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

.nav__mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 8050;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.nav__mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.nav__mobile-link {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  color: var(--emerald-dark);
  transition: color var(--transition-base);
}

.nav__mobile-link:hover {
  color: var(--gold);
}

/* ========================================================================
   8. HERO SECTION
   ======================================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--warm-bg) 40%, #F0E6D3 100%);
  padding-top: 100px;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: var(--spacing-xl);
  padding: 8px 20px;
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius-full);
}

.hero__title {
  font-size: 3.8rem;
  line-height: 1.15;
  margin-bottom: var(--spacing-md);
  color: var(--emerald-dark);
}

.hero__title span {
  color: var(--gold);
  display: inline;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
  z-index: 2;
}

.hero__image-wrapper {
  position: relative;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--cream);
  box-shadow: 0 20px 60px rgba(10, 72, 52, 0.12);
}

.hero__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__blob {
  position: absolute;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: blobMorph 8s ease-in-out infinite;
  opacity: 0.15;
  z-index: 0;
}

.hero__blob--1 {
  width: 400px;
  height: 400px;
  background: var(--gold-light);
  top: -100px;
  right: -50px;
  animation-delay: 0s;
}

.hero__blob--2 {
  width: 300px;
  height: 300px;
  background: var(--sage);
  bottom: -80px;
  left: -60px;
  animation-delay: -3s;
}

.hero__blob--3 {
  width: 200px;
  height: 200px;
  background: var(--blush);
  top: 50%;
  left: 45%;
  animation-delay: -5s;
}

@keyframes blobMorph {
  0% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
  25% {
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 60% 30% 70% 40%;
  }
  75% {
    border-radius: 50% 40% 60% 50% / 35% 55% 45% 65%;
  }
  100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
}

.hero__leaf {
  position: absolute;
  z-index: 1;
  opacity: 0.12;
  animation: floatLeaf 6s ease-in-out infinite;
}

@keyframes floatLeaf {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* ========================================================================
   9. WAVE DIVIDERS
   ======================================================================== */

.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

.wave-divider--cream svg path {
  fill: var(--cream-light);
}

.wave-divider--white svg path {
  fill: var(--white);
}

.wave-divider--warm svg path {
  fill: var(--warm-bg);
}

.wave-divider--emerald svg path {
  fill: var(--emerald-dark);
}

.wave-divider--flip {
  transform: scaleY(-1);
}

/* ========================================================================
   10. PHILOSOPHY SECTION
   ======================================================================== */

.philosophy {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.philosophy__intro {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

.philosophy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.philosophy__card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 48px 32px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-slow) ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.philosophy__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.philosophy__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream-light), var(--cream));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.philosophy__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--emerald);
  fill: none;
  stroke-width: 1.5;
}

.philosophy__card-title {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  color: var(--emerald-dark);
  margin-bottom: 12px;
}

.philosophy__card-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

.philosophy__quote {
  font-family: 'Lora', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--emerald);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}

.philosophy__quote-mark {
  font-family: 'Lora', serif;
  font-size: 4rem;
  color: var(--gold-light);
  position: absolute;
  top: -20px;
  opacity: 0.5;
}

.philosophy__quote-mark--left {
  left: 0;
}

.philosophy__quote-mark--right {
  right: 0;
}

/* ========================================================================
   11. PRODUCTS SECTION
   ======================================================================== */

.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-slow) ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.product-card__image {
  height: 320px;
  background: linear-gradient(135deg, var(--cream-light), var(--cream));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.6s ease;
}

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

.product-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-card__info {
  padding: 32px;
}

.product-card__name {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  color: var(--emerald-dark);
  margin-bottom: 8px;
}

.product-card__type {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
}

.product-card__desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

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

.product-card__price {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  color: var(--emerald-dark);
  font-weight: 700;
}

.product-card__cta {
  padding: 12px 28px;
  font-size: 0.9rem;
}

/* ========================================================================
   12. STATS / SCIENCE SECTION
   ======================================================================== */

.stats {
  background: var(--emerald-dark);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

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

.stat-item__number {
  font-family: 'Lora', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-item__suffix {
  font-family: 'Lora', serif;
  font-size: 2.5rem;
  color: var(--gold);
}

.stat-item__label {
  font-size: 1rem;
  color: var(--cream);
  margin-top: var(--spacing-md);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 300;
}

.stats__description {
  max-width: 700px;
  margin: 48px auto 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(235, 225, 207, 0.8);
}

/* ========================================================================
   13. INGREDIENTS SECTION
   ======================================================================== */

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

.ingredient-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-slow) ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.ingredient-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border-color: var(--gold-light);
}

.ingredient-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.ingredient-card__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: white;
  stroke-width: 1.5;
}

.ingredient-card__name {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  color: var(--emerald-dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.ingredient-card__benefit {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========================================================================
   14. BENEFITS SECTION
   ======================================================================== */

.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

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

.benefit-row:nth-child(even) .benefit-row__image {
  order: 2;
}

.benefit-row:nth-child(even) .benefit-row__content {
  order: 1;
}

.benefit-row__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--cream);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.benefit-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-row__content {
  direction: ltr;
}

.benefit-row__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--cream-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-xl);
}

.benefit-row__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.benefit-row__title {
  font-family: 'Lora', serif;
  font-size: 1.6rem;
  color: var(--emerald-dark);
  margin-bottom: var(--spacing-md);
}

.benefit-row__text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ========================================================================
   15. RITUAL / HOW TO USE
   ======================================================================== */

.ritual__timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 60px;
}

.ritual__timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-light), var(--emerald-light));
  border-radius: 2px;
}

.ritual__step {
  position: relative;
  margin-bottom: 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.ritual__step:last-child {
  margin-bottom: 0;
}

.ritual__number {
  position: absolute;
  left: -48px;
  top: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(159, 129, 81, 0.3);
}

.ritual__step-title {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  color: var(--emerald-dark);
  margin-bottom: 8px;
}

.ritual__step-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ========================================================================
   16. TESTIMONIALS
   ======================================================================== */

.testimonials__carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
}

.testimonial-card__inner {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  text-align: center;
  position: relative;
}

.testimonial-card__quote-mark {
  position: absolute;
  top: 24px;
  left: 32px;
  opacity: 0.1;
}

.testimonial-card__quote-mark svg {
  width: 48px;
  height: 48px;
  fill: var(--emerald);
}

.testimonial-card__text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
  font-family: 'Lora', serif;
}

.testimonial-card__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-card__stars svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

.testimonial-card__author {
  font-weight: 600;
  color: var(--emerald-dark);
  font-size: 1rem;
}

.testimonial-card__location {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: var(--spacing-lg);
}

.testimonials__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  padding: 0;
}

.testimonials__dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ========================================================================
   17. DISTRIBUTION
   ======================================================================== */

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

.country-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-slow) ease;
  border-top: 4px solid var(--emerald);
}

.country-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.country-card__name {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  color: var(--emerald-dark);
  margin-bottom: 8px;
}

.country-card__detail {
  font-size: 0.85rem;
  color: var(--text-light);
}

.distribution__note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
}

/* ========================================================================
   18. NEWSLETTER
   ======================================================================== */

.newsletter {
  background: linear-gradient(135deg, var(--cream) 0%, #F0E6D3 50%, var(--cream-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter__form {
  display: flex;
  max-width: 500px;
  margin: 32px auto 0;
  gap: 0;
  border-radius: var(--radius-full);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.newsletter__input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  background: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  outline: none;
  min-width: 0;
  color: var(--text);
}

.newsletter__input::placeholder {
  color: var(--text-light);
}

.newsletter__btn {
  padding: 16px 32px;
  background: var(--gold);
  color: white;
  border: none;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-base);
  white-space: nowrap;
}

.newsletter__btn:hover {
  background: var(--gold-dark);
}

.newsletter__privacy {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: var(--spacing-md);
}

.newsletter__success {
  display: none;
  font-size: 1rem;
  color: var(--emerald);
  font-weight: 600;
  margin-top: var(--spacing-md);
}

.newsletter__success.visible {
  display: block;
}

/* ========================================================================
   19. CONTACT SECTION
   ======================================================================== */

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__card {
  display: flex;
  gap: var(--spacing-xl);
  align-items: flex-start;
  padding: var(--spacing-md);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-base);
}

.contact__card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.contact__card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--cream-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--emerald);
  fill: none;
  stroke-width: 1.5;
}

.contact__card-icon--whatsapp {
  background: #25D366;
}

.contact__card-icon--whatsapp svg {
  stroke: white;
}

.contact__card-title {
  font-weight: 600;
  color: var(--emerald-dark);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.contact__card-text {
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact__card-text a {
  color: var(--gold);
  transition: color var(--transition-base);
}

.contact__card-text a:hover {
  color: var(--gold-dark);
}

.contact__form {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.form__group {
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-md);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--warm-bg);
  transition: all var(--transition-base);
  outline: none;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(159, 129, 81, 0.1);
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

.form__error {
  font-size: 0.8rem;
  color: #D32F2F;
  margin-top: 6px;
  display: none;
}

.form__error.visible {
  display: block;
}

.form__submit {
  width: 100%;
}

.form__success {
  display: none;
  text-align: center;
  padding: 24px;
  background: var(--cream-light);
  border-radius: var(--radius-md);
  color: var(--emerald);
  font-weight: 600;
}

.form__success.visible {
  display: block;
}

/* ========================================================================
   20. FOOTER
   ======================================================================== */

.footer {
  background: var(--emerald-dark);
  color: var(--cream);
  padding: var(--spacing-3xl) 0 var(--spacing-md);
  position: relative;
}

.footer__content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--spacing-md);
}

.footer__brand {
  padding-right: var(--spacing-lg);
}

.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  letter-spacing: 6px;
  color: var(--cream);
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
  font-weight: 600;
}

.footer__tagline {
  font-size: 0.85rem;
  color: rgba(235, 225, 207, 0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-xl);
  font-weight: 500;
}

.footer__about {
  font-size: 0.9rem;
  color: rgba(235, 225, 207, 0.7);
  line-height: 1.7;
  max-width: 300px;
}

.footer__column-title {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: var(--spacing-lg);
  font-weight: 600;
}

.footer__link {
  display: block;
  font-size: 0.9rem;
  color: rgba(235, 225, 207, 0.6);
  margin-bottom: 12px;
  transition: color var(--transition-base);
}

.footer__link:hover {
  color: var(--gold-light);
}

.footer__social {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(235, 225, 207, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.footer__social-link:hover {
  border-color: var(--gold);
  background: rgba(159, 129, 81, 0.1);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--cream);
}

.footer__bottom {
  border-top: 1px solid rgba(235, 225, 207, 0.1);
  padding-top: var(--spacing-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

.footer__company {
  font-size: 0.85rem;
  color: rgba(235, 225, 207, 0.5);
}

.footer__copy {
  font-size: 0.85rem;
  color: rgba(235, 225, 207, 0.4);
}

/* ========================================================================
   21. WHATSAPP FLOAT
   ======================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 7000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.whatsapp-float.visible {
  opacity: 1;
  visibility: visible;
}

.whatsapp-float__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-base);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float__link:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float__link svg {
  width: 30px;
  height: 30px;
  fill: white;
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.55), 0 0 0 12px rgba(37, 211, 102, 0.08);
  }
}

/* ========================================================================
   22. BACK TO TOP
   ======================================================================== */

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 32px;
  z-index: 7000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--emerald);
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(10, 72, 52, 0.2);
  transition: all var(--transition-base);
}

.back-to-top__btn:hover {
  background: var(--emerald-dark);
  transform: translateY(-2px);
}

.back-to-top__btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: white;
  stroke-width: 2;
}

/* ========================================================================
   23. SCROLL ANIMATIONS
   ======================================================================== */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

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

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

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

/* ========================================================================
   24. RTL OVERRIDES (Language: Arabic)
   ======================================================================== */

[dir="rtl"] body {
  font-family: 'Noto Sans Arabic', 'Nunito', sans-serif;
  text-align: right;
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4 {
  font-family: 'Noto Sans Arabic', 'Lora', serif;
}

[dir="rtl"] .nav {
  direction: rtl;
}

[dir="rtl"] .nav__logo {
  align-items: flex-end;
}

[dir="rtl"] .nav__links {
  direction: rtl;
}

[dir="rtl"] .nav__link::after {
  left: auto;
  right: 0;
}

[dir="rtl"] .nav__lang-dropdown {
  right: auto;
  left: 0;
}

[dir="rtl"] .nav__lang-option {
  text-align: right;
}

[dir="rtl"] .hero__container {
  direction: rtl;
}

[dir="rtl"] .hero__subtitle {
  margin-left: auto;
  margin-right: 0;
}

[dir="rtl"] .section-subtitle {
  text-align: center;
}

[dir="rtl"] .philosophy__quote {
  direction: rtl;
}

[dir="rtl"] .product-card__badge {
  right: auto;
  left: 20px;
}

[dir="rtl"] .ritual__timeline {
  padding-left: 0;
  padding-right: 60px;
}

[dir="rtl"] .ritual__timeline::before {
  left: auto;
  right: 24px;
}

[dir="rtl"] .ritual__number {
  left: auto;
  right: -48px;
}

[dir="rtl"] .contact__card {
  direction: rtl;
}

[dir="rtl"] .contact__card-icon {
  margin-right: 0;
  margin-left: auto;
}

[dir="rtl"] .form__label {
  text-align: right;
}

[dir="rtl"] .footer__content {
  direction: rtl;
}

[dir="rtl"] .footer__bottom {
  direction: rtl;
}

[dir="rtl"] .footer__about {
  margin-left: auto;
  margin-right: 0;
}

[dir="rtl"] .footer__brand {
  padding-right: 0;
  padding-left: var(--spacing-lg);
}

[dir="rtl"] .whatsapp-float {
  right: auto;
  left: 28px;
}

[dir="rtl"] .back-to-top {
  right: auto;
  left: 32px;
}

[dir="rtl"] .cookie-banner {
  left: auto;
  right: var(--spacing-md);
}

[dir="rtl"] .benefit-row:nth-child(even) .benefit-row__image {
  order: 1;
}

[dir="rtl"] .benefit-row:nth-child(even) .benefit-row__content {
  order: 2;
}

[dir="rtl"] .hero__blob--1 {
  right: auto;
  left: -50px;
}

[dir="rtl"] .hero__blob--2 {
  left: auto;
  right: -60px;
}

[dir="rtl"] .btn {
  direction: rtl;
}

[dir="rtl"] .newsletter__form {
  direction: rtl;
}

[dir="rtl"] .contact__grid {
  direction: rtl;
}

/* ========================================================================
   25. RESPONSIVE BREAKPOINTS
   ======================================================================== */

@media (max-width: 1024px) {
  h1,
  .hero__title {
    font-size: 3rem;
  }

  h2,
  .section-title {
    font-size: 2.2rem;
  }

  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    margin: 0 auto 36px;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__image {
    max-width: 500px;
    margin: 40px auto 0;
  }

  .philosophy__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ingredients__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .distribution__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h1,
  .hero__title {
    font-size: 2.6rem;
  }

  h2,
  .section-title {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    padding-top: 80px;
    min-height: auto;
    padding-bottom: 60px;
  }

  .philosophy__grid {
    grid-template-columns: 1fr;
  }

  .products__grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }

  .stats__grid {
    grid-template-columns: 1fr;
  }

  .ingredients__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-row {
    grid-template-columns: 1fr;
  }

  .benefit-row:nth-child(even) .benefit-row__image {
    order: 0;
  }

  .benefit-row:nth-child(even) .benefit-row__content {
    order: 0;
  }

  [dir="rtl"] .benefit-row:nth-child(even) .benefit-row__image {
    order: 0;
  }

  [dir="rtl"] .benefit-row:nth-child(even) .benefit-row__content {
    order: 0;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .distribution__grid {
    grid-template-columns: 1fr;
  }

  .footer__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .testimonial-card__inner {
    padding: 32px 24px;
  }

  .ritual__timeline {
    padding-left: 44px;
  }

  .ritual__number {
    left: -36px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
    top: 28px;
  }

  [dir="rtl"] .ritual__timeline {
    padding-right: 44px;
    padding-left: 0;
  }

  [dir="rtl"] .ritual__number {
    right: -36px;
    left: auto;
  }

  .contact__form {
    padding: 32px 24px;
  }

  .form__group {
    margin-bottom: var(--spacing-md);
  }
}

@media (max-width: 480px) {
  :root {
    font-size: 14px;
  }

  h1,
  .hero__title {
    font-size: 2.2rem;
  }

  h2,
  .section-title {
    font-size: 1.7rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .container {
    padding: 0 var(--spacing-sm);
  }

  .nav,
  .navbar {
    width: calc(100% - 24px);
    padding: 8px 16px;
  }

  .nav__logo-text {
    font-size: 1.2rem;
    letter-spacing: 3px;
  }

  .section {
    padding: 50px 0;
  }

  .hero {
    padding-top: 70px;
    padding-bottom: 40px;
  }

  .hero__label {
    font-size: 0.7rem;
    padding: 6px 16px;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .philosophy__card {
    padding: 32px 20px;
  }

  .products__grid {
    max-width: 100%;
    gap: 24px;
  }

  .product-card__image {
    height: 240px;
  }

  .ingredients__grid {
    grid-template-columns: 1fr;
  }

  .newsletter__form {
    flex-direction: column;
    border-radius: var(--radius-md);
  }

  .newsletter__input {
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-sm);
  }

  .newsletter__btn {
    border-radius: var(--radius-full);
    width: 100%;
  }

  .distribution__grid {
    gap: 16px;
  }

  .country-card {
    padding: 24px 16px;
  }

  .testimonial-card__inner {
    padding: 24px 16px;
  }

  .ritual__timeline {
    padding-left: 40px;
  }

  .ritual__number {
    left: -32px;
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .contact__card {
    gap: var(--spacing-md);
    padding: var(--spacing-md) 16px;
  }

  .contact__form {
    padding: 24px 16px;
  }

  .form__input,
  .form__textarea {
    padding: 12px 16px;
  }

  .footer__content {
    gap: 24px;
  }

  .footer__logo {
    font-size: 1.5rem;
    letter-spacing: 4px;
  }

  .footer__column-title {
    font-size: 1rem;
  }

  .footer__link {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  .btn {
    padding: 12px 32px;
    font-size: 0.9rem;
  }

  .btn--large {
    padding: 14px 32px;
    font-size: 1rem;
  }

  .cookie-banner {
    left: var(--spacing-sm);
    right: var(--spacing-sm);
    max-width: none;
  }
}

/* ========================================================================
   ACCESSIBILITY & FOCUS STATES
   ======================================================================== */

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ========================================================================
   SKIN REGENERATION SECTION
   ======================================================================== */

.section--dark {
  background: var(--black);
  color: var(--white);
  padding: 80px 0;
}

.regeneration__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.regeneration__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.regeneration__gif {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
}

.regeneration__title {
  font-family: 'Lora', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 28px;
  line-height: 1.3;
}

.regeneration__text {
  margin-bottom: 32px;
}

.regeneration__text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #D0C8BE;
  margin-bottom: 16px;
  font-weight: 300;
}

.regeneration__text p:last-child {
  margin-bottom: 0;
}

.btn--gold {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 149, 106, 0.3);
}

@media (max-width: 768px) {
  .regeneration__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .regeneration__title {
    font-size: 1.8rem;
  }

  .regeneration__media {
    max-width: 400px;
    margin: 0 auto;
  }
}

[dir="rtl"] .regeneration__grid {
  direction: rtl;
}

[dir="rtl"] .regeneration__text {
  text-align: right;
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: more) {
  .btn {
    font-weight: 700;
  }

  .nav__link {
    font-weight: 600;
  }

  .section-title {
    font-weight: 700;
  }
}

/* Light/Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --warm-bg: #1A1515;
    --white: #0D0D0D;
    --cream-light: #2A2420;
    --cream: #3A342E;
    --text: #E8E0D5;
    --text-light: #A8A0A0;
  }

  .nav {
    background: rgba(26, 21, 21, 0.85);
  }

  .product-card,
  .philosophy__card,
  .ritual__step,
  .testimonial-card__inner,
  .country-card,
  .contact__form,
  .ingredient-card {
    background: #2A2420;
  }

  .form__input,
  .form__textarea {
    background: #1A1515;
  }
}
