/* ═══════════════════════════════════════════════════════════════
   BYARQ ANKAWA · 0%RIGINAL · PREMIUM WEBSITE STYLES
   Design: Luxury Dark / Light Dual Theme · Arabic/English
   ═══════════════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ───────────────────────────────────────── */
:root {
  /* Wine Colors */
  --color-red-wine:    #8B1A2F;
  --color-red-light:   #C13050;
  --color-white-wine:  #E8D5A3;
  --color-rose-wine:   #D4688A;
  --color-rose-light:  #F4A0B5;

  /* Brand Accent */
  --color-accent:      #B8962E;
  --color-accent-light:#D4B550;

  /* Dark Theme */
  --bg-primary:        #0C0A0E;
  --bg-secondary:      #131118;
  --bg-card:           #1A1720;
  --bg-card-hover:     #211E28;
  --text-primary:      #F5F0E8;
  --text-secondary:    #A09890;
  --text-muted:        #6B6065;
  --border-color:      rgba(255,255,255,0.08);
  --border-hover:      rgba(184,150,46,0.4);

  /* Typography */
  --font-display:      'Playfair Display', Georgia, serif;
  --font-body:         'DM Sans', system-ui, sans-serif;
  --font-arabic:       'Noto Naskh Arabic', serif;

  /* Spacing */
  --section-py:        6rem;
  --radius-sm:         6px;
  --radius-md:         12px;
  --radius-lg:         20px;
  --radius-xl:         32px;

  /* Shadows */
  --shadow-sm:         0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:         0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg:         0 20px 60px rgba(0,0,0,0.5);
  --shadow-accent:     0 8px 32px rgba(184,150,46,0.25);
}

/* Light Theme Override */
[data-theme="light"] {
  --bg-primary:        #F8F5F0;
  --bg-secondary:      #EFECE6;
  --bg-card:           #FFFFFF;
  --bg-card-hover:     #F5F2EC;
  --text-primary:      #1C1610;
  --text-secondary:    #5C5248;
  --text-muted:        #8C8278;
  --border-color:      rgba(0,0,0,0.08);
  --border-hover:      rgba(139,26,47,0.3);
  --shadow-sm:         0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:         0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:         0 20px 60px rgba(0,0,0,0.15);
}

/* ── BASE RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

[dir="rtl"] body,
[dir="rtl"] .lang-ar {
  font-family: var(--font-arabic);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.py-6 { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.mt-6 { margin-top: 4rem; }

/* ── PRELOADER ───────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  width: min(100%, 340px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  animation: preEnter 0.6s ease forwards;
}

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

.pre-logo {
  width: min(220px, 62vw);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.pre-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-inline: auto;
}

.pre-zero { color: var(--text-primary); }
.pre-percent { color: var(--color-accent); }
.pre-riginal { color: var(--color-red-light); }

.pre-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  margin: 0 auto;
  animation: lineExpand 1.5s ease forwards 0.3s;
  transform: scaleX(0);
}

@keyframes lineExpand {
  to { transform: scaleX(1); }
}

.pre-tagline {
  font-size: 0.75rem;
  letter-spacing: 5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ── NAVBAR ──────────────────────────────────────────────────── */
#mainNav {
  padding: 1rem 0;
  background: transparent;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  z-index: 1000;
}

#mainNav.scrolled,
#mainNav.nav-open {
  background: rgba(12, 10, 14, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

[data-theme="light"] #mainNav.scrolled,
[data-theme="light"] #mainNav.nav-open {
  background: rgba(248, 245, 240, 0.92);
}

#mainNav .container-fluid {
  align-items: center;
  gap: 1rem;
}

#mainNav .navbar-brand {
  margin-right: 0;
  min-width: 0;
  max-width: calc(100% - 84px);
}

.nav-logo-mark {
  width: 48px; height: 48px;
  /* background: linear-gradient(135deg, var(--color-red-wine), var(--color-accent)); */
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
  overflow: hidden;
}

.nav-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-logo-mark .pct { color: var(--color-accent-light); }

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
  text-align: start;
}

.nav-brand-en {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-brand-ar {
  font-family: var(--font-arabic);
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.navbar-collapse {
  flex-basis: 100%;
}

.navbar-nav {
  min-width: 0;
}

.nav-link {
  color: var(--text-secondary) !important;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem !important;
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 1px;
  background: var(--color-accent);
  transition: left 0.3s, right 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  left: 0.8rem; right: 0.8rem;
}

.btn-lang {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: var(--text-secondary);
  background: transparent;
  transition: all 0.3s;
}

.btn-lang:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.nav-utility-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-theme {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  padding: 0;
}

.btn-theme:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Hamburger */
.navbar-toggler {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  padding: 0;
  background: rgba(255,255,255,0.02);
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.toggler-icon {
  display: block;
  width: 20px; height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
  border-radius: 2px;
}

.navbar-toggler:hover {
  border-color: var(--border-hover);
}

.navbar-toggler[aria-expanded="true"] {
  border-color: var(--color-accent);
  background: rgba(184,150,46,0.12);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar-toggler:focus { box-shadow: none; }

/* ── HERO ────────────────────────────────────────────────────── */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  overflow: clip;
  background: var(--bg-primary);
  isolation: isolate;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 50%, rgba(139,26,47,0.15), transparent),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(184,150,46,0.08), transparent),
    radial-gradient(ellipse 50% 50% at 50% 0%, rgba(212,104,138,0.06), transparent);
  z-index: 0;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0;
  animation: particleFloat var(--dur, 6s) ease-in-out var(--del, 0s) infinite;
}

@keyframes particleFloat {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  20%  { opacity: 0.6; }
  80%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-100px) scale(1.5); }
}

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

.hero-text-en,
.hero-text-ar {
  max-width: 38rem;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero-gradient-text {
  background: linear-gradient(135deg, var(--color-red-light) 0%, var(--color-accent) 50%, var(--color-rose-wine) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub-italic {
  font-style: italic;
  font-weight: 400;
  font-size: 0.7em;
  color: var(--text-secondary);
  -webkit-text-fill-color: var(--text-secondary);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-cta {
  align-items: center;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--color-red-wine), var(--color-red-light));
  color: white;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(139,26,47,0.35);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(139,26,47,0.5);
  color: white;
}

.btn-outline-custom {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.hero-badges {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.badge-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.badge-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.badge-unit {
  color: var(--color-accent);
}

.badge-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Hero Bottle Showcase */
.hero-bottle-showcase {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottle-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: glowPulse 4s ease-in-out infinite;
}

.bottle-glow-red   { width: 200px; height: 200px; background: var(--color-red-wine); top: 20%; left: 10%; }
.bottle-glow-white { width: 150px; height: 150px; background: var(--color-white-wine); top: 40%; right: 15%; animation-delay: 1s; }
.bottle-glow-rose  { width: 180px; height: 180px; background: var(--color-rose-wine); bottom: 20%; left: 30%; animation-delay: 2s; }

@keyframes glowPulse {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.1); }
}

.hero-bottle-stack {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  position: absolute;
  height: 72%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  transition: transform 0.6s ease;
}

.hero-img-front { z-index: 3; transform: translateX(10px) scale(1.05); }
.hero-img-mid   { z-index: 2; transform: translateX(-40px) scale(0.88); opacity: 0.85; }
.hero-img-bg    { z-index: 1; transform: translateX(-80px) scale(0.78); opacity: 0.6; }

.hero-bottle-stack:hover .hero-img-front { transform: translateX(10px) scale(1.08) rotate(2deg); }
.hero-bottle-stack:hover .hero-img-mid   { transform: translateX(-35px) scale(0.92); opacity: 0.9; }
.hero-bottle-stack:hover .hero-img-bg    { transform: translateX(-72px) scale(0.82); opacity: 0.7; }

/* Fallback bottles if images don't load */
.bottle-fallback {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 100%;
  padding-bottom: 60px;
}

.fb-bottle {
  width: 80px;
  border-radius: 8px 8px 4px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: white;
  letter-spacing: 1px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
}

.fb-red   { height: 320px; background: linear-gradient(180deg, var(--color-red-light), var(--color-red-wine)); }
.fb-white { height: 290px; background: linear-gradient(180deg, #f0e8c8, #d4c080); color: #5c4a00; }
.fb-rose  { height: 305px; background: linear-gradient(180deg, var(--color-rose-light), var(--color-rose-wine)); }

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.7); opacity: 0.5; }
}

/* ── MARQUEE STRIP ───────────────────────────────────────────── */
.marquee-strip {
  --marquee-gap: clamp(1rem, 2.2vw, 2rem);
  --marquee-duration: 28s;
  background: linear-gradient(135deg, var(--color-red-wine), #6B1020);
  overflow: hidden;
  overflow: clip;
  padding: clamp(0.75rem, 1.8vw, 0.95rem) 0;
  position: relative;
  direction: ltr;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(10vw, 120px);
  z-index: 1;
  pointer-events: none;
}

.marquee-strip::before {
  left: 0;
  background: linear-gradient(to right, rgba(107,16,32,0.96), rgba(107,16,32,0));
}

.marquee-strip::after {
  right: 0;
  background: linear-gradient(to left, rgba(107,16,32,0.96), rgba(107,16,32,0));
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 100%;
  will-change: transform;
  animation: marqueeLoop var(--marquee-duration) linear infinite;
  direction: ltr;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: var(--marquee-gap);
  flex: 0 0 auto;
  min-width: max-content;
  padding-inline-end: var(--marquee-gap);
}

@keyframes marqueeLoop {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.marquee-item {
  font-size: clamp(0.68rem, 1.05vw, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  line-height: 1;
}

.marquee-item--arabic {
  font-family: var(--font-arabic);
  font-size: clamp(0.82rem, 1.3vw, 0.98rem);
  letter-spacing: 0;
  text-transform: none;
  word-spacing: 0.08em;
  line-height: 1.1;
}

.marquee-separator {
  color: rgba(255,255,255,0.34);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.marquee-strip:hover .marquee-track,
.marquee-strip:focus-within .marquee-track {
  animation-play-state: paused;
}

/* ── SECTION COMMON ──────────────────────────────────────────── */
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--color-accent);
}

.section-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 560px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── ABOUT SECTION ───────────────────────────────────────────── */
.section-about { background: var(--bg-secondary); }

.about-visual { position: relative; }

.about-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-frame:hover .about-img { transform: scale(1.04); }

.about-img-accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,26,47,0.2), transparent 60%);
  pointer-events: none;
}

.about-stat-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--color-red-wine), var(--color-red-light));
  color: white;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
  min-width: 170px;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.stat-text {
  font-size: 0.72rem;
  letter-spacing: 1px;
  opacity: 0.85;
  margin-top: 0.3rem;
  display: block;
}

.about-features { margin-top: 1.5rem; }

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.feature-item:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
  transform: translateX(4px);
}

.feature-item i {
  color: var(--color-accent);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── PRODUCTS SECTION ────────────────────────────────────────── */
.section-products { background: var(--bg-primary); }

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
}

.product-card-glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  transition: opacity 0.3s;
  opacity: 0;
}

.product-red .product-card-glow    { background: linear-gradient(90deg, var(--color-red-wine), var(--color-red-light)); }
.product-white .product-card-glow  { background: linear-gradient(90deg, #c8b060, var(--color-white-wine)); }
.product-rose .product-card-glow   { background: linear-gradient(90deg, var(--color-rose-wine), var(--color-rose-light)); }

.product-card:hover .product-card-glow { opacity: 1; }

.product-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--bg-primary);
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  z-index: 2;
}

.product-img-wrapper {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  background: var(--bg-secondary);
}

.product-img {
  height: 240px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.4));
  transition: transform 0.5s ease;
}

.product-card:hover .product-img { transform: scale(1.08) translateY(-8px); }

.product-img-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 220px;
  border-radius: 60px 60px 20px 20px;
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  gap: 8px;
}

.red-fallback   { background: linear-gradient(180deg, var(--color-red-light), var(--color-red-wine)); }
.white-fallback { background: linear-gradient(180deg, #f0e8c8, #c8a840); color: #5c4a00; }
.rose-fallback  { background: linear-gradient(180deg, var(--color-rose-light), var(--color-rose-wine)); }

.product-info { padding: 1.5rem; }

.product-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.product-red .product-name span    { color: var(--color-red-light); }
.product-white .product-name span  { color: var(--color-accent); }
.product-rose .product-name span   { color: var(--color-rose-wine); }

.product-grape {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

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

.tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  background: var(--bg-secondary);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
}

.note-label {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.4rem;
}

.note-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.btn-product-cta {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.product-red   .btn-product-cta:hover { background: var(--color-red-wine);  border-color: var(--color-red-wine);  color: white; }
.product-white .btn-product-cta:hover { background: var(--color-accent);    border-color: var(--color-accent);    color: white; }
.product-rose  .btn-product-cta:hover { background: var(--color-rose-wine); border-color: var(--color-rose-wine); color: white; }

/* Future Brands Teaser */
.future-brands-teaser { padding: 3rem 0 0; }

.teaser-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--border-color));
  margin: 0 auto 1.5rem;
}

.teaser-text {
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.teaser-dots {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.teaser-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-color);
  animation: dotPulse 1.5s ease-in-out infinite;
}

.teaser-dots span:nth-child(2) { animation-delay: 0.3s; }
.teaser-dots span:nth-child(3) { animation-delay: 0.6s; }

@keyframes dotPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.4); background: var(--color-accent); }
}

/* ── WHY SECTION ─────────────────────────────────────────────── */
.section-why { background: var(--bg-secondary); }

.why-steps { display: flex; flex-direction: column; gap: 0; }

.why-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s;
}

.why-step:last-child { border-bottom: none; }
.why-step:hover { padding-left: 8px; }

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--border-color);
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.3s;
}

.why-step:hover .step-num { color: var(--color-accent); }

.step-content h5 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.5rem;
  transition: all 0.3s;
}

.why-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(139,26,47,0.15), rgba(184,150,46,0.1));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: var(--color-accent);
}

.why-card h6 {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.why-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── STATS BAND ──────────────────────────────────────────────── */
.stats-band {
  background: linear-gradient(135deg, #0D0810 0%, #1A0812 50%, #0D1018 100%);
  padding: 4rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

[data-theme="light"] .stats-band {
  background: linear-gradient(135deg, #1C0810 0%, #2A1020 100%);
}

.stat-box {
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.stat-box:last-child { border-right: none; }

.stat-big {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-unit {
  color: var(--color-accent);
  font-size: 0.6em;
}

.stat-desc {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ── GALLERY ─────────────────────────────────────────────────── */
.section-gallery { background: var(--bg-primary); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.g-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.g-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.g-large {
  grid-column: span 2;
}

.g-large img {
  height: 460px;
}

.g-tall {
  grid-row: span 2;
}

.g-tall img {
  height: 460px;
}

.g-item:hover img { transform: scale(1.06); }

.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.g-item:hover .g-overlay { opacity: 1; }

.g-overlay span {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
}

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.section-testimonials { background: var(--bg-secondary); }

.testimonials-swiper { padding-bottom: 3rem !important; }

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
}

.testi-stars {
  color: var(--color-accent);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
}

.testi-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.testi-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.swiper-pagination-bullet {
  background: var(--text-muted) !important;
}

.swiper-pagination-bullet-active {
  background: var(--color-accent) !important;
}

/* ── CONTACT SECTION ─────────────────────────────────────────── */
.section-contact { background: var(--bg-primary); }

.contact-shell {
  background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 3rem);
  box-shadow: var(--shadow-md);
}

.contact-copy-note {
  max-width: 32rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.9;
}

.contact-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--border-color);
  border-radius: calc(var(--radius-xl) - 8px);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.ci-item:first-child {
  padding-top: 0;
}

.ci-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.ci-item div {
  min-width: 0;
}

.ci-item strong {
  color: var(--text-primary);
  font-size: 0.98rem;
  font-weight: 600;
}

.ci-item i {
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.ci-item a {
  color: var(--text-secondary);
  transition: color 0.3s;
}

.ci-item a:hover { color: var(--color-accent); }

.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.contact-card .social-links {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.social-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: all 0.3s;
}

.social-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-3px);
}

.form-control,
.form-select {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.form-control:focus,
.form-select:focus {
  background: var(--bg-secondary);
  border-color: var(--color-accent);
  color: var(--text-primary);
  box-shadow: 0 0 0 3px rgba(184,150,46,0.15);
}

.form-control::placeholder { color: var(--text-muted); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer { background: var(--bg-secondary); border-top: 1px solid var(--border-color); }

.footer-top { padding: 5rem 0 3rem; }

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.fl-zero   { color: var(--text-primary); }
.fl-pct    { color: var(--color-accent); }
.fl-rig    { color: var(--color-red-light); }

.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-heading {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color 0.3s;
}

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

.newsletter-form { display: flex; gap: 0.5rem; }

.newsletter-input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.btn-newsletter {
  background: var(--color-red-wine);
  color: white;
  border: none;
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.3s;
}

.btn-newsletter:hover { background: var(--color-red-light); color: white; }

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-color);
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── BACK TO TOP ─────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-red-wine);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(139,26,47,0.4);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-red-light);
  transform: translateY(-3px);
}

/* ── LANGUAGE SWITCH ANIMATIONS ──────────────────────────────── */
.lang-en, .lang-ar {
  transition: opacity 0.3s ease;
}

/* ── AOS OVERRIDES ───────────────────────────────────────────── */
[data-aos] { will-change: transform, opacity; }

/* ── LIGHT THEME TWEAKS ──────────────────────────────────────── */
[data-theme="light"] .marquee-strip {
  background: linear-gradient(135deg, var(--color-red-wine), #6B1020);
}

[data-theme="light"] .form-control,
[data-theme="light"] .form-select {
  background: #fff;
  color: #1c1610;
}

[data-theme="light"] .form-control:focus,
[data-theme="light"] .form-select:focus {
  background: #fff;
  color: #1c1610;
}

[data-theme="light"] .contact-shell {
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,255,255,0.76));
}

[data-theme="light"] .contact-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,245,240,0.9));
}

[data-theme="light"] .hero-bg-overlay {
  background:
    radial-gradient(ellipse 80% 60% at 80% 50%, rgba(139,26,47,0.08), transparent),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(184,150,46,0.05), transparent);
}

[data-theme="light"] .newsletter-input { background: #fff; color: #1c1610; }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee-track,
  .scroll-line {
    animation: none !important;
  }
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 991px) {
  #mainNav {
    padding: 0.85rem 0;
  }

  #mainNav .container-fluid {
    gap: 0.75rem;
  }

  #mainNav .navbar-brand {
    max-width: calc(100% - 74px);
  }

  .navbar-collapse {
    margin-top: 0.9rem;
    padding: 1rem 1.1rem;
    background: linear-gradient(180deg, rgba(19,17,24,0.96), rgba(12,10,14,0.98));
    border: 1px solid var(--border-color);
    border-radius: calc(var(--radius-lg) + 4px);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }

  [data-theme="light"] .navbar-collapse {
    background: rgba(248,245,240,0.97);
  }

  .navbar-nav {
    width: 100%;
    align-items: stretch !important;
    gap: 0.25rem;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.85rem 0.35rem !important;
    font-size: 0.88rem;
    letter-spacing: 0.12em;
  }

  .nav-link::after {
    left: 0.35rem;
    right: calc(100% - 0.35rem);
    bottom: 0.3rem;
  }

  .nav-link:hover::after,
  .nav-link.active::after {
    left: 0.35rem;
    right: 0.35rem;
  }

  .nav-utility-item {
    margin-top: 0.4rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--border-color);
  }

  .nav-utility-group {
    width: 100%;
    justify-content: flex-start;
  }

  .btn-lang {
    min-width: 112px;
  }

  .hero-section {
    min-height: auto;
    padding: 7rem 0 3.75rem;
  }

  .hero-section .min-vh-100 {
    --bs-gutter-x: 0;
    min-height: auto !important;
    row-gap: 2.75rem;
  }

  .hero-text-en,
  .hero-text-ar {
    max-width: none;
  }

  .hero-desc {
    max-width: 34rem;
    margin-bottom: 2.2rem;
  }

  .hero-badges {
    margin-top: 2rem !important;
  }

  .hero-bottle-showcase { height: 360px; max-width: 320px; margin-top: 0; }
  .hero-img { height: 62%; }
  .hero-scroll-indicator { display: none; }
  .about-stat-card { bottom: -15px; right: -10px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .g-large { grid-column: span 2; }
  .g-tall  { grid-row: span 1; }
  .g-tall img, .g-large img { height: 280px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-shell { padding: 1.5rem; }
}

@media (max-width: 767px) {
  :root { --section-py: 4rem; }
  .preloader-inner { width: min(100%, 280px); }
  .pre-logo { width: min(190px, 64vw); }
  .pre-tagline { letter-spacing: 0.35em; }
  .nav-brand-en { font-size: 0.78rem; letter-spacing: 1.6px; }
  .nav-brand-ar { font-size: 0.7rem; }
  .marquee-strip { --marquee-duration: 22s; }
  .marquee-group { gap: 1rem; padding-inline-end: 1rem; }
  .hero-section {
    padding-top: 6.5rem;
    padding-bottom: 3rem;
  }

  .hero-section .container {
    padding-inline: 1.25rem;
  }

  .section-about > .container > .row.align-items-center,
  .section-why > .container > .row.align-items-center {
    --bs-gutter-x: 0;
  }

  .hero-text-en,
  .hero-text-ar {
    text-align: center;
    margin-inline: auto;
  }

  .hero-eyebrow {
    margin-bottom: 1rem;
    letter-spacing: 0.28em;
  }

  .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-desc {
    font-size: 1rem;
    max-width: 31rem;
    margin-inline: auto;
    margin-bottom: 2rem;
  }

  .hero-cta {
    justify-content: center;
    gap: 0.85rem !important;
  }

  .hero-badges {
    justify-content: center;
    gap: 1rem 1.25rem;
    padding-top: 1.5rem;
  }

  .badge-item {
    min-width: 96px;
    align-items: center;
    text-align: center;
  }

  .badge-num { font-size: 1.65rem; }
  .badge-label { letter-spacing: 0.14em; }

  .hero-bottle-showcase {
    height: 300px;
    max-width: 260px;
    margin: 0 auto;
  }

  .hero-img { height: 68%; }
  .hero-img-front { transform: translateX(4px) scale(1); }
  .hero-img-mid   { transform: translateX(-24px) scale(0.84); }
  .hero-img-bg    { transform: translateX(-46px) scale(0.74); }

  .bottle-glow {
    filter: blur(48px);
    opacity: 0.24;
  }

  .bottle-glow-red   { width: 150px; height: 150px; top: 18%; left: 8%; }
  .bottle-glow-white { width: 120px; height: 120px; top: 42%; right: 10%; }
  .bottle-glow-rose  { width: 135px; height: 135px; bottom: 18%; left: 28%; }

  .bottle-fallback {
    gap: 10px;
    padding-bottom: 40px;
  }

  .fb-bottle {
    width: 64px;
    font-size: 0.68rem;
  }

  .fb-red   { height: 250px; }
  .fb-white { height: 228px; }
  .fb-rose  { height: 240px; }

  .gallery-grid { grid-template-columns: 1fr; }
  .g-large { grid-column: span 1; }
  .g-large img, .g-tall img, .g-item img { height: 220px; }
  .hero-badges { flex-wrap: wrap; }
  .about-features.row { --bs-gutter-x: 0.9rem; }
  .about-stat-card { position: relative; bottom: auto; right: auto; margin-top: 1rem; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-copy-note { max-width: none; }
  .contact-card { padding: 1.25rem; }
}

@media (max-width: 576px) {
  #mainNav .navbar-brand {
    max-width: calc(100% - 68px);
  }

  .nav-logo-mark {
    width: 42px;
    height: 42px;
  }

  .nav-brand-en {
    font-size: 0.72rem;
    letter-spacing: 1.2px;
  }

  .nav-brand-ar {
    font-size: 0.68rem;
  }

  .navbar-toggler {
    width: 42px;
    height: 42px;
  }

  .marquee-strip { --marquee-duration: 20s; }
  .marquee-item { letter-spacing: 0.16em; }
  .marquee-item--arabic { font-size: 0.78rem; }
  .btn-lang { min-width: auto; }
  .hero-section {
    padding-top: 6rem;
    padding-bottom: 2.75rem;
  }

  .hero-title {
    font-size: clamp(2rem, 11vw, 2.55rem);
    line-height: 1.08;
  }

  .hero-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
  }

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

  .btn-primary-custom, .btn-outline-custom {
    width: min(100%, 320px);
    text-align: center;
    margin-inline: auto;
  }

  .hero-badges {
    gap: 0.85rem 1rem;
  }

  .badge-item { min-width: 88px; }
  .badge-num { font-size: 1.5rem; }
  .badge-label {
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }

  .hero-bottle-showcase {
    height: 268px;
    max-width: 228px;
  }

  .hero-img { height: 66%; }
  .hero-img-front { transform: translateX(2px) scale(0.98); }
  .hero-img-mid   { transform: translateX(-16px) scale(0.8); }
  .hero-img-bg    { transform: translateX(-30px) scale(0.71); }

  .bottle-glow { filter: blur(40px); }
  .bottle-glow-red   { width: 126px; height: 126px; }
  .bottle-glow-white { width: 102px; height: 102px; }
  .bottle-glow-rose  { width: 116px; height: 116px; }

  .bottle-fallback {
    gap: 8px;
    padding-bottom: 30px;
  }

  .fb-bottle {
    width: 56px;
    font-size: 0.62rem;
  }

  .fb-red   { height: 220px; }
  .fb-white { height: 200px; }
  .fb-rose  { height: 210px; }

  .newsletter-form { flex-direction: column; }
}

/* ── RTL ADJUSTMENTS ─────────────────────────────────────────── */
[dir="rtl"] .hero-img-front { transform: translateX(-10px) scale(1.05); }
[dir="rtl"] .hero-img-mid   { transform: translateX(40px) scale(0.88); }
[dir="rtl"] .hero-img-bg    { transform: translateX(80px) scale(0.78); }

[dir="rtl"] .hero-eyebrow,
[dir="rtl"] .hero-badges .badge-label {
  letter-spacing: 0;
  text-transform: none;
}

[dir="rtl"] .feature-item:hover { transform: translateX(-4px); }

[dir="rtl"] .nav-brand-text,
[dir="rtl"] .ci-item,
[dir="rtl"] .contact-copy-note {
  text-align: right;
}

[dir="rtl"] .nav-link,
[dir="rtl"] .btn-lang {
  letter-spacing: 0;
  text-transform: none;
}

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

[dir="rtl"] .about-stat-card {
  left: -20px;
  right: auto;
}

[dir="rtl"] .nav-utility-group,
[dir="rtl"] .contact-card .social-links {
  justify-content: flex-end;
}

[dir="rtl"] .product-badge {
  right: auto;
  left: 1.2rem;
}

@media (max-width: 767px) {
  [dir="rtl"] .hero-img-front { transform: translateX(-4px) scale(1); }
  [dir="rtl"] .hero-img-mid   { transform: translateX(24px) scale(0.84); }
  [dir="rtl"] .hero-img-bg    { transform: translateX(46px) scale(0.74); }
}

@media (max-width: 576px) {
  [dir="rtl"] .hero-img-front { transform: translateX(-2px) scale(0.98); }
  [dir="rtl"] .hero-img-mid   { transform: translateX(16px) scale(0.8); }
  [dir="rtl"] .hero-img-bg    { transform: translateX(30px) scale(0.71); }
}

/* ── SCROLLBAR ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--color-red-wine); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-red-light); }

/* ── SELECTION ───────────────────────────────────────────────── */
::selection {
  background: rgba(139,26,47,0.35);
  color: var(--text-primary);
}
