/* =====================================================
   JM Nature – Style Principal
   Thème : Blanc & Or | Design Élégant & Minimaliste
   ===================================================== */

/* ── Variables ── */
:root {
  --gold:         #C9A84C;
  --gold-light:   #E8C96A;
  --gold-dark:    #A07830;
  --gold-pale:    #F5EDD4;
  --gold-pale2:   #FBF7EE;
  --white:        #FFFFFF;
  --off-white:    #FAFAF8;
  --gray-50:      #F9F8F6;
  --gray-100:     #F0EDE8;
  --gray-200:     #E2DDD6;
  --gray-400:     #B0A898;
  --gray-600:     #7A7265;
  --gray-800:     #3D3830;
  --black:        #1A1612;
  --whatsapp:     #25D366;
  --instagram:    #E1306C;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Montserrat', 'Segoe UI', sans-serif;
  --font-arabic:  'Noto Sans Arabic', 'Segoe UI', Tahoma, Arabic, sans-serif;

  --shadow-sm:    0 1px 6px rgba(0,0,0,.06);
  --shadow-md:    0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:    0 10px 40px rgba(0,0,0,.14);
  --shadow-gold:  0 4px 24px rgba(201,168,76,.30);

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    40px;

  --transition:   all .3s cubic-bezier(.4,0,.2,1);
  --container:    1200px;
  --header-h:     76px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Arabic RTL Support ── */
[lang="ar"] body,
body.lang-ar {
  direction: rtl;
  font-family: var(--font-arabic), var(--font-sans);
}
body.lang-ar .hero-title,
body.lang-ar .section-title,
body.lang-ar h1, body.lang-ar h2, body.lang-ar h3 {
  font-family: var(--font-arabic), Georgia, serif;
}

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════ BUTTONS ══════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,.45);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  border-radius: 50px;
  background: var(--whatsapp);
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,.30);
}
.btn-order:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
}
.btn-whatsapp-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: 50px;
  background: var(--whatsapp);
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn-whatsapp-lg:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(37,211,102,.50);
}
.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: 50px;
  background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-instagram:hover { opacity: .9; transform: translateY(-2px); }

/* ══════════════════ HEADER ══════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}
#site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}

/* Logo */
.logo-link { display: flex; align-items: center; }
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: .02em;
}
.logo-accent { color: var(--gold); }

/* Desktop Nav */
#main-nav { display: flex; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gray-800);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { left: 18px; right: 18px; }
.nav-link:hover { color: var(--gold-dark); }
.nav-link.active { color: var(--gold); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-btn {
  padding: 7px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  transition: var(--transition);
}
.lang-btn:hover {
  background: var(--gold);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
#mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
#mobile-nav.open {
  max-height: 300px;
  padding: 16px 0;
}
.mobile-nav-list { display: flex; flex-direction: column; }
.mobile-nav-link {
  display: block;
  padding: 14px 32px;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gray-800);
  border-left: 3px solid transparent;
  transition: var(--transition);
}
.mobile-nav-link:hover {
  color: var(--gold);
  border-left-color: var(--gold);
  background: var(--gold-pale2);
}
body.lang-ar .mobile-nav-link {
  border-left: none;
  border-right: 3px solid transparent;
}
body.lang-ar .mobile-nav-link:hover {
  border-right-color: var(--gold);
}

/* ══════════════════ HERO ══════════════════ */
.hero-section {
  min-height: 100vh;
  padding-top: var(--header-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(145deg, rgba(255,255,255,.97) 0%, rgba(251,247,238,.95) 60%, rgba(245,237,212,.92) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

/* Particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light), transparent);
  opacity: .15;
  animation: float 8s ease-in-out infinite;
}
.p1 { width: 300px; height: 300px; top: -80px; right: -60px; animation-delay: 0s; }
.p2 { width: 200px; height: 200px; bottom: 100px; left: -40px; animation-delay: -3s; }
.p3 { width: 150px; height: 150px; top: 40%; right: 20%; animation-delay: -5s; }
.p4 { width: 80px; height: 80px; top: 20%; left: 30%; animation-delay: -2s; }

@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-20px) scale(1.05); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
body.lang-ar .hero-eyebrow::before { display: none; }
body.lang-ar .hero-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Hero Visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gold-light);
  opacity: .4;
  z-index: 0;
}
.hero-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 8px var(--gold-pale);
  position: relative;
  z-index: 1;
}
.hero-badge {
  position: absolute;
  bottom: -20px;
  left: 30px;
  background: var(--white);
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold-dark);
  box-shadow: var(--shadow-md);
  z-index: 2;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-badge i { color: var(--gold); }
body.lang-ar .hero-badge { left: auto; right: 30px; }

/* Scroll arrow */
.scroll-arrow {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: .85rem;
  animation: bounce 2.5s ease infinite;
  z-index: 2;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════ SECTION COMMONS ══════════════════ */
.section-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  display: block;
  height: 1.5px;
  background: var(--gold);
  flex: 1;
  max-width: 40px;
  border-radius: 2px;
  opacity: .6;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--black);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: .95rem;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-eyebrow {
  justify-content: center;
}

/* ══════════════════ ABOUT ══════════════════ */
.about-section {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* About Visual */
.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-overlay-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.overlay-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
}
.overlay-text {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .9;
  margin-top: 4px;
}
body.lang-ar .about-overlay-card { right: auto; left: -24px; }

/* About content */
.about-content .section-eyebrow { justify-content: flex-start; }
.about-text {
  font-size: .98rem;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.value-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  transition: var(--transition);
}
.value-card:hover {
  border-color: var(--gold-light);
  background: var(--gold-pale2);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.value-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.value-card h3 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
  letter-spacing: .02em;
}
.value-card p {
  font-size: .78rem;
  color: var(--gray-600);
}

/* ══════════════════ CATALOGUE ══════════════════ */
.catalogue-section {
  padding: 100px 0;
  background: var(--gray-50);
}

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

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}
.featured-card {
  grid-column: span 2;
}
.featured-card .product-img {
  aspect-ratio: 16/7;
}

.product-img-wrapper {
  position: relative;
  overflow: hidden;
}
.product-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--gold);
  border-radius: 50px;
  padding: 5px 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .7rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: .06em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.product-badge i { font-size: .7rem; }
.badge-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  border: none;
}
.badge-gold i { color: var(--white); }
body.lang-ar .product-badge { left: auto; right: 14px; }

.product-body {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.3;
}
.product-desc {
  font-size: .82rem;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}
.product-price {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,.28);
  background: linear-gradient(135deg, rgba(245,237,212,.55), rgba(251,247,238,.92));
  color: var(--gold-dark);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .03em;
  box-shadow: 0 6px 18px rgba(201,168,76,.12);
}
body.lang-ar .product-price {
  font-family: var(--font-arabic), var(--font-sans);
}

/* ══════════════════ CTA BAND ══════════════════ */
.cta-band {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-800) 100%);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.15), transparent 70%);
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-text p {
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  max-width: 500px;
}

/* ══════════════════ CONTACT ══════════════════ */
.contact-section {
  padding: 100px 0;
  background: var(--white);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact-item:hover {
  border-color: var(--gold-light);
  background: var(--gold-pale2);
  transform: translateX(4px);
}
body.lang-ar .contact-item:hover { transform: translateX(-4px); }
.contact-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  box-shadow: var(--shadow-gold);
}
.contact-item h3 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: var(--transition);
}
.contact-link:hover { color: var(--gold); }
.contact-item p {
  font-size: .92rem;
  color: var(--gray-600);
}

.contact-cta-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.contact-wa-icon {
  font-size: 3.5rem;
  color: var(--whatsapp);
}
.contact-cta-box h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
}
.contact-cta-box p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ══════════════════ FOOTER ══════════════════ */
#site-footer {
  background: var(--black);
  color: rgba(255,255,255,.75);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: .88rem;
  line-height: 1.8;
  max-width: 280px;
  color: rgba(255,255,255,.55);
}
.footer-links h4,
.footer-social h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

.social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}
.social-link.instagram {
  background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  color: var(--white);
}
.social-link.whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}
.social-link:hover { transform: translateY(-3px) scale(1.1); }
.footer-wa {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.footer-wa i { color: var(--whatsapp); margin-right: 6px; }
body.lang-ar .footer-wa i { margin-right: 0; margin-left: 6px; }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

/* ══════════════════ BACK TO TOP ══════════════════ */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 900;
}
.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(201,168,76,.5); }
body.lang-ar .back-top { right: auto; left: 28px; }

/* ══════════════════ RESPONSIVE ══════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-card {
    grid-column: span 2;
  }
  .about-grid {
    gap: 48px;
  }
}

/* Small Tablet */
@media (max-width: 900px) {
  #main-nav { display: none; }
  .hamburger { display: flex; }
  #mobile-nav { display: block; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 24px;
    gap: 40px;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-eyebrow::before { display: none; }
  .hero-desc { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-img-frame { max-width: 400px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-img-wrapper { max-width: 500px; margin: 0 auto; }
  .about-content .section-eyebrow { justify-content: center; }
  .about-content { text-align: center; }
  .about-text { max-width: 560px; margin: 0 auto 40px; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

/* Mobile */
@media (max-width: 600px) {
  :root { --header-h: 64px; }
  .container { padding: 0 18px; }

  .hero-inner { padding: 48px 18px 60px; }
  .hero-title { font-size: 2rem; }
  .hero-img { border-radius: var(--radius-md); }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .featured-card { grid-column: span 1; }
  .featured-card .product-img { aspect-ratio: 4/3; }

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

  .about-section,
  .catalogue-section,
  .contact-section { padding: 70px 0; }

  .section-header { margin-bottom: 44px; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-text p { margin: 0 auto; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: span 1; }

  .about-overlay-card {
    bottom: -16px;
    right: -8px;
    padding: 14px 18px;
  }
  body.lang-ar .about-overlay-card { left: -8px; }

  .hero-badge { left: 16px; bottom: -14px; }
  body.lang-ar .hero-badge { right: 16px; left: auto; }
}

/* ══════════════════ ANIMATIONS ══════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  animation: fadeInUp .7s ease both;
}
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }

/* ══════════════════ SCROLL REVEAL ══════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════ DIVIDER ══════════════════ */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ══════════════════ SELECTION ══════════════════ */
::selection {
  background: var(--gold-pale);
  color: var(--gold-dark);
}

/* ══════════════════ SCROLLBAR ══════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-50); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold), var(--gold-light));
  border-radius: 3px;
}

/* ══════════════════ FOCUS VISIBLE ══════════════════ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ══════════════════ PRINT ══════════════════ */
@media print {
  #site-header, .back-top, .scroll-arrow { display: none; }
  body { font-size: 12pt; }
}
