/* ============================================================
   FAWZ — MAIN STYLESHEET  v2
   © 2026 FAWZ — Adam Belafia Es Safi
   ============================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --black:       #080808;
  --off-white:   #F5F2ED;
  --white:       #FAFAF8;
  --sand:        #EAE2D6;
  --sand-mid:    #D8CCBC;
  --sand-dark:   #B8A898;
  --gold:        #C4A55A;
  --gold-light:  #D4BC7A;
  --gold-pale:   rgba(196,165,90,0.12);
  --muted:       #7A746E;
  --muted-light: #A09990;
  --border:      rgba(8,8,8,0.09);
  --border-mid:  rgba(8,8,8,0.16);

  --font-d: 'Cormorant Garamond', serif;
  --font-b: 'Montserrat', sans-serif;

  --nav-h:  76px;
  --maxw:   1320px;
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: var(--font-b);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img   { display: block; max-width: 100%; }
a     { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-d);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0.015em;
}
h1 { font-size: clamp(3rem, 6.5vw, 5.5rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); }

p {
  font-size: 0.875rem;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.03em;
}

.label-xs {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--font-b);
}

.arabic { font-family: var(--font-d); letter-spacing: 0.04em; }

/* ── Layout ────────────────────────────────────────────────── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section   { padding: 96px 0; }

/* ── Nav ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav--solid {
  background: rgba(250,250,248,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav--transparent {
  background: transparent;
}

.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav__logo {
  font-family: var(--font-d);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.nav__logo sub {
  font-size: 0.58rem;
  letter-spacing: 0.38em;
  color: var(--gold);
  font-family: var(--font-b);
  font-weight: 400;
  vertical-align: baseline;
}

/* Links */
.nav__links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}
.nav__links a {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.25s var(--ease);
  padding-bottom: 2px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.28s var(--ease);
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { right: 0; }

/* Actions (orbe + carrito) */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav__cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.nav__cart-btn:hover { background: var(--gold-pale); }
.nav__cart-btn svg {
  width: 20px; height: 20px;
  stroke: var(--black); fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-count {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.5rem;
  font-weight: 600;
  font-family: var(--font-b);
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: scale(0.7);
}
.cart-count.visible { opacity: 1; transform: scale(1); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 36px;
  font-family: var(--font-b);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.28s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(8,8,8,0.18);
}
.btn-primary:hover {
  background: #1c1c1c;
  box-shadow: 0 6px 28px rgba(8,8,8,0.28);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(196,165,90,0.3);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 28px rgba(196,165,90,0.4);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--border-mid);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(250,250,248,0.35);
}
.btn-outline-white:hover {
  background: rgba(250,250,248,0.1);
  border-color: rgba(250,250,248,0.6);
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Grain overlay for texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(196,165,90,0.07) 0%, transparent 70%),
    linear-gradient(175deg, #080808 0%, #120e08 60%, #0a0a0a 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 28px;
  max-width: 800px;
}

.hero__eyebrow {
  font-family: var(--font-b);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

.hero__arabic {
  font-family: var(--font-d);
  font-size: clamp(5.5rem, 16vw, 13rem);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.08em;
  line-height: 0.9;
  text-shadow: 0 0 120px rgba(196,165,90,0.2);
}

.hero__title {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1.15;
}

.hero__sub {
  font-size: 0.8rem;
  line-height: 1.9;
  color: rgba(250,250,248,0.55);
  max-width: 440px;
  letter-spacing: 0.04em;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero__scroll-label {
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.3);
  font-family: var(--font-b);
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(196,165,90,0.7), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ── Marquee ───────────────────────────────────────────────── */
.marquee-wrap {
  background: var(--black);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(196,165,90,0.15);
  border-bottom: 1px solid rgba(196,165,90,0.15);
}
.marquee {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}
.marquee__item {
  display: flex;
  align-items: center;
  gap: 64px;
  flex-shrink: 0;
}
.marquee span {
  font-family: var(--font-b);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(196,165,90,0.65);
}
.marquee .sep {
  color: rgba(196,165,90,0.25);
  font-size: 0.5rem;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Section header ────────────────────────────────────────── */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  gap: 20px;
  flex-wrap: wrap;
}
.section-header__left { display: flex; flex-direction: column; gap: 8px; }
.section-header__eyebrow {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-b);
}

/* ── Product card ──────────────────────────────────────────── */
.product-card {
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card__media {
  aspect-ratio: 3 / 4;
  background: var(--sand);
  overflow: hidden;
  position: relative;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.product-card:hover .product-card__media img {
  transform: scale(1.05);
}

.product-card__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d);
  font-size: 4rem;
  color: var(--sand-dark);
}

.product-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 11px;
}
.product-card__badge--gold { background: var(--gold); color: var(--black); }
.product-card__badge--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(250,250,248,0.5);
}

/* Quick-add overlay */
.product-card__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(8,8,8,0.82);
  backdrop-filter: blur(4px);
  padding: 14px 16px;
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
}
.product-card:hover .product-card__overlay { transform: translateY(0); }
.product-card__overlay-text {
  font-family: var(--font-b);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
}

/* Card info */
.product-card__info {
  padding: 16px 0 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: start;
}
.product-card__name {
  font-family: var(--font-b);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.4;
}
.product-card__ar {
  font-family: var(--font-d);
  font-size: 0.88rem;
  color: var(--muted-light);
  grid-column: 1;
  margin-top: 2px;
}
.product-card__price {
  font-family: var(--font-b);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted);
  grid-row: 1;
  grid-column: 2;
  text-align: right;
  white-space: nowrap;
}

/* ── Products grid ─────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 3px;
}

/* ── Collection filters ────────────────────────────────────── */
.filters {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 52px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.filters::-webkit-scrollbar { display: none; }

.filter-btn {
  padding: 14px 24px;
  font-family: var(--font-b);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.22s var(--ease);
  margin-bottom: -1px;
}
.filter-btn:hover { color: var(--black); }
.filter-btn.active {
  color: var(--black);
  border-bottom-color: var(--gold);
}

/* ── Statement section ─────────────────────────────────────── */
.statement {
  background: var(--black);
  color: var(--white);
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.statement::before {
  content: 'فوز';
  position: absolute;
  font-family: var(--font-d);
  font-size: clamp(12rem, 30vw, 22rem);
  font-weight: 300;
  color: rgba(196,165,90,0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.statement__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.statement__quote {
  font-family: var(--font-d);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  max-width: 680px;
  color: var(--white);
  letter-spacing: 0.02em;
}

.statement__attr {
  font-family: var(--font-b);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
}

/* ── Collections grid (homepage) ───────────────────────────── */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.collection-card {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--sand);
  cursor: pointer;
  display: block;
}

.collection-card__bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: clamp(4rem, 10vw, 8rem);
  transition: transform 0.5s var(--ease);
}

.collection-card:hover .collection-card__bg { transform: scale(1.06); }

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.72) 0%, rgba(8,8,8,0.1) 50%, transparent 100%);
}

.collection-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  z-index: 2;
}

.collection-card__name {
  font-family: var(--font-d);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.1em;
  line-height: 1;
}

.collection-card__ar {
  font-family: var(--font-d);
  font-size: 0.95rem;
  color: rgba(250,250,248,0.55);
  margin-top: 4px;
}

.collection-card__from {
  font-family: var(--font-b);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 10px;
  display: block;
}

.collection-card__arrow {
  position: absolute;
  top: 20px; right: 20px;
  width: 32px; height: 32px;
  border: 1px solid rgba(250,250,248,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: var(--white);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s var(--ease);
}

.collection-card:hover .collection-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Cart Drawer ───────────────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(8,8,8,0.55);
  z-index: 200;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
  backdrop-filter: blur(2px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: -500px; bottom: 0;
  width: 460px; max-width: 100vw;
  background: var(--white);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transition: right 0.42s var(--ease-out);
  box-shadow: -8px 0 40px rgba(8,8,8,0.12);
}
.cart-drawer.open { right: 0; }

.cart-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 32px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-drawer__title {
  font-family: var(--font-d);
  font-size: 1.7rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.cart-drawer__close {
  background: none; border: none; cursor: pointer;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 1.2rem;
  border-radius: 50%;
  transition: all 0.2s;
}
.cart-drawer__close:hover { background: var(--sand); color: var(--black); }

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 0 32px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item__img {
  width: 84px; height: 104px;
  background: var(--sand);
  flex-shrink: 0;
  overflow: hidden;
}
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__img-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 1.8rem; color: var(--sand-dark);
}
.cart-item__info { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.cart-item__name { font-size: 0.72rem; font-weight: 400; letter-spacing: 0.09em; text-transform: uppercase; color: var(--black); line-height: 1.4; }
.cart-item__meta { font-size: 0.64rem; color: var(--muted-light); letter-spacing: 0.04em; }
.cart-item__price { font-size: 0.78rem; color: var(--muted); margin-top: auto; }
.cart-item__remove {
  background: none; border: none; cursor: pointer;
  font-size: 0.6rem; font-family: var(--font-b);
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted-light); padding: 0;
  transition: color 0.2s;
}
.cart-item__remove:hover { color: var(--black); text-decoration: underline; }

.cart-footer {
  padding: 24px 32px 32px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-b);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cart-empty {
  text-align: center;
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cart-empty .arabic { font-size: 4.5rem; color: var(--sand-dark); }
.cart-empty p { font-size: 0.78rem; }

/* ── Toast ─────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 36px; left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--black);
  color: var(--white);
  padding: 13px 28px;
  font-family: var(--font-b);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 400;
  opacity: 0;
  transition: all 0.3s var(--ease);
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(8,8,8,0.2);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: #060606;
  color: var(--white);
  padding: 72px 0 36px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer__brand { display: flex; flex-direction: column; gap: 18px; }
.footer__logo {
  font-family: var(--font-d);
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--white);
}
.footer__logo .arabic { color: var(--gold); margin-left: 8px; }
.footer__tagline {
  font-family: var(--font-d);
  font-size: 1rem;
  font-style: italic;
  color: rgba(250,250,248,0.35);
  line-height: 1.5;
  max-width: 260px;
}
.footer__col h4 {
  font-family: var(--font-b);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__col a {
  font-size: 0.75rem;
  color: rgba(250,250,248,0.45);
  transition: color 0.22s;
  letter-spacing: 0.04em;
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(250,250,248,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 0.6rem; color: rgba(250,250,248,0.28); letter-spacing: 0.08em; }
.footer__legal {
  display: flex;
  gap: 20px;
}
.footer__legal a { font-size: 0.6rem; color: rgba(250,250,248,0.28); transition: color 0.2s; }
.footer__legal a:hover { color: rgba(250,250,248,0.6); }

/* ── Nav transparent for hero pages ────────────────────────── */
.nav--hero { --nav-text: rgba(250,250,248,0.9); }
.nav--hero .nav__links a { color: var(--nav-text); }
.nav--hero .nav__logo    { color: var(--white); }
.nav--hero .nav__cart-btn svg { stroke: var(--white); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .collections-grid { grid-template-columns: 1fr; }
  :root { --nav-h: 64px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero__arabic { font-size: clamp(4.5rem, 24vw, 8rem); }
  .cart-drawer { width: 100vw; }
  .container { padding: 0 18px; }
  .btn { padding: 13px 28px; }
}
