/* ====================================================
   Vuvla Cosmetics - Main Stylesheet
   Color Palette:
   Background: #F4EFEC
   Light Powder: #EED7D2
   Soft Pink: #E3B8B0
   Rose (Main): #C7867E
   Dark Rose: #9E5E57
   Deep Accent: #7F4742
   ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Cairo:wght@300;400;500;600;700;800&display=swap');

/* ---- CSS Variables ---- */
:root {
  --bg:            #F4EFEC;
  --powder:        #EED7D2;
  --soft-pink:     #E3B8B0;
  --rose:          #C7867E;
  --dark-rose:     #9E5E57;
  --deep:          #7F4742;
  --white:         #FFFFFF;
  --cream:         #FAF6F4;
  --text:          #3E2626;
  --text-light:    #7A5A58;
  --text-muted:    #B08A88;
  --border:        #EDD7D3;
  --shadow-soft:   0 4px 24px rgba(127, 71, 66, 0.08);
  --shadow-md:     0 8px 40px rgba(127, 71, 66, 0.14);
  --shadow-lg:     0 16px 60px rgba(127, 71, 66, 0.18);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     28px;
  --radius-xl:     48px;
  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
  --font-arabic:   'Cairo', 'DM Sans', system-ui, sans-serif;
  --nav-height:    72px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

body[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

/* Apply Cairo to ALL elements when language is Arabic (RTL) */
[dir="rtl"],
[dir="rtl"] *,
[dir="rtl"] *::before,
[dir="rtl"] *::after {
  font-family: var(--font-arabic) !important;
  letter-spacing: 0 !important;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

::selection {
  background: var(--rose);
  color: var(--white);
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--deep);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 500; }
h4 { font-size: 1.2rem; font-weight: 500; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--powder); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 3px; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-fluid { padding: 0 24px; }

/* ---- Section ---- */
.section {
  padding: 96px 0;
}

.section-sm { padding: 64px 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .tagline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s ease;
}

.btn:hover::after {
  background: rgba(255,255,255,0.12);
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
  box-shadow: 0 6px 24px rgba(199, 134, 126, 0.35);
}

.btn-primary:hover {
  background: var(--dark-rose);
  border-color: var(--dark-rose);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(158, 94, 87, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--rose);
  border-color: var(--rose);
}

.btn-outline:hover {
  background: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--rose);
}

.btn-sm { padding: 10px 22px; font-size: 0.82rem; }
.btn-lg { padding: 18px 44px; font-size: 1rem; }

.btn-icon { width: 46px; height: 46px; padding: 0; justify-content: center; border-radius: 50%; }

/* ---- Badge ---- */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-rose { background: var(--powder); color: var(--dark-rose); }
.badge-white { background: rgba(255,255,255,0.9); color: var(--dark-rose); }

/* ====================================================
   NAVBAR
   ==================================================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(244, 239, 236, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(127, 71, 66, 0.08);
}

#navbar > .container {
  height: 100%;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-logo img {
  height: 38px;
  width: auto;
}

.navbar-logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--deep);
  letter-spacing: 0.04em;
  line-height: 1;
}

.navbar-logo-text span {
  color: var(--rose);
}

/* Nav links */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--deep);
  position: relative;
  transition: color 0.25s;
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rose);
  border-radius: 2px;
  transition: width 0.3s ease;
}

[dir="rtl"] .navbar-nav a::after { left: auto; right: 0; }

.navbar-nav a:hover, .navbar-nav a.active {
  color: var(--rose);
}

.navbar-nav a:hover::after, .navbar-nav a.active::after {
  width: 100%;
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-switcher-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(199, 134, 126, 0.12);
  border: 1px solid rgba(199, 134, 126, 0.25);
  border-radius: var(--radius-xl);
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark-rose);
  cursor: pointer;
  transition: var(--transition);
}

.lang-switcher-toggle:hover {
  background: rgba(199, 134, 126, 0.2);
}

.lang-switcher-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.lang-switcher.open .lang-switcher-toggle svg {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  min-width: 160px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}

[dir="rtl"] .lang-dropdown { right: auto; left: 0; }

.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  transition: background 0.2s;
}

.lang-dropdown a:hover {
  background: var(--powder);
  color: var(--dark-rose);
}

.lang-dropdown a.active {
  background: var(--powder);
  color: var(--rose);
  font-weight: 700;
}

/* Hamburger */
.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.navbar-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.navbar-mobile {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.navbar-mobile.open {
  opacity: 1;
  visibility: visible;
}

.navbar-mobile a {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--deep);
  transition: color 0.2s;
}

.navbar-mobile a:hover { color: var(--rose); }

.navbar-mobile .mobile-langs {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.navbar-mobile .mobile-lang-btn {
  padding: 8px 18px;
  border-radius: 40px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-rose);
  background: var(--powder);
  transition: var(--transition);
}

.navbar-mobile .mobile-lang-btn.active,
.navbar-mobile .mobile-lang-btn:hover {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}

/* ====================================================
   HERO SECTION
   ==================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg) 0%, var(--powder) 50%, var(--soft-pink) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,134,126,0.18) 0%, transparent 70%);
  top: -200px;
  right: -180px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,134,126,0.12) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}

[dir="rtl"] .hero::before { right: auto; left: -180px; }
[dir="rtl"] .hero::after  { left: auto; right: -100px; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-top: var(--nav-height);
  position: relative;
  z-index: 2;
}

.hero-content {
  animation: fadeInLeft 0.9s ease both;
}

[dir="rtl"] .hero-content { animation-name: fadeInRight; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(199, 134, 126, 0.12);
  border: 1px solid rgba(199, 134, 126, 0.3);
  border-radius: var(--radius-xl);
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-rose);
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '✦';
  color: var(--rose);
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--deep);
  margin-bottom: 24px;
  white-space: pre-line;
}

.hero-title em {
  font-style: italic;
  color: var(--rose);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-item .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-rose);
  line-height: 1;
}

.hero-stat-item .label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeInRight 0.9s ease 0.2s both;
}

[dir="rtl"] .hero-visual { animation-name: fadeInLeft; }

.hero-image-wrap {
  position: relative;
  width: 460px;
  height: 520px;
}

.hero-image-bg {
  position: absolute;
  inset: 0;
  border-radius: 60% 40% 55% 45% / 50% 40% 60% 50%;
  background: linear-gradient(145deg, var(--soft-pink), var(--powder));
  animation: blobMorph 8s ease-in-out infinite;
}

.hero-image-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(127,71,66,0.2));
}

.hero-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-image-placeholder .cream-icon {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--rose), var(--dark-rose));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(199, 134, 126, 0.4);
  margin-bottom: 16px;
}

.hero-image-placeholder .cream-icon svg {
  width: 80px;
  height: 80px;
  fill: white;
}

.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  z-index: 5;
  animation: floatUp 3s ease-in-out infinite;
}

.hero-float-card:nth-child(3) {
  bottom: 60px;
  left: -40px;
  animation-delay: 0s;
}
.hero-float-card:nth-child(4) {
  top: 60px;
  right: -30px;
  animation-delay: 1.5s;
}

[dir="rtl"] .hero-float-card:nth-child(3) { left: auto; right: -40px; }
[dir="rtl"] .hero-float-card:nth-child(4) { right: auto; left: -30px; }

.hero-float-card .float-icon {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.hero-float-card .float-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark-rose);
  white-space: nowrap;
}

.hero-float-card .float-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ====================================================
   FEATURES SECTION
   ==================================================== */
.features-section {
  background: var(--white);
  padding: 96px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--cream);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--soft-pink), var(--rose));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--soft-pink);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--powder), var(--soft-pink));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--dark-rose);
  fill: none;
  stroke-width: 1.8;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ====================================================
   PRODUCT SECTION
   ==================================================== */
.products-section {
  padding: 96px 0;
  background: var(--bg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-card-image {
  position: relative;
  height: 280px;
  background: linear-gradient(145deg, var(--powder), var(--soft-pink));
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-image .product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--rose);
}

.product-card-image .product-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.5;
}

.product-card-image .product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
}

[dir="rtl"] .product-card-image .product-badge { left: auto; right: 16px; }

.product-card-body {
  padding: 24px;
}

.product-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.product-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
}

/* Featured product layout */
.featured-product-section {
  padding: 96px 0;
  background: linear-gradient(160deg, var(--powder) 0%, var(--bg) 100%);
}

.featured-product-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.featured-product-image {
  position: relative;
  height: 540px;
  background: linear-gradient(145deg, var(--soft-pink), var(--powder));
  border-radius: var(--radius-lg) var(--radius-xl) var(--radius-lg) var(--radius-xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 32px;
}

.featured-product-content{}

.featured-product-content .badge-row {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.featured-product-content h2 {
  margin-bottom: 16px;
}

.featured-product-content .price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-rose);
  margin: 20px 0;
}

.featured-product-content .price .old-price {
  font-size: 1.2rem;
  text-decoration: line-through;
  color: var(--text-muted);
  margin-left: 10px;
}

[dir="rtl"] .featured-product-content .price .old-price {
  margin-left: 0;
  margin-right: 10px;
}

.product-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.product-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.product-benefit .benefit-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: linear-gradient(135deg, var(--rose), var(--dark-rose));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-benefit .benefit-check svg {
  width: 12px;
  height: 12px;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
}

.product-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ====================================================
   ABOUT SECTION
   ==================================================== */
.about-section {
  padding: 96px 0;
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  height: 560px;
}

.about-image-main {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl) var(--radius-lg) var(--radius-xl) var(--radius-lg);
  object-fit: cover;
  background: linear-gradient(145deg, var(--powder), var(--soft-pink));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--powder), var(--soft-pink));
  border-radius: var(--radius-xl) var(--radius-lg) var(--radius-xl) var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--rose);
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--dark-rose);
}

.about-accent-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--rose);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

[dir="rtl"] .about-accent-card { right: auto; left: -24px; }

.about-accent-card .aac-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
}

.about-accent-card .aac-label {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-top: 4px;
}

.about-content {}

.about-content .tagline {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}

.about-content h2 { margin-bottom: 20px; }

.about-content .lead {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.about-stat {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.about-stat .number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-rose);
  line-height: 1;
}

.about-stat .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ====================================================
   TESTIMONIALS SECTION — Spotlight Design
   ==================================================== */
.testimonials-section {
  padding: 96px 0;
  background: linear-gradient(160deg, var(--bg), var(--powder));
}

/* ---- Overall Rating Summary ---- */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  margin-bottom: 56px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.reviews-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 110px;
}

.score-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--deep);
  line-height: 1;
}

.score-stars {
  font-size: 1.3rem;
  color: var(--rose);
  letter-spacing: 3px;
}

.score-count {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.reviews-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reviews-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bar-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
  width: 22px;
  flex-shrink: 0;
}

.bar-track {
  flex: 1;
  height: 7px;
  background: var(--powder);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--soft-pink), var(--rose));
  border-radius: 4px;
  transition: width 1s ease;
}

.bar-count {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  width: 18px;
  text-align: right;
  flex-shrink: 0;
}

/* ---- Spotlight Slider ---- */
.testi-spotlight {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.testi-cards-wrap {
  flex: 1;
  position: relative;
  min-height: 320px;
}

.testi-card {
  position: absolute;
  inset: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 0;
}

.testi-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
  z-index: 1;
}

.testi-card.leaving {
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  z-index: 2;
}

.testi-quote-icon {
  color: var(--powder);
  width: 36px;
  height: 36px;
  margin-bottom: 4px;
  flex-shrink: 0;
}

.testi-stars {
  font-size: 1.2rem;
  color: var(--rose);
  letter-spacing: 3px;
}

.testi-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--deep);
  margin: 0;
}

.testi-comment {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.85;
  font-style: italic;
  margin: 0;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--powder), var(--soft-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-rose);
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--border);
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-author-info {
  flex: 1;
}

.testi-author-info strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--deep);
}

.testi-author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testi-verified {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #16a34a;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 20px;
  padding: 4px 10px;
  white-space: nowrap;
}

.testi-verified svg {
  width: 13px;
  height: 13px;
  stroke: #16a34a;
  fill: none;
  stroke-width: 2.5;
}

/* ---- Arrows ---- */
.testi-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--dark-rose);
  box-shadow: var(--shadow-soft);
}

.testi-arrow:hover {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
  transform: scale(1.08);
}

.testi-arrow:disabled,
.testi-arrow[data-disabled="true"] {
  opacity: 0.3;
  pointer-events: none;
}

.testi-arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

/* ---- Dots ---- */
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--soft-pink);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.testi-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--rose);
}

/* ---- Counter ---- */
.testi-counter {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 12px;
  letter-spacing: 0.06em;
}

.testi-counter .testi-current {
  color: var(--rose);
  font-size: 1rem;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .reviews-summary {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    text-align: center;
  }
  .reviews-bars { width: 100%; }
  .bar-label { text-align: center; }
  .testi-card { padding: 32px 28px; }
  .testi-verified { display: none; }
}

@media (max-width: 600px) {
  .testi-spotlight { gap: 10px; }
  .testi-arrow { width: 38px; height: 38px; }
  .testi-card { padding: 24px 20px; }
  .testi-comment { font-size: 0.92rem; }
  .testi-cards-wrap { min-height: 280px; }
}

/* ---- RTL overrides ---- */
[dir="rtl"] .testi-prev svg { transform: scaleX(-1); }
[dir="rtl"] .testi-next svg { transform: scaleX(-1); }
[dir="rtl"] .bar-fill { background: linear-gradient(270deg, var(--soft-pink), var(--rose)); }
[dir="rtl"] .testi-author { flex-direction: row-reverse; }
[dir="rtl"] .testi-author-info { text-align: right; }

.testimonials-arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ====================================================
   NEWSLETTER SECTION
   ==================================================== */
.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--rose), var(--deep));
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.newsletter-content .tagline {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}

.newsletter-content h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.newsletter-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.newsletter-input-group {
  display: flex;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.newsletter-input-group input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  background: rgba(255,255,255,0.95);
  color: var(--text);
  font-size: 0.92rem;
  outline: none;
  min-width: 0;
}

.newsletter-input-group input::placeholder {
  color: var(--text-muted);
}

.newsletter-input-group button {
  padding: 16px 28px;
  background: var(--deep);
  color: var(--white);
  border: none;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.newsletter-input-group button:hover {
  background: #6a3a36;
}

.newsletter-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}

#newsletter-msg {
  font-size: 0.88rem;
  color: var(--white);
  font-weight: 600;
  display: none;
}

/* ====================================================
   CONTACT PAGE
   ==================================================== */
.contact-section {
  padding: 100px 0;
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info-card {
  background: linear-gradient(145deg, var(--rose), var(--dark-rose));
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--white);
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.contact-info-card .subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  margin-bottom: 36px;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.8;
}

.contact-info-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
}

.contact-social {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.contact-social-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}

.contact-social-links {
  display: flex;
  gap: 12px;
}

.contact-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.contact-social-link:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.contact-social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.contact-form-card h3 {
  margin-bottom: 8px;
}

.contact-form-card .subtitle {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 32px;
}

/* Form elements */
.form-group {
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.form-label .req {
  color: var(--rose);
  margin-left: 2px;
}

[dir="rtl"] .form-label .req { margin-left: 0; margin-right: 2px; }

.form-control {
  width: 100%;
  padding: 13px 18px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(199, 134, 126, 0.15);
  background: var(--white);
}

.form-control.error {
  border-color: #e74c3c;
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.form-error {
  display: none;
  color: #e74c3c;
  font-size: 0.78rem;
  margin-top: 6px;
}

.form-error.show { display: block; }

.form-alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: none;
}

.form-alert.show { display: block; }
.form-alert.success { background: #f0fdf4; color: #166534; border: 1px solid #86efac; }
.form-alert.error   { background: #fff1f2; color: #991b1b; border: 1px solid #fca5a5; }

/* ====================================================
   PAGE HERO (inner pages)
   ==================================================== */
.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--powder), var(--bg));
  text-align: center;
  position: relative;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.breadcrumb a {
  color: var(--rose);
  font-weight: 600;
}

.breadcrumb span.sep { color: var(--border); }

/* ====================================================
   ABOUT PAGE
   ==================================================== */
.about-story {
  padding: 96px 0;
  background: var(--white);
}

.about-values {
  padding: 80px 0;
  background: var(--bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}

/* ====================================================
   FOOTER
   ==================================================== */
footer {
  background: var(--deep);
  color: rgba(255,255,255,0.85);
}

.footer-top {
  padding: 72px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 48px;
}

.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}

.footer-brand .logo-text span { color: var(--soft-pink); }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.8);
}

.footer-social-link:hover {
  background: var(--rose);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft-pink);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--white); }

.footer-links a::before {
  content: '→';
  font-size: 0.75rem;
  color: var(--rose);
  transition: transform 0.2s;
}

[dir="rtl"] .footer-links a::before {
  content: '←';
  transform: scaleX(-1);
}

.footer-links a:hover::before { transform: translateX(3px); }
[dir="rtl"] .footer-links a:hover::before { transform: translateX(-3px); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  stroke: var(--rose);
  fill: none;
  stroke-width: 2;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom a { color: var(--soft-pink); }

/* ====================================================
   COOKIE NOTICE
   ==================================================== */
.cookie-notice {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.cookie-notice.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.cookie-notice-inner {
  max-width: 520px;
  margin: 0 auto;
  background: var(--deep);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-lg);
}

.cookie-text {
  flex: 1;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.cookie-text a { color: var(--soft-pink); text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ====================================================
   PAGE LOADER
   ==================================================== */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--deep);
  animation: pulse 1.2s ease-in-out infinite;
}

.loader-logo span { color: var(--rose); }

/* ====================================================
   BACK TO TOP
   ==================================================== */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--rose);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(199, 134, 126, 0.4);
}

[dir="rtl"] #back-to-top { right: auto; left: 28px; }

#back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--dark-rose);
  transform: translateY(-3px);
}

#back-to-top svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

/* ====================================================
   WHATSAPP FLOAT BUTTON
   ==================================================== */
#whatsapp-btn {
  position: fixed;
  bottom: 84px;
  right: 28px;
  z-index: 999;
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

[dir="rtl"] #whatsapp-btn { right: auto; left: 28px; }

#whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

#whatsapp-btn svg {
  width: 26px;
  height: 26px;
  fill: white;
}

/* ====================================================
   PRODUCT DETAIL PAGE
   ==================================================== */
.product-detail-section {
  padding: 100px 0;
  background: var(--bg);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}

.product-gallery-main {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--powder), var(--soft-pink));
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 32px;
}

.product-gallery-thumbs {
  display: flex;
  gap: 12px;
}

.product-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  background: var(--powder);
  transition: border-color 0.2s;
  flex-shrink: 0;
}

.product-thumb.active { border-color: var(--rose); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.product-info .price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 20px 0;
}

.product-info .price-block .price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--dark-rose);
  font-weight: 700;
}

.product-info .price-block .old-price {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-short-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.product-tabs {
  margin-top: 40px;
}

.tab-buttons {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 28px;
  gap: 0;
}

.tab-btn {
  padding: 12px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.tab-btn.active, .tab-btn:hover {
  color: var(--dark-rose);
  border-bottom-color: var(--rose);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.tab-content p, .tab-content div {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
}

.ingredients-list {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  background: var(--cream);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.how-to-use-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.how-to-use-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--rose);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
}

/* ====================================================
   404 PAGE
   ==================================================== */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
}

.error-page .error-code {
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 700;
  color: var(--powder);
  line-height: 1;
  margin-bottom: 16px;
}

.error-page h2 { margin-bottom: 12px; }
.error-page p { color: var(--text-light); margin-bottom: 32px; }

/* ====================================================
   ANIMATIONS
   ==================================================== */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes blobMorph {
  0%, 100% { border-radius: 60% 40% 55% 45% / 50% 40% 60% 50%; }
  33%      { border-radius: 40% 60% 45% 55% / 60% 50% 40% 50%; }
  66%      { border-radius: 55% 45% 60% 40% / 45% 55% 50% 50%; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(0.97); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Spinner - used in form submit buttons */
.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  :root { --nav-height: 70px; }

  .navbar-nav, .lang-switcher { display: none; }
  .navbar-hamburger { display: flex; }

  .navbar-logo img { height: 34px; }
  .navbar-logo-text { font-size: 1.25rem; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }

  .featured-product-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-image-wrap { height: 360px; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { min-width: calc(50% - 13px); }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }

  .hero-title { font-size: 2.2rem; }
  .hero-stats { gap: 20px; }

  .features-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .testimonials-track { flex-direction: column; }
  .testimonial-card { min-width: 100%; margin: 0 0 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .newsletter-input-group { flex-direction: column; border-radius: var(--radius-md); }
  .newsletter-input-group input,
  .newsletter-input-group button { border-radius: var(--radius-md) !important; }

  .contact-form-card { padding: 28px 24px; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ====================================================
   RTL OVERRIDES
   ==================================================== */
[dir="rtl"] .hero-stats { flex-direction: row-reverse; }
[dir="rtl"] .feature-card { text-align: right; }
[dir="rtl"] .feature-icon { margin-left: auto; margin-right: 0; }
[dir="rtl"] .feature-card:hover::before {
  background: linear-gradient(270deg, var(--soft-pink), var(--rose));
}
[dir="rtl"] .product-benefit { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .about-accent-card { right: auto; left: -24px; }
[dir="rtl"] .testimonial-author { flex-direction: row-reverse; }
[dir="rtl"] .contact-info-item { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .footer-contact-item { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .testimonials-arrow.prev svg { transform: scaleX(-1); }
[dir="rtl"] .testimonials-arrow.next svg { transform: scaleX(-1); }
