/* ============================================
   ركن الفخامة — Luxury Landing v2
   Refined Boutique Palette · RTL · Conversion-first
   ============================================ */

:root {
  /* Core palette */
  --ink: #14100B;            /* warm black */
  --ink-soft: #2A2118;
  --ink-muted: #6E5F4D;      /* warm muted */
  --paper: #FFFFFF;
  --cream: #F7F1E4;          /* warm cream */
  --cream-soft: #FBF6EB;
  --cream-deep: #EFE6D2;

  /* Brand */
  --gold: #B89249;           /* deep saudi-luxury gold */
  --gold-light: #D9BC7B;
  --gold-bright: #E8CB8C;
  --gold-dark: #8E6E2F;
  --gold-tint: rgba(184, 146, 73, .12);

  /* Accent */
  --emerald: #0F3829;        /* premium emerald — sparingly */
  --emerald-light: #1F5240;

  /* UI */
  --border: #E8DEC8;
  --border-soft: #F0E7D2;
  --border-gold: rgba(184, 146, 73, .25);

  /* WhatsApp */
  --whatsapp: #25D366;
  --whatsapp-dark: #0F8C5F;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(20, 16, 11, .04);
  --shadow-sm: 0 2px 12px rgba(20, 16, 11, .06);
  --shadow-md: 0 14px 36px rgba(20, 16, 11, .10);
  --shadow-lg: 0 32px 70px rgba(20, 16, 11, .18);
  --shadow-gold: 0 18px 44px rgba(184, 146, 73, .28);

  /* Geometry */
  --radius: 2px;
  --radius-md: 6px;
  --container: 1280px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Tajawal', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .4px;
  transition: transform .25s ease, box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
  white-space: nowrap;
  font-family: inherit;
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 18px 38px; font-size: 15px; }
.btn-sm { padding: 11px 20px; font-size: 13px; }
.btn-block { width: 100%; }

.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
  box-shadow: 0 6px 18px rgba(37, 211, 102, .32);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 16px 32px rgba(37, 211, 102, .42);
}

.btn-primary {
  background: var(--ink);
  color: var(--gold-bright);
  box-shadow: 0 4px 14px rgba(20, 16, 11, .25);
}
.btn-primary:hover { background: var(--gold); color: var(--ink); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--ink);
  box-shadow: var(--shadow-gold);
  font-weight: 800;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-bright) 100%);
}

.btn-ghost {
  background: rgba(255,255,255,.7);
  color: var(--ink);
  border-color: var(--border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: white; border-color: var(--ink); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--gold-bright); }

.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================
   Offer Banner (Sticky Urgency)
   ============================================ */
.offer-banner {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: .5px;
}
.offer-banner strong { font-weight: 900; }

/* ============================================
   Topbar
   ============================================ */
.topbar {
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  padding: 10px 0;
}
.topbar-inner {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  transition: color .2s;
}
.topbar-link svg { width: 13px; height: 13px; }
.topbar-link:hover { color: var(--gold-bright); }
.topbar-divider { color: var(--gold-dark); opacity: .6; }
.topbar-badge {
  background: rgba(216, 188, 123, .12);
  padding: 4px 14px;
  border: 1px solid rgba(216, 188, 123, .35);
  color: var(--gold-bright);
  letter-spacing: 1.5px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .topbar-inner { font-size: 12px; gap: 14px; }
  .topbar-divider, .topbar-badge { display: none; }
}

/* ============================================
   Header
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 241, 228, .96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s, padding .25s;
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  gap: 22px;
}

.logo { display: flex; align-items: center; gap: 14px; }
.logo-mark {
  width: 50px;
  height: 50px;
  background: var(--ink);
  color: var(--gold-bright);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 25px;
  border: 1px solid var(--gold);
  position: relative;
}
.logo-mark::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(216, 188, 123, .4);
  pointer-events: none;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-weight: 900;
  font-size: 19px;
  color: var(--ink);
  letter-spacing: .3px;
}
.logo-tag {
  font-size: 10px;
  color: var(--ink-muted);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
}

.nav { display: flex; gap: 32px; }
.nav a {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  transition: color .25s;
  position: relative;
  letter-spacing: .2px;
}
.nav a:hover { color: var(--gold-dark); }
.nav a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width .35s ease;
}
.nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  transition: transform .25s, opacity .2s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    background: var(--cream-soft);
    flex-direction: column;
    padding: 30px;
    gap: 22px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-150%);
    transition: transform .35s ease;
    box-shadow: var(--shadow-md);
  }
  .nav.is-open { transform: translateY(0); }
  .hamburger { display: flex; }
  .logo-tag { display: none; }
}

/* ============================================
   Hero — boutique luxury
   ============================================ */
.hero {
  position: relative;
  padding: 90px 0 110px;
  background: var(--cream);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 60px; bottom: 60px;
  right: -200px;
  width: 600px;
  background: radial-gradient(circle, var(--gold-tint) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 12px;
  padding: 0;
  border: 0;
  margin-bottom: 28px;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.badge::before {
  content: '';
  width: 36px;
  height: 1.5px;
  background: var(--gold);
}

.hero-text h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: -1.2px;
}
.text-gold {
  color: var(--gold-dark);
  font-weight: 800;
  position: relative;
  white-space: nowrap;
}
.text-gold::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 0;
  left: 0;
  height: 8px;
  background: var(--gold-tint);
  z-index: -1;
}

.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 38px;
  max-width: 560px;
  line-height: 1.85;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  max-width: 540px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.trust-icon {
  width: 26px; height: 26px;
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--paper);
}
.trust-icon svg { width: 12px; height: 12px; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; }
.muted { color: var(--ink-muted); font-size: 14px; }

/* Hero Visual — gold ornamental frame */
.hero-visual {
  position: relative;
  z-index: 1;
}
.hero-visual-frame {
  position: relative;
  padding: 18px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}
.hero-visual-frame::before,
.hero-visual-frame::after {
  content: '';
  position: absolute;
  width: 36px;
  height: 36px;
  pointer-events: none;
  z-index: 2;
}
.hero-visual-frame::before {
  top: -1px; right: -1px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}
.hero-visual-frame::after {
  bottom: -1px; left: -1px;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.hero-visual-frame .corner {
  position: absolute;
  width: 36px;
  height: 36px;
  pointer-events: none;
  z-index: 2;
}
.hero-visual-frame .corner-bl {
  bottom: -1px; right: -1px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}
.hero-visual-frame .corner-tr {
  top: -1px; left: -1px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.hero-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(1.05);
}

.hero-float-card {
  position: absolute;
  background: var(--paper);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  border: 1px solid var(--border);
}
.hero-float-card::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid var(--gold-tint);
  pointer-events: none;
}
.hero-float-card:nth-of-type(1) { top: 30px; left: -30px; }
.hero-float-card--bottom { bottom: 40px; right: -30px; }
.float-card-icon {
  width: 44px; height: 44px;
  background: var(--ink);
  color: var(--gold-bright);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.float-card-icon svg { width: 22px; height: 22px; }
.hero-float-card strong { display: block; font-weight: 800; color: var(--ink); font-size: 14px; }
.hero-float-card small { color: var(--ink-muted); font-size: 12px; }

@media (max-width: 980px) {
  .hero { padding: 50px 0 70px; }
  .hero::before { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { order: -1; }
  .hero-visual img { aspect-ratio: 4/3; max-height: 480px; }
  .hero-float-card:nth-of-type(1) { left: 12px; top: 22px; }
  .hero-float-card--bottom { right: 12px; bottom: 22px; }
}

@media (max-width: 480px) {
  .hero-trust { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1; min-width: 140px; }
  .hero-float-card { padding: 12px 16px; font-size: 12px; }
  .float-card-icon { width: 38px; height: 38px; }
  .float-card-icon svg { width: 18px; height: 18px; }
}

/* ============================================
   Trust Strip (between hero and stats)
   ============================================ */
.trust-strip {
  background: var(--paper);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.trust-strip-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}
.trust-strip-item svg {
  width: 24px; height: 24px;
  color: var(--gold-dark);
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .trust-strip-grid { gap: 18px; justify-content: center; }
  .trust-strip-item { font-size: 13px; }
}

/* ============================================
   Stats
   ============================================ */
.stats {
  background: var(--ink);
  color: white;
  padding: 80px 0;
  position: relative;
}
.stats::before, .stats::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stats::before { top: 0; }
.stats::after { bottom: 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat { position: relative; padding: 0 14px; }
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 0; top: 22%; bottom: 22%;
  width: 1px;
  background: rgba(216, 188, 123, .2);
}
.stat-num {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.stat-label {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .stat:not(:last-child)::after { display: none; }
}

/* ============================================
   Section heads
   ============================================ */
.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 70px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 5px;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.eyebrow-light { color: var(--gold-light); }
.eyebrow-light::before, .eyebrow-light::after { background: var(--gold-light); }

.section-head h2 {
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -.6px;
}
.section-head p {
  color: var(--ink-muted);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.85;
}

/* ============================================
   Why us
   ============================================ */
.why { padding: 120px 0; background: var(--paper); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: var(--cream-soft);
  padding: 40px 30px;
  border: 1px solid var(--border);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
  position: relative;
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .45s ease;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  background: var(--paper);
}
.card:hover::after { width: 100%; }
.card-icon {
  width: 60px; height: 60px;
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  transition: background .35s, color .35s;
}
.card-icon svg { width: 28px; height: 28px; }
.card:hover .card-icon { background: var(--gold); color: var(--paper); }
.card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -.2px;
}
.card p { color: var(--ink-muted); font-size: 14.5px; line-height: 1.8; }

@media (max-width: 980px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .cards-grid { grid-template-columns: 1fr; } }

/* ============================================
   Showroom (warehouse photos)
   ============================================ */
.showroom { padding: 120px 0; background: var(--cream); }
.showroom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.showroom-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  background: var(--cream-deep);
}
.showroom-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.showroom-item:hover img { transform: scale(1.06); }
.showroom-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,16,11,.92) 0%, rgba(20,16,11,.3) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 36px;
  color: white;
}
.showroom-item-overlay h3 {
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
  letter-spacing: -.2px;
}
.showroom-item-overlay p {
  font-size: 14px;
  color: var(--gold-light);
  letter-spacing: .5px;
}
.showroom-cta {
  text-align: center;
  margin-top: 56px;
}
.showroom-cta p {
  font-size: 17px;
  color: var(--ink-muted);
  margin-bottom: 22px;
}

@media (max-width: 800px) {
  .showroom-grid { grid-template-columns: 1fr; gap: 22px; }
  .showroom-item-overlay { padding: 24px; }
}

/* ============================================
   Location
   ============================================ */
.location { padding: 120px 0; background: var(--paper); }
.location-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
  align-items: stretch;
}
.location-map {
  position: relative;
  min-height: 480px;
  border: 1px solid var(--border);
  background: var(--cream-deep);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.location-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: saturate(.95);
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 36px;
  background: var(--cream);
  border: 1px solid var(--border);
}
.location-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.location-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: var(--paper);
}
.location-icon svg { width: 20px; height: 20px; }
.location-item h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}
.location-item p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
}
.location-item p a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px dashed var(--gold);
}
.location-item small {
  display: block;
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 4px;
  letter-spacing: .3px;
}
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
}
.location-actions .btn { flex: 1; min-width: 180px; }

@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; }
  /* aspect-ratio مع min-height كان يفرض عرض 427px ويسبب overflow أفقي — نلغيه */
  .location-map { aspect-ratio: auto; height: 340px; min-height: 0; }
  .location-info { padding: 28px; }
}

/* ============================================
   Gallery
   ============================================ */
.gallery { padding: 120px 0; background: var(--paper); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.product {
  background: var(--cream-soft);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  position: relative;
}
.product:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.product-img {
  position: relative;
  aspect-ratio: 5/4;
  overflow: hidden;
  background: var(--cream-deep);
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.product:hover .product-img img { transform: scale(1.08); }
.product-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--ink);
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--gold);
}
.product-tag.tag-emerald {
  background: var(--emerald);
  color: var(--gold-bright);
  border-color: var(--gold);
}
.product-body { padding: 26px; }
.product-body h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -.3px;
}
.product-body .muted { font-size: 13px; margin-bottom: 20px; }
.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.price { line-height: 1.2; }
.price-from {
  font-size: 11px;
  color: var(--ink-muted);
  display: block;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.price strong { font-size: 24px; color: var(--gold-dark); font-weight: 900; letter-spacing: -.3px; }
.price-currency { font-size: 13px; color: var(--ink-muted); font-weight: 600; }

.product-cta {
  background: var(--ink);
  color: var(--gold-bright);
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 340px;
  padding: 44px;
  text-align: center;
  transition: background .35s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.product-cta::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(216, 188, 123, .3);
  pointer-events: none;
}
.product-cta:hover { background: var(--ink-soft); }
.product-cta-inner h3 {
  color: var(--gold-bright);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -.4px;
}
.product-cta-inner p {
  color: var(--gold-light);
  margin-bottom: 26px;
  font-size: 14.5px;
  line-height: 1.7;
}

@media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ============================================
   How it works — luxury timeline
   ============================================ */
.how { padding: 120px 0; background: var(--cream); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.step {
  text-align: center;
  padding: 0 22px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 70px; height: 70px;
  margin: 0 auto 26px;
  background: var(--paper);
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 900;
  position: relative;
  font-family: 'Times New Roman', serif;
  font-style: italic;
}
.step-num::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid var(--gold-tint);
}
.step h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -.2px;
}
.step p { color: var(--ink-muted); font-size: 14.5px; line-height: 1.8; }

@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .steps::before { display: none; }
}
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* ============================================
   Fabrics
   ============================================ */
.fabrics {
  padding: 100px 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.swatches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  max-width: 780px;
  margin: 0 auto;
}
.swatch {
  width: 68px; height: 68px;
  border: 4px solid var(--paper);
  outline: 1px solid var(--border);
  cursor: pointer;
  transition: transform .3s, outline-color .3s, outline-width .3s;
  position: relative;
}
.swatch::after {
  content: attr(title);
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-muted);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .25s;
  letter-spacing: .5px;
}
.swatch:hover { transform: scale(1.15); outline-color: var(--gold); }
.swatch:hover::after { opacity: 1; }
.swatch-more {
  background: var(--cream-soft);
  color: var(--ink);
  font-weight: 900;
  display: grid;
  place-items: center;
  outline-color: var(--gold);
  font-size: 14px;
}

/* ============================================
   Reviews
   ============================================ */
.reviews { padding: 120px 0; background: var(--cream); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.review {
  background: var(--paper);
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.review:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.review-quote-mark {
  font-size: 80px;
  color: var(--gold);
  line-height: .8;
  font-family: serif;
  margin-bottom: 10px;
  display: block;
  font-weight: 700;
}
.review .stars { font-size: 18px; margin-bottom: 16px; }
.review p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 26px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.avatar {
  width: 46px; height: 46px;
  background: var(--ink);
  color: var(--gold-bright);
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 18px;
}
.review-author strong {
  display: block;
  font-weight: 800;
  color: var(--ink);
  font-size: 15px;
}
.review-author small {
  color: var(--ink-muted);
  font-size: 12px;
  letter-spacing: .5px;
}

@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ============================================
   CTA section / Lead form
   ============================================ */
.cta-section {
  padding: 110px 0;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 100%, rgba(184, 146, 73, .14), transparent 60%),
    radial-gradient(circle at 100% 0%, rgba(184, 146, 73, .08), transparent 50%);
  pointer-events: none;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-text h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 900;
  color: white;
  line-height: 1.22;
  margin-bottom: 22px;
  letter-spacing: -.4px;
}
.cta-text p {
  font-size: 17px;
  color: var(--gold-light);
  margin-bottom: 32px;
  line-height: 1.85;
}
.cta-text strong { color: var(--gold-bright); }
.cta-list { list-style: none; }
.cta-list li {
  padding: 10px 0;
  color: var(--cream);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cta-list li::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.lead-form {
  background: var(--cream-soft);
  color: var(--ink);
  padding: 48px 40px;
  border: 1px solid var(--gold);
  position: relative;
}
.lead-form::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(216, 188, 123, .25);
  pointer-events: none;
}
.lead-form h3 {
  font-size: 26px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 8px;
  text-align: center;
  letter-spacing: -.3px;
}
.lead-form-sub {
  text-align: center;
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 30px;
  letter-spacing: .5px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-weight: 700;
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 0;
  font-size: 16px; /* 16px+ يمنع التكبير التلقائي في iOS */
  font-family: inherit;
  background: var(--paper);
  transition: border-color .2s;
  color: var(--ink);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.field textarea { resize: vertical; min-height: 80px; }

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 20px;
  letter-spacing: .3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-note svg { width: 14px; height: 14px; color: var(--gold-dark); }

@media (max-width: 980px) {
  .cta-grid { grid-template-columns: 1fr; gap: 50px; }
  .lead-form { padding: 36px 24px; }
}

/* ============================================
   FAQ
   ============================================ */
.faq { padding: 120px 0; background: var(--paper); }
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq-item {
  background: var(--cream-soft);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .3s, border-color .3s;
}
.faq-item[open] {
  border-color: var(--gold);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  padding: 24px 28px;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 12px; height: 12px;
  background-image: linear-gradient(var(--ink), var(--ink)), linear-gradient(var(--ink), var(--ink));
  background-size: 12px 1.5px, 1.5px 12px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  transition: transform .35s, background-image .35s;
}
.faq-item[open] summary::after {
  background-image: linear-gradient(var(--gold-dark), var(--gold-dark));
  background-size: 12px 1.5px;
  transform: rotate(180deg);
}
.faq-item p {
  padding: 0 28px 26px;
  color: var(--ink-soft);
  line-height: 1.9;
  font-size: 15px;
}
.faq-item p strong { color: var(--ink); }

/* ============================================
   Final CTA
   ============================================ */
.final-cta {
  padding: 100px 0;
  background:
    linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  text-align: center;
  color: var(--ink);
  position: relative;
}
.final-cta::before, .final-cta::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--ink);
  opacity: .25;
}
.final-cta::before { top: 0; }
.final-cta::after { bottom: 0; }
.final-cta h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -.5px;
}
.final-cta p { font-size: 18px; margin-bottom: 36px; opacity: .85; }
.final-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta .btn-outline {
  background: var(--ink);
  color: var(--gold-bright);
  border-color: var(--ink);
}
.final-cta .btn-outline:hover { background: transparent; color: var(--ink); }

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}
.logo-light .logo-name { color: white; }
.logo-light .logo-tag { color: var(--gold-light); }

.footer-about {
  margin-top: 24px;
  color: var(--gold-light);
  font-size: 14px;
  line-height: 1.9;
}

.footer h4 {
  color: var(--gold-bright);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.footer ul { list-style: none; }
.footer ul li { padding: 7px 0; }
.footer ul li a, .footer ul li {
  color: var(--gold-light);
  font-size: 14px;
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer ul li a:hover { color: var(--gold-bright); }
.footer ul li svg { width: 14px; height: 14px; flex-shrink: 0; }

.socials { display: flex; flex-wrap: wrap; gap: 10px; }
.socials a {
  width: 40px; height: 40px;
  border: 1px solid var(--gold-dark);
  color: var(--gold);
  display: grid;
  place-items: center;
  transition: background .25s, color .25s, border-color .25s;
}
.socials a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.socials a svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(216, 188, 123, .15);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom small {
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: .5px;
}

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================
   Floating WhatsApp
   ============================================ */
.float-whatsapp {
  position: fixed;
  bottom: 26px;
  left: 26px;
  width: 62px; height: 62px;
  background: var(--whatsapp);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(37, 211, 102, .42);
  z-index: 90;
  transition: transform .25s;
}
.float-whatsapp:hover { transform: scale(1.1); }
.float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  animation: pulse 2.4s infinite;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ============================================
   Mobile sticky bottom bar
   ============================================ */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
  padding: 12px;
  gap: 10px;
  z-index: 95;
  box-shadow: 0 -8px 22px rgba(20,16,11,.10);
}
.mobile-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  font-weight: 800;
  font-size: 14px;
  color: white;
  letter-spacing: .5px;
}
.mobile-bar-btn svg { width: 18px; height: 18px; }
.mobile-bar-call { background: var(--ink); color: var(--gold-bright); border: 1px solid var(--gold); }
.mobile-bar-wa { background: var(--whatsapp); }

@media (max-width: 700px) {
  .mobile-bar { display: flex; }
  .float-whatsapp { bottom: 84px; }
  body { padding-bottom: 72px; }
}

/* ============================================
   Reveal animation
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Selection */
::selection { background: var(--gold); color: var(--ink); }

/* Smooth scrollbar (Webkit) */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============================================
   Mobile refinements — تحسينات الموبايل
   ============================================ */

/* أجهزة لوحية وأصغر: تقليل المسافات الرأسية الكبيرة */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .why, .showroom, .location, .gallery, .how, .reviews, .faq { padding: 72px 0; }
  .fabrics { padding: 64px 0; }
  .cta-section { padding: 72px 0; }
  .final-cta, .stats { padding: 64px 0; }

  .section-head { margin-bottom: 44px; }
  .section-head p { font-size: 15.5px; }

  .header-inner { padding: 14px 20px; }
}

/* موبايل: ضبط الهيدر والاعتماد على الشريط السفلي الثابت */
@media (max-width: 560px) {
  .container { padding: 0 16px; }

  /* زر "اطلب الآن" في الهيدر يتزاحم — نخفيه ونعتمد على mobile-bar */
  .header-cta .btn-whatsapp { display: none; }

  .logo-mark { width: 44px; height: 44px; font-size: 22px; }
  .logo-name { font-size: 17px; }

  .nav { top: 70px; }

  /* العنوان الكبير كان يطفح خارج الشاشة — نصغّره ونسمح بالالتفاف */
  .hero-text h1 { font-size: clamp(28px, 8.5vw, 38px); letter-spacing: -.4px; }
  .text-gold { white-space: normal; }
  .hero-sub { font-size: 16px; }
  .hero-actions .btn { width: 100%; }
  .section-head h2 { font-size: clamp(26px, 7vw, 36px); }

  .showroom-item-overlay h3 { font-size: 20px; }
  .product-body, .review { padding: 22px; }
  .lead-form { padding: 30px 20px; }
  .faq-item summary { padding: 18px 20px; font-size: 15px; }
  .faq-item p { padding: 0 20px 22px; }

  .final-cta-buttons .btn { width: 100%; }
}

/* شاشات صغيرة جداً: منع أي تجاوز أفقي */
@media (max-width: 360px) {
  .topbar { font-size: 11px; }
  .btn-lg { padding: 15px 22px; }
  .price strong { font-size: 21px; }
}
