/* ============================================================
   GAHARU OUD — LUXURY CSS DESIGN SYSTEM
   Deep Black & Gold Palette | Arabic/English Bilingual
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Cinzel:wght@400;600;700&family=Noto+Naskh+Arabic:wght@400;500;600;700&display=swap');

/* ─── CSS Variables ─── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8CB7B;
  --gold-dark:   #8B6914;
  --black:       #0A0A0A;
  --black-deep:  #050505;
  --black-mid:   #111111;
  --black-card:  #161616;
  --black-border:#1E1E1E;
  --white:       #F5F0E8;
  --white-muted: #B8A98A;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-display:'Cinzel', serif;
  --font-arabic: 'Noto Naskh Arabic', serif;
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 1.25;
}
.arabic-text {
  font-family: var(--font-arabic);
  direction: rtl;
  letter-spacing: 0;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::before,
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  max-width: 60px;
}

/* ─── Gold Gradient Text ─── */
.text-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Gold Divider ─── */
.gold-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
}

/* ─── Ornament ─── */
.ornament {
  text-align: center;
  color: var(--gold);
  font-size: 1.5rem;
  letter-spacing: 0.5em;
  opacity: 0.6;
  padding: 0.5rem 0;
}

/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 2rem;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(5,5,5,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--black-border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.8);
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.nav-logo .logo-en {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  line-height: 1;
}
.nav-logo .logo-ar {
  font-family: var(--font-arabic);
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-links li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 1.2rem;
  gap: 2px;
  transition: var(--transition);
}
.nav-links li a .link-en {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-muted);
  transition: color var(--transition);
}
.nav-links li a .link-ar {
  font-family: var(--font-arabic);
  font-size: 0.75rem;
  color: var(--gold-dark);
  transition: color var(--transition);
}
.nav-links li a:hover .link-en,
.nav-links li a.active .link-en { color: var(--gold-light); }
.nav-links li a:hover .link-ar,
.nav-links li a.active .link-ar  { color: var(--gold); }

.nav-links li a.active {
  border-bottom: 1px solid var(--gold);
}

.nav-cta a {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.6rem 1.6rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.nav-cta a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-cta a:hover::before { transform: scaleX(1); }
.nav-cta a:hover { color: var(--black); }
.nav-cta a span { position: relative; z-index: 1; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: rgba(5,5,5,0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--black-border);
  padding: 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--black-border);
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.1); }
  to   { transform: scale(1.18); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5,5,5,0.35) 0%,
    rgba(5,5,5,0.6) 50%,
    rgba(5,5,5,0.9) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem;
}
.hero-arabic {
  font-family: var(--font-arabic);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: fadeUp 1s 0.3s ease forwards;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 7rem);
  color: var(--white);
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.6s ease forwards;
}
.hero-title .text-gold { display: block; }
.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s 0.9s ease forwards;
}
.hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 1.2s ease forwards;
}

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

/* ─── Buttons ─── */
.btn-primary {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--black);
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.btn-outline:hover::before { transform: scaleX(1); }
.btn-outline:hover { color: var(--black); }
.btn-outline span { position: relative; z-index: 1; }

/* ─── Scroll Indicator ─── */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.6;
  animation: fadeUp 1s 1.8s ease forwards, bounce 2s 2.8s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
.scroll-indicator span {
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
}

/* ═══════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════ */
section { padding: 6rem 2rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
}
.section-header .section-arabic {
  font-family: var(--font-arabic);
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--white-muted);
  margin-bottom: 1rem;
}

/* ─── Fade In Animation ─── */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   FEATURED PRODUCTS (HOME)
   ═══════════════════════════════════════════════ */
.featured-bg {
  background: var(--black-mid);
  position: relative;
}
.featured-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.featured-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(201,168,76,0.15);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-zoom-btn {
  width: 50px;
  height: 50px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transform: scale(0.8);
  transition: var(--transition);
}
.product-card:hover .product-zoom-btn { transform: scale(1); }

.product-info {
  padding: 1.5rem;
}
.product-category {
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.product-name-ar {
  font-family: var(--font-arabic);
  font-size: 0.85rem;
  color: var(--white-muted);
  margin-bottom: 1rem;
  direction: rtl;
}
.product-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price .price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
}
.btn-add-cart {
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid var(--gold-dark);
  color: var(--gold-dark);
  transition: var(--transition);
}
.btn-add-cart:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* ═══════════════════════════════════════════════
   LUXURY FEATURES
   ═══════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  border: 1px solid var(--black-border);
  background: var(--black-card);
  transition: var(--transition);
}
.feature-item:hover {
  border-color: var(--gold-dark);
  background: rgba(201,168,76,0.04);
}
.feature-icon {
  width: 60px;
  height: 60px;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.feature-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}
.feature-title-ar {
  font-family: var(--font-arabic);
  font-size: 0.85rem;
  color: var(--white-muted);
}
.feature-desc {
  font-size: 0.85rem;
  color: var(--white-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   ABOUT SECTION (HOME PREVIEW)
   ═══════════════════════════════════════════════ */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-preview-img {
  position: relative;
}
.about-preview-img img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}
.about-preview-img::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--gold-dark);
  pointer-events: none;
  z-index: -1;
}
.about-preview-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(201,168,76,0.1) 100%);
}

.about-preview-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}
.about-preview-content .lead {
  font-family: var(--font-arabic);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  direction: rtl;
  text-align: right;
}
.about-preview-content p {
  font-size: 0.95rem;
  color: var(--white-muted);
  margin-bottom: 1rem;
  line-height: 1.9;
}

/* ═══════════════════════════════════════════════
   BLOG CARDS
   ═══════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.blog-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(201,168,76,0.1);
}
.blog-card-img {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-content { padding: 1.5rem; }
.blog-date {
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.blog-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.blog-title-ar {
  font-family: var(--font-arabic);
  font-size: 0.9rem;
  color: var(--white-muted);
  margin-bottom: 1rem;
  direction: rtl;
}
.blog-excerpt {
  font-size: 0.85rem;
  color: var(--white-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.blog-read-more {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition);
}
.blog-card:hover .blog-read-more { gap: 0.9rem; }

/* ═══════════════════════════════════════════════
   TESTIMONIAL
   ═══════════════════════════════════════════════ */
.testimonial-section {
  background: var(--black-mid);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20rem;
  color: var(--gold);
  opacity: 0.03;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.testimonial-text {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-style: italic;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.testimonial-text-ar {
  font-family: var(--font-arabic);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--gold);
  direction: rtl;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-muted);
}

/* ═══════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════ */
.newsletter-section {
  text-align: center;
  background: var(--black-card);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}
.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 2rem auto 0;
  gap: 0;
}
.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: var(--black);
  border: 1px solid var(--black-border);
  border-right: none;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-input:focus { border-color: var(--gold-dark); }
.newsletter-input::placeholder { color: var(--white-muted); }
.newsletter-submit {
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.newsletter-submit:hover { background: var(--gold-light); }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
footer {
  background: var(--black-deep);
  border-top: 1px solid var(--black-border);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-en {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 0.3rem;
}
.footer-brand .logo-ar {
  font-family: var(--font-arabic);
  font-size: 1rem;
  color: var(--white-muted);
  margin-bottom: 1.2rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--white-muted);
  line-height: 1.8;
  max-width: 260px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-col ul li {
  margin-bottom: 0.75rem;
}
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--white-muted);
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul li a .ar-text {
  font-family: var(--font-arabic);
  font-size: 0.75rem;
  color: var(--black-border);
}
.footer-col ul li a:hover .ar-text { color: var(--gold-dark); }
.footer-bottom {
  border-top: 1px solid var(--black-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copyright {
  font-size: 0.75rem;
  color: var(--black-border);
  letter-spacing: 0.1em;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-muted);
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ═══════════════════════════════════════════════
   LIGHTBOX / PRODUCT ZOOM MODAL
   ═══════════════════════════════════════════════ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(10px);
}
.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox-container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.lightbox-main {
  position: relative;
}
.lightbox-img {
  max-width: 70vw;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid var(--gold-dark);
  box-shadow: 0 0 80px rgba(201,168,76,0.2);
  transition: opacity 0.3s ease;
}
.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}
.lightbox-close:hover { border-color: var(--gold); background: rgba(201,168,76,0.1); }

.lightbox-nav {
  width: 50px;
  height: 50px;
  border: 1px solid var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gold);
  font-size: 1.5rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.lightbox-nav:hover { border-color: var(--gold); background: rgba(201,168,76,0.1); }

.lightbox-dots {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}
.lightbox-dot {
  width: 6px;
  height: 6px;
  background: var(--black-border);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-dot.active { background: var(--gold); }

.lightbox-caption {
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
}
.lightbox-caption .cap-en {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
}
.lightbox-caption .cap-ar {
  font-family: var(--font-arabic);
  font-size: 0.8rem;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════════════ */
.page-hero {
  padding-top: 160px;
  padding-bottom: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    45deg,
    var(--gold) 0px, var(--gold) 1px,
    transparent 1px, transparent 50px
  );
}
.page-hero-arabic {
  font-family: var(--font-arabic);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 0.9rem;
  color: var(--white-muted);
  max-width: 500px;
  margin: 0 auto;
  letter-spacing: 0.08em;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-top: 1.5rem;
}
.breadcrumb a { color: var(--gold); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { color: var(--gold-dark); }

/* ═══════════════════════════════════════════════
   SHOP FILTERS
   ═══════════════════════════════════════════════ */
.shop-filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  justify-content: center;
}
.filter-btn {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--black-border);
  color: var(--white-muted);
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}
.filter-btn.active,
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

/* ═══════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--gold);
}
.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.contact-item-icon {
  width: 45px;
  height: 45px;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-item-text .label-en {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.contact-item-text .label-ar {
  font-family: var(--font-arabic);
  font-size: 0.8rem;
  color: var(--white-muted);
  margin-bottom: 0.3rem;
}
.contact-item-text p {
  font-size: 0.9rem;
  color: var(--white-muted);
}

.contact-form {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 3rem;
}
.contact-form h3 {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--white);
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.form-label .label-en {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
}
.form-label .label-ar {
  font-family: var(--font-arabic);
  font-size: 0.75rem;
  color: var(--gold-dark);
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: var(--black);
  border: 1px solid var(--black-border);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-input:focus,
.form-textarea:focus { border-color: var(--gold-dark); }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--black-border); }
.form-textarea { min-height: 140px; resize: vertical; }

/* ═══════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-story.reverse { direction: rtl; }
.about-story.reverse > * { direction: ltr; }
.about-story img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-story-content h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1.5rem; }
.about-story-content p {
  font-size: 0.9rem;
  color: var(--white-muted);
  margin-bottom: 1rem;
  line-height: 1.9;
}

.milestone-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--black-border);
  border: 1px solid var(--black-border);
  margin: 4rem 0;
}
.milestone-item {
  background: var(--black-card);
  padding: 2.5rem 2rem;
  text-align: center;
}
.milestone-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.milestone-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
}
.milestone-label-ar {
  font-family: var(--font-arabic);
  font-size: 0.8rem;
  color: var(--white-muted);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-preview { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .about-story.reverse { direction: ltr; }
  .milestone-row { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 4rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid var(--black-border); }
}

@media (max-width: 480px) {
  .milestone-row { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .lightbox-img { max-width: 95vw; }
}

/* ═══════════════════════════════════════════════
   LANGUAGE SWITCHER (3-STRIP BUTTON)
   ═══════════════════════════════════════════════ */
.lang-switcher-wrap {
  display: flex;
  align-items: center;
}
.lang-toggle-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  background: transparent;
  border: 1px solid var(--gold-dark);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  border-radius: 2px;
  transition: var(--transition);
  user-select: none;
}
.lang-toggle-btn:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  color: var(--white);
}
.lang-toggle-btn svg {
  stroke: var(--gold);
  transition: transform 0.3s ease;
}
.lang-badge {
  font-weight: 600;
  color: var(--gold-light);
}

/* Single-language Clean Display Logic */
html[lang="en"] .arabic-text,
html[lang="en"] .logo-ar,
html[lang="en"] .link-ar,
html[lang="en"] .product-name-ar,
html[lang="en"] .feature-title-ar,
html[lang="en"] .section-arabic,
html[lang="en"] .hero-arabic,
html[lang="en"] .page-hero-arabic,
html[lang="en"] .milestone-label-ar,
html[lang="en"] .blog-title-ar,
html[lang="en"] .label-ar {
  display: none !important;
}

html[lang="ar"] .logo-en,
html[lang="ar"] .link-en,
html[lang="ar"] .product-name-en,
html[lang="ar"] .feature-title,
html[lang="ar"] .section-label,
html[lang="ar"] .hero-subtitle,
html[lang="ar"] .page-hero p:not(.page-hero-arabic),
html[lang="ar"] .milestone-label,
html[lang="ar"] .label-en {
  display: none !important;
}

html[dir="rtl"] {
  direction: rtl;
  text-align: right;
}
html[dir="rtl"] .nav-inner {
  flex-direction: row-reverse;
}
html[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}
html[dir="rtl"] .contact-item {
  flex-direction: row-reverse;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

