/* =====================================================
   DARK LUXURY — Octobous 360
   Inspired by: Cartier · Bulgari · Editorial Fashion
   ===================================================== */

:root {
  /* ── Palette ── */
  --gold:    #C9A055;
  --gold-2:  #E8D5A3;
  --gold-3:  #9A7020;

  /* Warm dark (بدل الأسود القاطع) */
  --black:   #1C1209;
  --black-2: #261808;
  --black-3: #32200A;

  /* Warm ivory (بدل الأبيض الصارخ) */
  --white:   #FDF8F2;
  --cream:   #F5EDE0;
  --cream-2: #EDE0CC;

  /* Muted warm */
  --muted:   #9A8270;

  /* Borders */
  --border:  rgba(201,160,85,0.22);
  --border-w: rgba(255,255,255,0.09);
  --border-l: rgba(28,18,9,0.09);

  --font:    'Cairo', sans-serif;
  --ease:    cubic-bezier(0.76, 0, 0.24, 1);
  --t:       0.55s;
}

*, *::before, *::after { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); }

.line-clamp-1 { overflow:hidden; display:-webkit-box; -webkit-line-clamp:1; -webkit-box-orient:vertical; }
.line-clamp-2 { overflow:hidden; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */

.display-xl {
  font-size: clamp(20px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.display-lg {
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.025em;
}
.display-md {
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.overline {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

/* =====================================================
   GOLD EFFECTS
   ===================================================== */

@keyframes shimmer {
  0%   { background-position: -300% center; }
  100% { background-position: 300% center; }
}
.gold-text {
  background: linear-gradient(90deg, var(--gold-3), var(--gold-2), var(--gold), var(--gold-2), var(--gold-3));
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}
.gold-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
}

/* =====================================================
   NAVBAR
   ===================================================== */

.lux-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background var(--t) var(--ease), border-color var(--t);
}
.lux-nav.dark {
  background: rgba(8,8,8,0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.lux-nav.light {
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  backdrop-filter: blur(16px);
}
.lux-nav .nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 32px;
  height: 68px; display: flex; align-items: center; gap: 32px;
  position: relative;
}
.lux-nav .nav-logo {
  display: flex; flex-direction: column; line-height: 1; text-decoration: none;
  flex-shrink: 0;
}
.lux-nav.dark .nav-logo-name { color: var(--white); }
.lux-nav.light .nav-logo-name { color: var(--black); }
.nav-logo-name {
  font-size: 20px; font-weight: 900; letter-spacing: -0.02em;
  transition: color 0.3s;
}
.nav-logo-sub {
  font-size: 8px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); opacity: 0.8; margin-top: 1px;
}

.nav-search {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 100%; max-width: 320px;
}
.nav-search input {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid var(--border-w); padding: 8px 32px 8px 0;
  font-size: 13px; font-family: var(--font); outline: none;
  transition: border-color 0.3s;
}
.lux-nav.dark .nav-search input { color: var(--white); border-bottom-color: rgba(255,255,255,0.3); }
.lux-nav.light .nav-search input { color: var(--black); border-bottom-color: rgba(0,0,0,0.12); }
.nav-search input:focus { border-bottom-color: var(--gold); }
.lux-nav.dark .nav-search input::placeholder { color: rgba(255,255,255,0.45); }
.lux-nav.light .nav-search input::placeholder { color: var(--muted); }
.nav-search input::placeholder { font-size: 12px; }
.nav-search button {
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; color: var(--muted);
  transition: color 0.2s;
}
.nav-search button:hover { color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 8px; margin-right: auto; }

.nav-icon-btn {
  position: relative; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: none; background: none; cursor: pointer;
  transition: color 0.2s;
}
.lux-nav.dark .nav-icon-btn { color: rgba(255,255,255,0.6); }
.lux-nav.light .nav-icon-btn { color: #555; }
.nav-icon-btn:hover { color: var(--gold) !important; }
.nav-icon-btn .badge {
  position: absolute; top: 4px; right: 4px;
  width: 16px; height: 16px; background: var(--gold); color: #fff;
  font-size: 9px; font-weight: 800; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.wa-pill {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid rgba(37,211,102,0.35); color: #25D366;
  font-size: 11px; font-weight: 700; padding: 7px 16px;
  background: rgba(37,211,102,0.06); cursor: pointer; text-decoration: none;
  transition: all 0.25s; letter-spacing: 0.5px;
}
.wa-pill:hover { background: #25D366; color: #fff; border-color: #25D366; }

/* Category pills nav */
.cat-nav {
  border-top: 1px solid var(--border-w); padding: 0 32px;
  max-width: 1400px; margin: 0 auto;
  display: flex; gap: 0; align-items: center; height: 40px; overflow-x: auto;
  scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }
.lux-nav.light .cat-nav { border-top-color: rgba(0,0,0,0.06); }

.cat-pill {
  padding: 0 18px; height: 28px; margin: 6px 2px; border-radius: 99px;
  display: flex; align-items: center;
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  text-decoration: none; white-space: nowrap; position: relative;
  transition: color 0.25s, background-color 0.25s;
}
.lux-nav.dark .cat-pill { color: rgba(255,255,255,0.6); }
.lux-nav.light .cat-pill { color: #666; }
.lux-nav.dark .cat-pill:hover { color: #fff; background: rgba(255,255,255,0.08); }
.lux-nav.light .cat-pill:hover { color: #080808; background: rgba(0,0,0,0.05); }
.cat-pill.active { color: var(--gold) !important; }
.lux-nav.dark .cat-pill.active { background: rgba(201,160,85,0.16); }
.lux-nav.light .cat-pill.active { background: rgba(201,160,85,0.12); }

/* =====================================================
   MARQUEE
   ===================================================== */

.marquee-wrap {
  overflow: hidden; background: var(--gold); padding: 11px 0;
}
.marquee-inner {
  display: flex; gap: 0; width: max-content;
  animation: marquee-rtl 22s linear infinite;
}
@keyframes marquee-rtl {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: flex; align-items: center; gap: 32px; padding: 0 32px;
  font-size: 11px; font-weight: 800; color: var(--black);
  letter-spacing: 2.5px; text-transform: uppercase; white-space: nowrap;
}
.marquee-dot { width: 4px; height: 4px; background: var(--black); border-radius: 50%; opacity: 0.4; flex-shrink: 0; }

/* =====================================================
   HERO
   ===================================================== */

.hero-lux {
  min-height: 100vh;
  background: var(--white);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.hero-lux .hero-img-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-lux .hero-img-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.5) 55%, rgba(8,8,8,0.75) 100%);
}
/* Decorative grid lines */
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-content {
  position: relative; z-index: 2;
  flex: 1; display: flex; flex-direction: column; justify-content: flex-end;
  max-width: 1400px; width: 100%; margin: 0 auto; padding: 0 32px 80px;
  padding-top: 120px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--border); padding: 8px 20px;
  margin-bottom: 32px; width: fit-content;
}
.hero-tag span { font-size: 10px; font-weight: 700; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; }
.hero-tag-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.3} }

.hero-title {
  color: var(--black); margin-bottom: 28px;
}
.hero-subtitle {
  font-size: 15px; color: var(--muted); max-width: 420px;
  line-height: 1.8; font-weight: 400; margin-bottom: 40px;
}
.hero-cta-group { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.btn-lux {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid var(--gold); color: var(--black);
  background: var(--gold); padding: 14px 32px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none; cursor: pointer;
  font-family: var(--font); transition: all 0.4s var(--ease); position: relative;
  overflow: hidden;
}
.btn-lux::before {
  content: ''; position: absolute; inset: 0;
  background: var(--black); transform: translateX(101%);
  transition: transform 0.45s var(--ease);
}
.btn-lux:hover::before { transform: translateX(0); }
.btn-lux span, .btn-lux svg { position: relative; z-index: 1; }
.btn-lux:hover { color: var(--white); }

.btn-lux-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(0,0,0,0.45); font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none;
  transition: color 0.3s; border: none; background: none; cursor: pointer; font-family: var(--font);
}
.btn-lux-ghost:hover { color: var(--gold); }

.hero-stats {
  display: flex; gap: 40px; margin-top: 60px; padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.hero-stat-num { font-size: 28px; font-weight: 900; color: var(--black); letter-spacing: -0.03em; }
.hero-stat-label { font-size: 10px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; margin-top: 8px; }

/* Scroll indicator */
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(0,0,0,0.25); font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translate(-50%,0)}50%{transform:translate(-50%,6px)} }
.scroll-hint svg { animation: none; }

/* =====================================================
   FEATURES BAR
   ===================================================== */

.features-bar {
  background: var(--cream);
  border-top: 1px solid var(--cream-2);
  border-bottom: 1px solid var(--cream-2);
}
.features-bar-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  divide-x: 1px solid var(--border-w);
}
.feature-item {
  padding: 24px 32px; display: flex; align-items: center; gap: 16px;
  border-left: 1px solid var(--cream-2);
  transition: background 0.3s;
}
.feature-item:last-child { border-left: none; }
.feature-item:hover { background: var(--cream-2); }
.feature-icon { font-size: 22px; flex-shrink: 0; }
.feature-title { font-size: 13px; font-weight: 700; color: var(--black); }
.feature-sub { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* =====================================================
   SECTION STRUCTURE
   ===================================================== */

.section { padding: 100px 0; }
.section-inner { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
.section-dark { background: var(--black); }
.section-black { background: var(--black-2); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }

.section-head { margin-bottom: 56px; }
.section-head-row {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
}
.view-all {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid transparent; transition: border-color 0.3s; white-space: nowrap;
}
.view-all:hover { border-bottom-color: var(--gold); }

/* =====================================================
   CATEGORIES — EDITORIAL
   ===================================================== */

.cat-editorial {
  display: grid;
  gap: 2px;
}
/* تصنيفين: عمودين متساويين */
.cat-editorial-2 { grid-template-columns: 1fr 1fr; grid-template-rows: 380px; }
/* 3 تصنيفات: 3 أعمدة متساوية */
.cat-editorial-3 { grid-template-columns: repeat(3, 1fr); grid-template-rows: 380px; }
/* 4 تصنيفات: شبكة 2x2 */
.cat-editorial-4 { grid-template-columns: 1fr 1fr; grid-template-rows: 320px 320px; }
/* 5 تصنيفات فأكثر: تصميم مجلة — واحد كبير + 4 صغار */
.cat-editorial-5 { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 340px 200px; }
.cat-editorial-5 .cat-editorial-item:first-child { grid-row: 1 / 3; }

.cat-editorial-item {
  position: relative; overflow: hidden;
  background: var(--black-3); display: block;
  text-decoration: none;
}

.cat-editorial-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease);
  filter: brightness(0.75);
}
.cat-editorial-item:hover img { transform: scale(1.07); filter: brightness(0.6); }

.cat-editorial-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  transition: opacity 0.5s;
}
.cat-editorial-info {
  position: absolute; bottom: 0; right: 0; left: 0; padding: 28px 28px 24px;
}
.cat-editorial-name {
  font-size: 22px; font-weight: 900; color: #fff;
  letter-spacing: -0.01em; line-height: 1.1; margin-bottom: 6px;
}
.cat-editorial-item:first-child .cat-editorial-name { font-size: 34px; }
.cat-editorial-count { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 1.5px; text-transform: uppercase; }
.cat-arrow {
  position: absolute; top: 20px; left: 20px;
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: all 0.35s;
  opacity: 0; transform: scale(0.8);
}
.cat-editorial-item:hover .cat-arrow { opacity: 1; transform: scale(1); border-color: var(--gold); color: var(--gold); }

/* =====================================================
   PRODUCTS — EDITORIAL GRID
   ===================================================== */

.products-editorial {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--cream-2);
}
.product-lux {
  background: var(--white);
  position: relative; overflow: hidden;
}
.product-lux .img-wrap {
  aspect-ratio: 3/4; overflow: hidden; background: var(--cream);
  position: relative;
}
.product-lux img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.product-lux:hover img { transform: scale(1.06); }

.product-lux .badge-new {
  position: absolute; top: 16px; right: 16px;
  background: var(--black); color: var(--white);
  font-size: 9px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; padding: 5px 10px;
}
.product-lux .badge-sale {
  position: absolute; top: 16px; right: 16px;
  background: #C0392B; color: #fff;
  font-size: 9px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; padding: 5px 10px;
}

.product-lux .cart-btn {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--black); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; border: none; cursor: pointer;
  font-family: var(--font); padding: 14px;
  transform: translateY(100%); transition: transform 0.4s var(--ease);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.product-lux:hover .cart-btn { transform: translateY(0); }
.product-lux .cart-btn:hover { background: var(--gold); }

@media (max-width: 768px) {
  .product-lux .cart-btn { transform: translateY(0); font-size: 10px; padding: 11px; }
}

.product-lux .info {
  padding: 16px 18px 20px;
  border-top: 1px solid var(--cream-2);
}
.product-lux .cat-label {
  font-size: 9px; font-weight: 700; color: var(--muted);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 5px;
}
.product-lux .p-name {
  font-size: 14px; font-weight: 700; color: var(--black); line-height: 1.4;
  margin-bottom: 10px; text-decoration: none; display: block;
  transition: color 0.2s;
}
.product-lux .p-name:hover { color: var(--gold); }
.product-lux .p-price { font-size: 17px; font-weight: 900; color: var(--gold); }
.product-lux .p-old { font-size: 12px; color: #bbb; text-decoration: line-through; margin-right: 8px; }

/* Featured: منتج كبير (col-span-2) */
.product-lux.featured {
  grid-column: span 2;
}
.product-lux.featured .img-wrap { aspect-ratio: 16/10; }

/* =====================================================
   HOW IT WORKS — MINIMAL
   ===================================================== */

.steps-lux {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
}
.step-lux {
  padding: 48px 36px; border-left: 1px solid var(--border-l);
  position: relative; transition: background 0.3s;
}
.step-lux:first-child { border-left: none; }
.step-lux:hover { background: rgba(201,160,85,0.05); }
.section-dark .step-lux { border-left-color: var(--border-w); }
.section-dark .step-lux:hover { background: rgba(201,160,85,0.04); }

.step-num-lux {
  font-size: 56px; font-weight: 900; color: rgba(0,0,0,0.04);
  line-height: 1; margin-bottom: 20px; letter-spacing: -0.04em;
}
.section-dark .step-num-lux { color: rgba(255,255,255,0.04); }
.step-icon-lux { font-size: 28px; margin-bottom: 16px; display: block; }
.step-title-lux { font-size: 16px; font-weight: 800; color: var(--black); margin-bottom: 8px; }
.section-dark .step-title-lux { color: var(--white); }
.step-sub-lux { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */

.testimonials-lux {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 0;
}
.testimonial-lux {
  padding: 48px 40px; border-left: 1px solid var(--border-w);
  transition: background 0.35s;
}
.testimonial-lux:first-child { border-left: none; }
.testimonial-lux:hover { background: rgba(201,160,85,0.03); }

.testimonial-quote {
  font-size: 28px; color: var(--gold); opacity: 0.4;
  line-height: 1; margin-bottom: 16px; font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.9;
  margin-bottom: 28px; font-style: italic;
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.testimonial-author-name { font-size: 14px; font-weight: 800; color: var(--white); }
.testimonial-author-role { font-size: 10px; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 3px; }

/* =====================================================
   FAQ
   ===================================================== */

.faq-lux-item { border-bottom: 1px solid var(--cream-2); }
.section-dark .faq-lux-item { border-bottom-color: var(--border-w); }
.faq-lux-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; text-align: right; background: none; border: none;
  cursor: pointer; font-family: var(--font); gap: 16px;
  transition: color 0.25s;
}
.faq-lux-btn:hover { color: var(--gold); }
.faq-lux-btn { color: var(--black); }
.section-dark .faq-lux-btn { color: var(--white); }
.faq-lux-question { font-size: 15px; font-weight: 700; text-align: right; }
.faq-lux-icon {
  width: 28px; height: 28px; border: 1px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.35s var(--ease);
  font-size: 18px; line-height: 1; color: var(--gold);
}
.faq-lux-btn.open .faq-lux-icon { background: var(--gold); color: #fff; transform: rotate(45deg); }
.faq-lux-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.35s;
}
.faq-lux-body.open { max-height: 300px; }
.faq-lux-body-inner { padding-bottom: 22px; font-size: 14px; line-height: 1.8; color: var(--muted); }

/* =====================================================
   FOOTER
   ===================================================== */

.footer-lux {
  background: var(--black);
  border-top: 1px solid var(--border);
}
.footer-main {
  max-width: 1400px; margin: 0 auto; padding: 64px 32px 48px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand-name {
  font-size: 26px; font-weight: 900; color: var(--white);
  letter-spacing: -0.02em; margin-bottom: 6px;
}
.footer-brand-sub {
  font-size: 8px; font-weight: 700; letter-spacing: 4px;
  color: var(--gold); text-transform: uppercase; opacity: 0.8;
}
.footer-brand-desc {
  font-size: 13px; color: var(--muted); line-height: 1.8;
  margin-top: 16px; max-width: 260px;
}
.footer-col-title {
  font-size: 10px; font-weight: 800; letter-spacing: 3px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 20px;
}
.footer-link {
  display: block; font-size: 13px; color: rgba(255,255,255,0.4);
  text-decoration: none; margin-bottom: 10px; transition: color 0.25s;
}
.footer-link:hover { color: var(--white); }
.footer-social {
  display: flex; gap: 10px; margin-top: 24px;
}
.footer-social a {
  width: 36px; height: 36px; border: 1px solid var(--border-w);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); text-decoration: none;
  transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-bottom {
  max-width: 1400px; margin: 0 auto; padding: 20px 32px;
  border-top: 1px solid var(--border-w);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); }
.footer-dev {
  font-size: 11px; color: rgba(255,255,255,0.25);
  display: flex; align-items: center; gap: 6px;
}
.footer-dev span { color: var(--gold); font-weight: 700; }

/* =====================================================
   WA FLOAT
   ===================================================== */

.wa-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 999;
  width: 52px; height: 52px; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.35s var(--ease);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }

/* =====================================================
   TOAST
   ===================================================== */

@keyframes toastIn { from{opacity:0;transform:translate(-50%,-20px)}to{opacity:1;transform:translate(-50%,0)} }
#toast:not(.hidden) { animation: toastIn 0.35s cubic-bezier(0.34,1.56,0.64,1); }

/* =====================================================
   ADMIN FORMS (kept from before)
   ===================================================== */

.admin-label {
  display: block; font-size: 13px; font-weight: 700;
  color: #374151; margin-bottom: 6px;
}
.admin-label span { font-size: 11px; color: #9CA3AF; font-weight: 500; }
.admin-input {
  width: 100%; border: 1.5px solid #E5E7EB; border-radius: 10px;
  padding: 10px 14px; font-size: 14px; color: #111827;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: var(--font); background: #fff; outline: none;
}
.admin-input:focus { border-color: #C9A055; box-shadow: 0 0 0 3px rgba(201,160,85,0.12); }
.admin-input::placeholder { color: #9CA3AF; font-size: 13px; }
select.admin-input { cursor: pointer; }
textarea.admin-input { resize: vertical; min-height: 90px; }

.admin-card { background: #fff; border-radius: 14px; border: 1px solid #F1F5F9; overflow: hidden; margin-bottom: 20px; }
.admin-card-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid #F1F5F9; }
.admin-card-head h3 { font-size: 15px; font-weight: 800; color: #111827; }
.admin-card-body { padding: 20px; }

.admin-check-group { display: flex; flex-direction: column; gap: 10px; }
.admin-check-item { display: flex; align-items: flex-start; gap: 10px; padding: 12px 16px; background: #F8FAFC; border-radius: 10px; border: 1.5px solid transparent; cursor: pointer; transition: all 0.15s; }
.admin-check-item:has(input:checked) { background: #FFFBF0; border-color: rgba(201,160,85,0.3); }
.admin-check-item input[type=checkbox] { width: 16px; height: 16px; accent-color: #C9A055; cursor: pointer; margin-top: 1px; flex-shrink: 0; }
.admin-check-item .check-label { font-size: 13px; font-weight: 600; color: #374151; }
.admin-check-item .check-hint { font-size: 11px; color: #9CA3AF; font-weight: 400; display: block; margin-top: 1px; }

.admin-btn { background: #0F172A; color: #fff; font-weight: 700; padding: 11px 24px; border-radius: 10px; border: none; cursor: pointer; font-size: 14px; font-family: var(--font); transition: all 0.2s ease; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.admin-btn:hover { background: #C9A055; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(201,160,85,0.3); }
.admin-btn-sm { padding: 7px 14px; font-size: 12px; border-radius: 8px; }
.admin-btn-outline { background: #fff; color: #374151; font-weight: 600; padding: 10px 20px; border-radius: 10px; border: 1.5px solid #E5E7EB; cursor: pointer; font-size: 14px; font-family: var(--font); transition: all 0.2s ease; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.admin-btn-outline:hover { border-color: #9CA3AF; background: #F9FAFB; }
.admin-btn-danger { background: #FEF2F2; color: #DC2626; border: 1.5px solid #FECACA; font-weight: 600; padding: 7px 14px; border-radius: 8px; font-size: 12px; cursor: pointer; font-family: var(--font); transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px; }
.admin-btn-danger:hover { background: #DC2626; color: #fff; }

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { background: #F8FAFC; font-size: 11px; font-weight: 700; color: #64748B; text-transform: uppercase; letter-spacing: 0.8px; padding: 12px 20px; text-align: right; white-space: nowrap; }
.admin-table td { padding: 14px 20px; border-bottom: 1px solid #F1F5F9; vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #FAFBFC; }
.admin-img-thumb { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; border: 1px solid #F1F5F9; background: #F8FAFC; }

.stat-card { background: #fff; border: 1px solid #F1F5F9; border-radius: 14px; padding: 20px 24px; transition: all 0.2s ease; }
.stat-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.07); transform: translateY(-2px); }

/* Admin Sidebar */
.admin-nav-link { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: 10px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.45); transition: all 0.2s ease; margin-bottom: 2px; border: 1px solid transparent; text-decoration: none; }
.admin-nav-link:hover { color: #fff; background: rgba(255,255,255,0.07); }
.admin-nav-link.active { color: #fff; background: rgba(201,160,85,0.15); border-color: rgba(201,160,85,0.2); }
.admin-nav-link.active svg { color: #C9A055; }

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1024px) {
  .cat-editorial { grid-template-columns: 1fr 1fr; grid-template-rows: none; grid-auto-rows: 280px; }
  .cat-editorial-5 .cat-editorial-item:first-child { grid-row: auto; }
  .products-editorial { grid-template-columns: repeat(2,1fr); }
  .product-lux.featured { grid-column: span 2; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .features-bar-inner { grid-template-columns: repeat(2,1fr); }
  .steps-lux { grid-template-columns: repeat(2,1fr); }
  .testimonials-lux { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .lux-nav .nav-inner { padding: 0 16px; }
  .hero-content { padding: 100px 16px 60px; }
  .section-inner { padding: 0 16px; }
  .section { padding: 64px 0; }
  .cat-editorial { grid-template-columns: 1fr; }
  .cat-editorial-item:first-child .cat-editorial-name { font-size: 24px; }
  .products-editorial { grid-template-columns: repeat(2,1fr); }
  .product-lux.featured { grid-column: span 1; }
  .product-lux.featured .img-wrap { aspect-ratio: 3/4; }

  /* كاروسيل قابل للسحب على الموبايل لقسم الأكثر مبيعاً */
  .bestseller-carousel {
    display: flex; grid-template-columns: none;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    padding: 0 16px 4px;
  }
  .bestseller-carousel::-webkit-scrollbar { display: none; }
  .bestseller-carousel .product-lux {
    flex: 0 0 68%; scroll-snap-align: start;
  }
  .bestseller-carousel .product-lux.featured { grid-column: unset; }

  .steps-lux { grid-template-columns: 1fr 1fr; }
  .step-lux { padding: 32px 20px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding: 40px 16px 32px; }
  .footer-bottom { padding: 16px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .features-bar-inner { grid-template-columns: 1fr 1fr; }
  .feature-item { padding: 20px 16px; }
  .cat-nav { padding: 0 16px; }
  .hero-lux { min-height: auto; }
  .hero-content { justify-content: flex-start; padding-bottom: 48px; }
  .scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .steps-lux { grid-template-columns: 1fr; }
  .testimonials-lux { grid-template-columns: 1fr; }
  .step-lux { text-align: center; padding: 36px 24px; }
  .step-num-lux { font-size: 64px; margin-bottom: 12px; }
  .step-icon-lux { font-size: 34px; margin-bottom: 18px; }
  .step-title-lux { font-size: 19px; margin-bottom: 10px; }
  .step-sub-lux { font-size: 14.5px; }
  .display-md { font-size: clamp(24px, 7vw, 32px); letter-spacing: -0.01em; }
}

/* =====================================================
   SHOP PAGE — RESPONSIVE
   ===================================================== */
.shop-container { display: flex; }
@media (max-width: 900px) {
  .shop-container { flex-direction: column; padding-left: 16px !important; padding-right: 16px !important; }
  .shop-sidebar { width: 100% !important; position: static !important; }
}
@media (max-width: 768px) {
  .shop-page-header-inner { padding: 0 16px !important; }
}

/* =====================================================
   ADMIN — RESPONSIVE GRIDS
   ===================================================== */
.admin-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.admin-dash-grid  { display: grid; grid-template-columns: 1fr 280px; }
.admin-grid-2     { display: grid; grid-template-columns: 1fr 1fr; }

@media (max-width: 1024px) {
  .admin-stats-grid { grid-template-columns: repeat(2,1fr); }
  .admin-dash-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .admin-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .admin-stats-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  main.flex-1.overflow-y-auto { padding: 16px !important; }
}

@media print { nav, footer, .wa-float, .no-print { display: none !important; } }
