/* ============================================
   NASHMI CLUB — Premium Jordanian Streetwear
   RTL Arabic-first design system
   ============================================ */

:root {
  /* ============================================
     NASHMI CLUB — Dark Luxury Streetwear palette
     Matches official packaging identity:
     matte black canvas + antique-gold foil accents
     ============================================ */

  /* ── Canonical brand palette (source of truth) ── */
  --nc-black: #0B0A08;
  --nc-soft-black: #12100D;
  --nc-charcoal: #1A1815;
  --nc-tissue-black: #24211C;
  --nc-dark-stone: #393229;
  --nc-gold: #C6A15B;
  --nc-gold-shadow: #81674A;
  --nc-gold-light: #D2B37A;
  --nc-cream: #FAF7F1;
  --nc-sand: #F4EFE7;
  --nc-stone: #EEE6DA;
  --nc-burgundy: #6E1F2F;
  --nc-burgundy-dark: #571827;
  --nc-olive: #6F7352;
  --nc-text-gray: #4A4A4A;

  /* ── System role mapping (used throughout the theme) ── */
  --charcoal: var(--nc-tissue-black);    /* dark surface / mid-tone accent */
  --soft-black: var(--nc-black);         /* deepest layer — body canvas */
  --sand: var(--nc-soft-black);          /* dark surface alt — section/page canvas */
  --stone: var(--nc-charcoal);           /* dark elevated surface — icons/placeholders */
  --surface-card: var(--nc-soft-black);  /* dark card surface (cart, testimonials, policy cards, inputs) */
  --cream: var(--nc-cream);              /* PRIMARY light text */
  --off-white: var(--nc-sand);           /* secondary light text / accent */

  --burgundy: var(--nc-burgundy);
  --burgundy-dark: var(--nc-burgundy-dark);

  --gold: var(--nc-gold);
  --gold-light: var(--nc-gold-light);
  --gold-deep: var(--nc-gold-shadow);

  --olive: var(--nc-olive);
  --text-gray: var(--nc-stone);          /* secondary warm light text (was cold dark gray) */
  --muted-gray: var(--nc-dark-stone);
  --line: rgba(198,161,91,.16);          /* gold-tinted hairline for dark surfaces */
  --line-strong: rgba(198,161,91,.28);

  /* Legacy aliases for older sections (policy pages, etc.) */
  --white: var(--nc-cream);
  --white-dim: var(--nc-stone);
  --white-dimmer: rgba(250,247,241,.55);
  --black: var(--nc-black);
  --black2: var(--nc-charcoal);
  --gold-dark: var(--gold-deep);
  --red: var(--burgundy);
  --red-dark: var(--burgundy-dark);

  --font-ar: 'Cairo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-en: 'Cairo', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --max-w: 1320px;
  --pad-x: clamp(16px, 4vw, 56px);
  --radius: 14px;
  --radius-sm: 8px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-ar);
  background: var(--charcoal);
  background-image: radial-gradient(ellipse at 20% 0%, rgba(198,161,91,.10) 0%, transparent 60%),
                    radial-gradient(ellipse at 80% 100%, rgba(198,161,91,.06) 0%, transparent 50%);
  color: var(--cream);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }

/* Latin words inside Arabic */
:lang(en), .en, .latin { font-family: var(--font-en); letter-spacing: .02em; }

.page-width, .nashmi-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ===========================================================
   HEADER / NAV
   =========================================================== */
.nashmi-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,10,8,.88);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border-bottom: 1px solid rgba(198,161,91,.18);
  box-shadow: 0 1px 24px rgba(0,0,0,.4);
}
.nashmi-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.nashmi-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}
.nashmi-logo img { height: 44px; width: auto; }
.nashmi-logo__word {
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: .22em;
  font-size: 14px;
}
.nashmi-nav {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nashmi-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.nashmi-nav a:hover { color: var(--gold); }
.nashmi-nav a::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.nashmi-nav a:hover::after { transform: scaleX(1); }

.nashmi-header__actions { display: flex; align-items: center; gap: 12px; }
.nashmi-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--nc-gold);
  color: var(--nc-black);
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.nashmi-cta:hover { background: var(--nc-gold-light); color: var(--nc-black); transform: translateY(-1px); }
.nashmi-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(250,247,241,.22);
  transition: border-color .2s var(--ease);
}
.nashmi-cart:hover { border-color: var(--gold); }
.nashmi-cart__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: var(--nc-gold);
  color: var(--nc-black);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-en);
}

.nashmi-burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}
.nashmi-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--cream);
  position: relative;
}
.nashmi-burger span::before,
.nashmi-burger span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: var(--cream);
}
.nashmi-burger span::before { top: -7px; }
.nashmi-burger span::after { top: 7px; }

@media (max-width: 900px) {
  .nashmi-nav, .nashmi-cta { display: none; }
  .nashmi-burger { display: inline-flex; }
  .nashmi-logo img { height: 36px; }
}

/* Mobile menu */
.nashmi-mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  color: var(--cream);
  z-index: 100;
  transform: translateY(-100%);
  transition: transform .4s var(--ease);
  padding: 80px var(--pad-x) 40px;
  overflow-y: auto;
}
.nashmi-mobile-menu.is-open { transform: translateY(0); }
.nashmi-mobile-menu__close {
  position: absolute; top: 18px; inset-inline-end: 18px;
  width: 44px; height: 44px; font-size: 22px;
  color: var(--cream);
}
.nashmi-mobile-menu ul { list-style: none; padding: 0; margin: 0 0 32px; }
.nashmi-mobile-menu li { border-bottom: 1px solid rgba(244,239,231,.12); }
.nashmi-mobile-menu a {
  display: block;
  padding: 18px 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--cream);
}
.nashmi-mobile-menu .nashmi-cta { width: 100%; justify-content: center; }

/* ===========================================================
   BUTTONS
   =========================================================== */
.btn,
.btn-primary,
.btn-secondary,
.btn-dark,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: all .25s var(--ease);
  border: 1px solid transparent;
  text-align: center;
}
.btn-primary { background: var(--nc-gold); color: var(--nc-black); }
.btn-primary:hover { background: var(--nc-gold-light); color: var(--nc-black); transform: translateY(-1px); }
.btn-dark { background: var(--nc-soft-black); color: var(--nc-cream); border-color: rgba(198,161,91,.3); }
.btn-dark:hover { background: var(--nc-gold); color: var(--nc-black); }
.btn-secondary { background: transparent; color: var(--nc-gold); border-color: var(--nc-gold); }
.btn-secondary:hover { background: var(--nc-gold); color: var(--nc-black); border-color: var(--nc-gold); }
.btn-ghost { background: transparent; color: var(--nc-gold); border-color: var(--nc-gold); }
.btn-ghost:hover { background: var(--nc-gold); color: var(--nc-black); border-color: var(--nc-gold); }

/* ===========================================================
   HERO — Image shown completely on all devices
   Image dimensions: 1916 × 821 px (2.33:1 landscape)
   =========================================================== */
.hero {
  position: relative;
  /* Respect image aspect ratio so nothing gets cropped on desktop */
  aspect-ratio: 1916 / 821;
  /* Never taller than 92vh (keep content + header visible) */
  max-height: 92vh;
  /* Never shorter than 480px */
  min-height: 480px;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  /* contain = full image visible, no cropping, dark bars if needed */
  object-fit: contain;
  object-position: center center;
  display: block;
  background: var(--charcoal);
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(10,9,8,.55) 0%, rgba(10,9,8,.28) 45%, rgba(10,9,8,.06) 80%),
    linear-gradient(0deg, rgba(10,9,8,.45) 0%, transparent 45%);
}
[dir="rtl"] .hero__overlay {
  background:
    linear-gradient(270deg, rgba(10,9,8,.55) 0%, rgba(10,9,8,.28) 45%, rgba(10,9,8,.06) 80%),
    linear-gradient(0deg, rgba(10,9,8,.45) 0%, transparent 45%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(48px, 7vh, 90px) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
  color: var(--cream);
}
.hero__inner { max-width: 580px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  background: rgba(210,179,122,.14);
  border: 1px solid rgba(210,179,122,.42);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  letter-spacing: .04em;
}
.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--gold-light);
}
.hero__title {
  font-size: clamp(1.75rem, 4.6vw, 4rem);
  line-height: 1.08;
  font-weight: 900;
  margin: 0 0 18px;
  letter-spacing: -.015em;
  text-shadow: 0 2px 20px rgba(10,9,8,.5);
}
.hero__title .accent { color: var(--gold-light); }
.hero__title .brand-accent { color: var(--gold); background: var(--sand); padding: 0 .25em; border-radius: 6px; }
.hero__sub {
  font-size: clamp(.95rem, 1.3vw, 1.1rem);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(238,230,218,.9);
  margin: 0 0 10px;
  max-width: 500px;
}
.hero__sub .accent { color: var(--gold-light); font-weight: 600; }
.hero__english {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 26px;
  font-weight: 600;
  opacity: .85;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── Tablet ── */
@media (max-width: 900px) and (min-width: 721px) {
  .hero {
    aspect-ratio: 4 / 3;
    min-height: 460px;
    max-height: 80vh;
  }
  .hero__media img,
  .hero__media video { object-fit: contain; }
}

/* ── Mobile: stack image above content, image fully visible ── */
@media (max-width: 720px) {
  .hero {
    aspect-ratio: unset;
    display: flex;
    flex-direction: column;
    min-height: 0;
    max-height: none;
    height: auto;
    align-items: stretch;
    background: var(--charcoal);
  }
  .hero__media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 1916 / 821;
    background: var(--charcoal);
  }
  .hero__media img,
  .hero__media video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    background: var(--charcoal);
  }
  /* No dark overlay over the image — text moves below */
  .hero__overlay { display: none; }
  .hero__content {
    position: relative;
    padding: 28px var(--pad-x) 36px;
    color: var(--cream);
    background: var(--charcoal);
  }
  .hero__inner { max-width: 100%; }
  .hero__badge { margin-bottom: 16px; font-size: 12px; padding: 6px 14px; }
  .hero__title {
    font-size: clamp(1.6rem, 6.8vw, 2.2rem);
    line-height: 1.15;
    margin: 0 0 14px;
    text-shadow: none;
  }
  .hero__sub {
    font-size: .98rem;
    line-height: 1.7;
    margin-bottom: 8px;
  }
  .hero__english { font-size: 10px; letter-spacing: .32em; margin-bottom: 20px; }
  .hero__ctas { gap: 10px; }
  .hero__ctas .btn {
    flex: 1 1 auto;
    min-width: 140px;
    padding: 12px 18px;
    font-size: 14px;
  }
}

/* ===========================================================
   SECTIONS — generic
   =========================================================== */
section.nc-section {
  padding: clamp(72px, 10vw, 130px) 0;
}
.nc-eyebrow {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--nc-gold);
  margin-bottom: 18px;
}
.nc-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--nc-gold);
  vertical-align: middle;
  margin-inline-end: 12px;
}
.nc-title {
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--nc-gold);
}
.nc-sub {
  font-size: clamp(.98rem, 1.4vw, 1.05rem);
  color: var(--text-gray);
  max-width: 640px;
  margin: 0 0 40px;
  line-height: 1.75;
}
.nc-section--sand {
  background: var(--nc-soft-black);
  background-image: radial-gradient(ellipse at 70% 30%, rgba(198,161,91,.1) 0%, transparent 65%);
  color: var(--nc-cream);
}
.nc-section--sand .nc-sub { color: var(--text-gray); }
.nc-section--stone {
  background: var(--nc-charcoal);
  background-image:
    radial-gradient(ellipse at 20% 80%, rgba(198,161,91,.09) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(198,161,91,.08) 0%, transparent 50%);
  color: var(--nc-cream);
}
.nc-section--stone .nc-sub { color: var(--text-gray); }
.nc-section--dark {
  background: var(--nc-black);
  background-image:
    radial-gradient(ellipse at 15% 50%, rgba(198,161,91,.15) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(198,161,91,.09) 0%, transparent 45%);
  color: var(--nc-cream);
}
.nc-section--dark .nc-title { color: var(--nc-gold); }
.nc-section--dark .nc-sub { color: var(--text-gray); }
.nc-section--dark .nc-eyebrow { color: var(--nc-gold); }
.nc-section--dark .nc-eyebrow::before { background: var(--nc-gold); }
.nc-section--dark .brand-feeling__text { color: var(--nc-cream); }
.nc-section--dark .brand-feeling__text strong { color: var(--nc-gold); }
.nc-section--dark .brand-feeling__rule { background: var(--nc-gold); }
.nc-section--burgundy {
  background: var(--nc-black);
  background-image:
    radial-gradient(ellipse at 80% 20%, rgba(198,161,91,.24) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(198,161,91,.1) 0%, transparent 55%);
  color: var(--nc-cream);
}
.nc-section--burgundy .nc-title { color: var(--nc-gold); }

/* Brand feeling — large editorial typography */
.brand-feeling__text {
  font-size: clamp(1.25rem, 3.4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--nc-cream);
  max-width: 880px;
}
.brand-feeling__text strong { color: var(--nc-gold); font-weight: 700; }
.brand-feeling__rule {
  width: 80px; height: 3px; background: var(--nc-gold);
  margin-bottom: 32px;
}

/* ===========================================================
   BRAND PROMISE — image + text
   =========================================================== */
.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.promise-grid__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--stone);
}
.promise-grid__media img { width: 100%; height: 100%; object-fit: cover; }
.promise-grid__media::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  opacity: .35;
  border-radius: var(--radius);
  pointer-events: none;
}
.promise-grid__text p {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--text-gray);
  margin: 0 0 18px;
}
.nc-section--dark .promise-grid__text p { color: rgba(238,230,218,.82); }
@media (max-width: 820px) {
  .promise-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   PRODUCT GRID — Premium Edition
   =========================================================== */
.products-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.products-head .nc-sub { margin-bottom: 0; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 480px)  { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* ---- Card shell ---- */
.product-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, var(--nc-soft-black) 0%, var(--nc-charcoal) 100%);
  border: 1px solid rgba(198,161,91,.18);
  border-radius: 18px;
  overflow: hidden;
  transition:
    transform .4s cubic-bezier(.2,.8,.2,1),
    box-shadow .4s cubic-bezier(.2,.8,.2,1),
    border-color .3s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
}

/* gold top-line accent */
.product-card::before {
  content: '';
  position: absolute;
  top: 0; inset-inline: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--nc-gold), transparent);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 3;
}
.product-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(198,161,91,.5);
  box-shadow:
    0 2px 6px rgba(11,10,8,.3),
    0 12px 32px rgba(11,10,8,.45),
    0 32px 64px -16px rgba(198,161,91,.12),
    inset 0 0 0 1px rgba(198,161,91,.12);
}
.product-card:hover::before { opacity: 1; }

/* ---- Media ---- */
.product-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--nc-charcoal);
}
.product-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.product-card:hover .product-card__media img { transform: scale(1.06); }

/* quick-view shimmer on hover */
.product-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(198,161,91,.1) 50%,
    transparent 60%
  );
  background-size: 200% 200%;
  background-position: -100% -100%;
  transition: background-position .6s ease;
  pointer-events: none;
  z-index: 1;
}
.product-card:hover .product-card__media::after {
  background-position: 200% 200%;
}

/* ---- Placeholder ---- */
.product-card__placeholder {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: radial-gradient(circle at 50% 40%, var(--nc-charcoal) 0%, var(--nc-soft-black) 100%);
  color: var(--nc-cream);
}
.product-card__placeholder-mark {
  width: 60px; height: 60px;
  border: 1.5px solid var(--nc-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .08em;
  color: var(--nc-gold);
  box-shadow: 0 0 0 6px rgba(198,161,91,.08);
}
.product-card__placeholder-label {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: .38em;
  color: var(--text-gray);
  text-transform: uppercase;
}

/* ---- Badge ---- */
.product-card__badge {
  position: absolute;
  top: 14px; inset-inline-start: 14px;
  background: rgba(110,31,47,.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--nc-cream);
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--font-en);
  letter-spacing: .08em;
  border: 1px solid rgba(250,247,241,.2);
  z-index: 2;
}

/* ---- Stars (decorative) ---- */
.product-card__stars {
  position: absolute;
  bottom: 14px; inset-inline-end: 14px;
  display: flex;
  gap: 2px;
  z-index: 2;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .3s ease, transform .3s ease;
}
.product-card:hover .product-card__stars {
  opacity: 1;
  transform: none;
}
.product-card__stars svg {
  width: 12px; height: 12px;
  fill: var(--nc-gold);
}

/* ---- Body ---- */
.product-card__body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: linear-gradient(180deg, rgba(11,10,8,0) 0%, rgba(11,10,8,.35) 100%);
  position: relative;
}
.product-card__body::before {
  content: '';
  position: absolute;
  top: 0; inset-inline: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198,161,91,.35), transparent);
}
.product-card__title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--nc-cream);
  margin: 0 0 10px;
  line-height: 1.4;
  letter-spacing: .01em;
}
.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-en);
  margin-bottom: 14px;
}
.product-card__price .price {
  color: var(--nc-gold);
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -.01em;
}
.product-card__price .compare {
  color: var(--text-gray);
  text-decoration: line-through;
  font-size: .85rem;
  opacity: .7;
}

/* ---- CTA ---- */
.product-card__cta {
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--nc-gold);
  color: var(--nc-black);
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  transition: background .28s ease, transform .2s ease, box-shadow .28s ease;
  position: relative;
  overflow: hidden;
}
.product-card__cta::after {
  content: '←';
  font-family: var(--font-en);
  font-size: 14px;
  margin-inline-start: 2px;
  transition: transform .25s ease;
  display: inline-block;
}
[dir="ltr"] .product-card__cta::after { content: '→'; }
.product-card:hover .product-card__cta {
  background: var(--nc-gold-light);
  box-shadow: 0 4px 16px rgba(198,161,91,.35);
}
.product-card:hover .product-card__cta::after { transform: translateX(-3px); }
[dir="ltr"] .product-card:hover .product-card__cta::after { transform: translateX(3px); }

/* ===========================================================
   DARK STORY / ABOUT
   =========================================================== */
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.story-grid__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.story-grid__media img { width: 100%; height: 100%; object-fit: cover; }
.story-grid__media::after {
  content: '';
  position: absolute; inset: 16px;
  border: 1px solid rgba(198,161,91,.4);
  border-radius: var(--radius);
  pointer-events: none;
}
.story-grid__text p {
  font-size: 1.08rem;
  line-height: 1.9;
  color: rgba(244,239,231,.82);
  margin: 0 0 16px;
}
.story-grid__text p:last-of-type {
  color: var(--gold);
  font-weight: 500;
}
@media (max-width: 820px) { .story-grid { grid-template-columns: 1fr; } }

/* ===========================================================
   MANIFESTO
   =========================================================== */
.manifesto-wrap { text-align: center; max-width: 900px; margin: 0 auto; }
.manifesto-line {
  display: block;
  font-size: clamp(1.3rem, 3.6vw, 2.6rem);
  line-height: 1.45;
  font-weight: 600;
  color: var(--cream);
}
.manifesto-line.accent { color: var(--gold); }
.manifesto-line + .manifesto-line { margin-top: 4px; }
.manifesto-spacer { height: 24px; }
.manifesto-sig {
  margin-top: 36px;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .35em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ===========================================================
   IDENTITY (أصل أردني)
   =========================================================== */
.identity {
  position: relative;
  overflow: hidden;
}
.identity::before {
  content: '';
  position: absolute;
  inset: 40px;
  border: 1px solid var(--gold);
  opacity: .25;
  border-radius: var(--radius);
  pointer-events: none;
}
.identity__inner { position: relative; text-align: center; max-width: 780px; margin: 0 auto; }
.identity__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  margin: 0 0 20px;
  color: var(--cream);
}
.identity__title .accent { color: var(--gold); }
.identity__pattern {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 28px 0 0;
}
.identity__pattern span {
  width: 10px; height: 10px;
  background: var(--gold-light);
  transform: rotate(45deg);
  opacity: .3;
}
.identity__pattern span:nth-child(even) { background: var(--gold); opacity: .55; }

/* ===========================================================
   COMMUNITY
   =========================================================== */
.community-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  margin-top: 48px;
}
.community-grid > a {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft-black);
  border: 1px solid rgba(244,239,231,.08);
  position: relative;
}
.community-grid > a img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center center;
  background: var(--soft-black);
  transition: transform .7s var(--ease);
}
.community-grid > a:hover img { transform: scale(1.05); }
.community-grid > a:nth-child(1) { grid-row: 1 / span 2; aspect-ratio: 4 / 5; }
.community-grid > a:nth-child(2),
.community-grid > a:nth-child(3),
.community-grid > a:nth-child(4),
.community-grid > a:nth-child(5) { aspect-ratio: 1 / 1; }

@media (max-width: 820px) {
  .community-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 10px; }
  .community-grid > a:nth-child(1) { grid-row: auto; grid-column: 1 / -1; aspect-ratio: 4 / 3; }
  .community-grid > a:nth-child(2),
  .community-grid > a:nth-child(3),
  .community-grid > a:nth-child(4),
  .community-grid > a:nth-child(5) { aspect-ratio: 1 / 1; }
}

@media (max-width: 480px) {
  .community-grid { grid-template-columns: 1fr; }
  .community-grid > a:nth-child(1) { grid-column: auto; aspect-ratio: 4 / 3; }
  .community-grid > a:nth-child(2),
  .community-grid > a:nth-child(3),
  .community-grid > a:nth-child(4),
  .community-grid > a:nth-child(5) { aspect-ratio: 4 / 3; }
}

/* ===========================================================
   QUALITY / FEATURES
   =========================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.feature-card {
  background: linear-gradient(145deg, var(--cream) 0%, var(--stone) 100%);
  border: 1px solid rgba(198,161,91,.2);
  border-radius: 18px;
  padding: 36px 30px;
  transition: border-color .3s ease, transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; inset-inline: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198,161,91,.5), transparent);
}
.feature-card:hover {
  border-color: rgba(198,161,91,.5);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px -16px rgba(110,31,47,.16), 0 6px 16px rgba(19,17,16,.06);
}
.feature-card__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--sand);
  border: 1px solid var(--gold);
  color: var(--gold);
  margin-bottom: 18px;
}
.feature-card__icon svg { width: 22px; height: 22px; }
.feature-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  margin: 0 0 8px;
}
.feature-card__text {
  font-size: .95rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 820px) { .feature-grid { grid-template-columns: 1fr; } }

/* ===========================================================
   MOBILE FINE-TUNES — spacing & typography
   =========================================================== */
@media (max-width: 720px) {
  section.nc-section { padding: 56px 0; }
  .nc-sub { margin-bottom: 28px; }
  .products-head { margin-bottom: 28px; gap: 14px; }
  .products-head .btn-secondary { padding: 10px 18px; font-size: 13px; }
  .promise-grid__text p,
  .story-grid__text p { font-size: 1rem; line-height: 1.75; }
  .identity::before { inset: 16px; }
  .feature-card { padding: 26px 22px; }
  .final-cta { padding: 56px var(--pad-x); }
  .final-cta__text { font-size: 1rem; }
  .community-grid { gap: 10px; margin-top: 28px; }
  .manifesto-spacer { height: 14px; }
}

@media (max-width: 480px) {
  .product-card__body { padding: 14px 14px 16px; }
  .product-card__title { font-size: .9rem; }
  .product-card__price .price { font-size: 1rem; }
  .product-card__cta { padding: 10px 14px; font-size: 12px; }
}

/* ===========================================================
   FINAL CTA
   =========================================================== */
.final-cta {
  text-align: center;
  padding: clamp(72px, 10vw, 130px) var(--pad-x);
}
.final-cta__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  margin: 0 0 18px;
}
.final-cta__text {
  font-size: 1.1rem;
  margin: 0 auto 36px;
  max-width: 540px;
  opacity: .85;
}

/* ===========================================================
   FOOTER
   =========================================================== */
.nashmi-footer {
  background: var(--charcoal);
  background-image:
    radial-gradient(ellipse at 10% 80%, rgba(110,31,47,.2) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 10%, rgba(198,161,91,.08) 0%, transparent 45%);
  color: var(--cream);
  padding: 80px var(--pad-x) 28px;
}
.nashmi-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.nashmi-footer h4 {
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  font-weight: 600;
  font-family: var(--font-en);
}
.nashmi-footer__brand img { height: 64px; margin-bottom: 18px; }
.nashmi-footer__brand-name {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .2em;
  margin-bottom: 6px;
}
.nashmi-footer__tagline {
  font-size: 14px;
  color: rgba(244,239,231,.7);
  line-height: 1.7;
  max-width: 280px;
}
.nashmi-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.nashmi-footer ul a {
  font-size: 14px;
  color: rgba(244,239,231,.78);
  transition: color .2s var(--ease);
}
.nashmi-footer ul a:hover { color: var(--gold); }
.nashmi-footer__newsletter p { font-size: 14px; color: rgba(244,239,231,.7); margin: 0 0 16px; line-height: 1.7; }
.nashmi-newsletter-form {
  display: flex;
  border: 1px solid rgba(244,239,231,.2);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(244,239,231,.06);
}
.nashmi-newsletter-form input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 12px 16px;
  color: var(--cream);
  font-size: 14px;
  outline: none;
}
.nashmi-newsletter-form input::placeholder { color: rgba(244,239,231,.45); }
.nashmi-newsletter-form button {
  background: var(--gold);
  color: var(--cream);
  padding: 0 22px;
  font-weight: 600;
  font-size: 14px;
  transition: background .2s var(--ease);
}
.nashmi-newsletter-form button:hover { background: var(--gold-light); }
.nashmi-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.nashmi-footer__social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(244,239,231,.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .2s var(--ease);
}
.nashmi-footer__social a:hover { background: var(--nc-gold); color: var(--nc-black); border-color: var(--nc-gold); }
.nashmi-footer__social svg { width: 16px; height: 16px; }

.nashmi-footer__bottom {
  max-width: var(--max-w);
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(244,239,231,.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: rgba(244,239,231,.55);
}
.nashmi-footer__bottom .accent { color: var(--gold); letter-spacing: .25em; font-family: var(--font-en); }

@media (max-width: 900px) {
  .nashmi-footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nashmi-footer__brand, .nashmi-footer__newsletter { grid-column: 1 / -1; }
}
@media (max-width: 520px) { .nashmi-footer__inner { grid-template-columns: 1fr; } }

/* ===========================================================
   COLLECTION / PRODUCT / CART pages
   =========================================================== */
.template-header {
  padding: 60px var(--pad-x) 30px;
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.template-header h1, .template-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--cream);
}
.template-sub {
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto 20px;
}

.collection-page { background: var(--stone); color: var(--cream); padding: 0 0 100px; }
.collection-page .product-grid { padding: 30px var(--pad-x) 0; max-width: var(--max-w); margin: 0 auto; }

/* PRODUCT PAGE */
.product-page { background: var(--sand); color: var(--cream); padding: 30px 0 100px; }
.product-page__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.product-gallery__main {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--stone);
}
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.product-gallery__thumbs a {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color .2s var(--ease);
}
.product-gallery__thumbs a.active { border-color: var(--gold); }
.product-gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }

.product-info { display: flex; flex-direction: column; gap: 18px; }
.product-info__eyebrow {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.product-info h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin: 0;
  color: var(--cream);
}
.product-info__price { display: flex; align-items: baseline; gap: 12px; font-family: var(--font-en); }
.product-info__price .price { color: var(--gold); font-weight: 700; font-size: 1.5rem; }
.product-info__price .compare { text-decoration: line-through; color: var(--text-gray); font-size: 1.05rem; }
.product-info__desc { color: var(--text-gray); line-height: 1.85; font-size: 1rem; }
.product-info__desc p { margin: 0 0 14px; }

.variant-row { display: flex; flex-direction: column; gap: 10px; }
.variant-row label {
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
}
.variant-row select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--sand);
  font-size: 15px;
}
.variant-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-pill {
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--sand);
  color: var(--cream);
  font-size: 14px;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.variant-pill.is-active { background: var(--gold); color: var(--nc-black); border-color: var(--gold); }
.variant-pill:disabled { opacity: .35; text-decoration: line-through; cursor: not-allowed; }

.qty-row { display: flex; align-items: center; gap: 16px; }
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  overflow: hidden;
}
.qty-stepper button { width: 40px; height: 44px; font-size: 18px; color: var(--cream); }
.qty-stepper input {
  width: 44px;
  height: 44px;
  text-align: center;
  border: 0;
  background: transparent;
  color: var(--nc-cream);
  font-size: 15px;
  font-weight: 700;
  outline: none;
  -moz-appearance: textfield;
}
.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-actions { display: flex; flex-direction: column; gap: 10px; }
.product-actions .btn { width: 100%; padding: 16px 28px; font-size: 15px; }

.product-meta {
  margin-top: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.product-meta__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.5;
}
.product-meta__item strong { color: var(--cream); display: block; font-size: 13px; }
.product-meta__item .ic {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--stone);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 28px;
  color: var(--gold);
}

@media (max-width: 880px) {
  .product-page__grid { grid-template-columns: 1fr; }
  .product-meta { grid-template-columns: 1fr; }
}

/* Lightbox */
.nashmi-lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(14,14,14,.92);
  display: none;
  align-items: center; justify-content: center;
}
.nashmi-lightbox.is-open { display: flex; }
.nashmi-lightbox img { max-width: 90vw; max-height: 86vh; object-fit: contain; }
.lightbox-close, .lightbox-arrow {
  position: absolute;
  color: var(--cream);
  font-size: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(244,239,231,.1);
  display: inline-flex; align-items: center; justify-content: center;
}
.lightbox-close { top: 20px; inset-inline-end: 20px; }
.lightbox-arrow--prev { inset-inline-start: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-arrow--next { inset-inline-end: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-counter { position: absolute; bottom: 22px; color: var(--cream); font-family: var(--font-en); font-size: 13px; letter-spacing: .2em; }

/* CART */
.cart-page { background: var(--sand); color: var(--cream); padding: 30px 0 100px; }
.cart-page .nashmi-container { max-width: 980px; }
.cart-list { display: flex; flex-direction: column; gap: 16px; margin-top: 30px; }
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: 18px;
  padding: 18px;
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-items: center;
}
.cart-item__img {
  width: 100px; aspect-ratio: 4/5;
  border-radius: var(--radius-sm);
  overflow: hidden; background: var(--stone);
}
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__title { font-weight: 600; color: var(--cream); margin: 0 0 4px; }
.cart-item__variant { font-size: 13px; color: var(--text-gray); }
.cart-item__price { font-weight: 700; font-family: var(--font-en); color: var(--gold); }
.cart-item__remove { color: var(--text-gray); font-size: 13px; }
.cart-item__remove:hover { color: var(--gold); }

.cart-summary {
  margin-top: 30px;
  padding: 24px;
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-summary__row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px;
}
.cart-summary__row.total { font-size: 20px; font-weight: 800; color: var(--cream); border-top: 1px solid var(--line); padding-top: 14px; }
.cart-summary__row .price { font-family: var(--font-en); color: var(--gold); }
.cart-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.cart-actions .btn { width: 100%; }

@media (max-width: 600px) {
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item__price, .cart-item__remove { grid-column: 2; justify-self: end; }
  .cart-item__img { width: 80px; }
  .cart-actions { grid-template-columns: 1fr; }
}

/* Marquee */
.marquee {
  background: var(--charcoal);
  background-image: linear-gradient(90deg, var(--gold-deep), var(--charcoal) 30%, var(--charcoal) 70%, var(--gold-deep));
  color: var(--cream);
  overflow: hidden;
  padding: 15px 0;
  border-block: 1px solid rgba(198,161,91,.12);
}
.marquee__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marqueeRTL 38s linear infinite;
  width: max-content;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: .25em;
  font-family: var(--font-en);
  text-transform: uppercase;
  color: rgba(244,239,231,.85);
}
.marquee__item .dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
@keyframes marqueeRTL {
  from { transform: translateX(0); }
  to   { transform: translateX(50%); }
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ===========================================================
   POLICY / TEXT PAGES (compat for old sections)
   =========================================================== */
.nashmi-page { background: var(--sand); color: var(--cream); }
.nashmi-page h1, .nashmi-page h2, .nashmi-page h3 { color: var(--cream); }
.nashmi-page a { color: var(--gold); }
.nashmi-page section { padding-block: 40px; }
.nashmi-page table { width: 100%; border-collapse: collapse; }
.nashmi-page table td, .nashmi-page table th { border: 1px solid var(--line); padding: 10px; text-align: start; }
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-gray);
}

/* Older legacy nav inside policy/contact pages — make sticky-like */
#navbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--pad-x);
  background: var(--sand);
  border-bottom: 1px solid var(--line);
}
#navbar .nav-logo { font-family: var(--font-en); font-weight: 700; letter-spacing: .2em; color: var(--cream); font-size: 14px; }
#navbar .nav-links { list-style: none; display: flex; gap: 22px; margin: 0; padding: 0; }
#navbar .nav-links a { color: var(--cream); font-size: 14px; }
#navbar .nav-cart { color: var(--cream); display: inline-flex; gap: 8px; align-items: center; font-size: 14px; }
#navbar .cart-count { background: var(--burgundy); color: var(--cream); padding: 2px 8px; border-radius: 999px; font-size: 12px; font-family: var(--font-en); }
@media (max-width: 720px) { #navbar .nav-links { display: none; } }

/* ===========================================================
   DROP BAR — scarcity / urgency strip
   =========================================================== */
.drop-bar {
  background: var(--charcoal);
  color: var(--cream);
  padding: 14px var(--pad-x);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 28px;
  text-align: center;
  border-bottom: 1px solid rgba(210,179,122,.25);
}
.drop-bar__label {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.drop-bar__countdown {
  display: flex;
  gap: 10px;
  font-family: var(--font-en);
}
.drop-bar__countdown span {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  min-width: 38px;
  line-height: 1.2;
}
.drop-bar__countdown span small {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(244,239,231,.55);
  margin-top: 2px;
}
.drop-bar .btn { padding: 8px 20px; font-size: 13px; }
@media (max-width: 600px) {
  .drop-bar { flex-direction: column; padding: 16px var(--pad-x); }
}

/* ===========================================================
   PROMISE GRID — inline variant (used inside merged Feeling section)
   =========================================================== */
.promise-grid--inline { margin-top: 56px; }

/* ===========================================================
   TESTIMONIALS — social proof
   =========================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.testimonial-card {
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial-card__stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
}
.testimonial-card__stars svg { width: 14px; height: 14px; }
.testimonial-card__quote {
  font-size: .98rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin: 0;
}
.testimonial-card__author {
  font-weight: 700;
  color: var(--cream);
  font-size: .92rem;
}
.testimonial-card__city {
  font-size: .82rem;
  color: var(--text-gray);
  font-family: var(--font-en);
}
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ===========================================================
   PRODUCT DESCRIPTION — read more / less
   =========================================================== */
.product-info__desc {
  position: relative;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.product-info__desc.is-collapsed {
  max-height: 9.5em;
}
.product-info__desc.is-collapsed::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--sand) 90%);
}
.product-info__desc-toggle {
  background: none;
  border: none;
  color: var(--gold);
  font-weight: 700;
  font-size: .9rem;
  padding: 0;
  margin-top: -4px;
  cursor: pointer;
  font-family: var(--font-ar);
  text-decoration: underline;
}
.product-info__desc-toggle:hover { color: var(--gold-light); }

/* ===========================================================
   POLICY / LEGAL PAGES — Shipping, Returns, Privacy, Terms, Contact
   Hero + CTA = dark/gold "card" bookends. Body = cream pages on sand.
   =========================================================== */

/* ---- HERO ---- */
.policy-hero {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  background-image:
    radial-gradient(ellipse at 12% 25%, rgba(198,161,91,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 88% 75%, rgba(198,161,91,.08) 0%, transparent 50%);
  color: var(--cream);
  text-align: center;
  padding: clamp(64px, 11vw, 120px) var(--pad-x) clamp(56px, 9vw, 96px);
}
.hero-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(198,161,91,.05) 0px, rgba(198,161,91,.05) 1px, transparent 1px, transparent 46px);
  pointer-events: none;
}
.policy-hero-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.policy-hero-title {
  font-size: clamp(2rem, 5.4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 18px;
  color: var(--cream);
}
.policy-hero-title span {
  font-family: var(--font-en);
  color: var(--gold);
}
.policy-hero-sub {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(238,230,218,.75);
  margin: 0;
}
.policy-hero-sub em {
  display: block;
  font-style: normal;
  font-family: var(--font-en);
  font-size: .85rem;
  color: rgba(238,230,218,.45);
  margin-top: 8px;
}
.policy-hero-deco {
  position: absolute;
  z-index: 0;
  bottom: -.28em;
  inset-inline-end: -.04em;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(3.5rem, 13vw, 10rem);
  letter-spacing: .08em;
  color: rgba(244,239,231,.045);
  white-space: nowrap;
  text-transform: uppercase;
  pointer-events: none;
}

/* ---- BODY CONTAINER ---- */
.policy-body {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 72px) var(--pad-x) clamp(64px, 9vw, 110px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ---- DELIVERY SUMMARY CARDS ---- */
.policy-delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.policy-delivery-card {
  background: var(--surface-card);
  border: 1px solid rgba(198,161,91,.3);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
}
.delivery-card-icon { font-size: 26px; margin-bottom: 10px; }
.delivery-card-label {
  font-size: .8rem;
  color: var(--text-gray);
  line-height: 1.6;
  min-height: 2.6em;
  margin-bottom: 14px;
}
.delivery-card-time {
  font-family: var(--font-en);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.delivery-card-unit {
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-gray);
  margin: 6px 0 14px;
}
.delivery-card-note {
  font-size: .82rem;
  font-weight: 600;
  color: var(--cream);
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
@media (max-width: 760px) {
  .policy-delivery-grid { grid-template-columns: 1fr; }
}

/* ---- POLICY CARDS ---- */
.policy-card {
  position: relative;
  display: flex;
  gap: 24px;
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
}
.policy-card-num {
  flex-shrink: 0;
  width: 44px;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--gold);
}
.policy-card-inner { flex: 1; min-width: 0; }
.policy-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 700;
  color: var(--cream);
  margin: 0 0 16px;
  line-height: 1.5;
}
.policy-icon {
  flex-shrink: 0;
  display: inline-flex;
  width: 30px; height: 30px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--sand);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .95rem;
}
@media (max-width: 620px) {
  .policy-card { flex-direction: column; gap: 6px; padding: 22px; }
  .policy-card-num { font-size: 1rem; color: var(--gold); opacity: .65; width: auto; }
}

/* ---- PARAGRAPHS ---- */
.policy-p {
  font-size: .98rem;
  line-height: 1.9;
  color: var(--cream);
  margin: 0 0 14px;
}
.policy-p--en {
  font-size: .86rem;
  line-height: 1.85;
  color: var(--text-gray);
  font-family: var(--font-en);
  border-inline-start: 2px solid rgba(198,161,91,.35);
  padding-inline-start: 14px;
  margin: -2px 0 18px;
}
.policy-card-inner > .policy-p:last-child,
.policy-card-inner > .policy-p--en:last-child,
.policy-card-inner > p:last-child { margin-bottom: 0; }

/* ---- ALERTS / CALLOUTS ---- */
.policy-alert {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--stone);
  border: 1px solid rgba(198,161,91,.2);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: .92rem;
  line-height: 1.85;
  color: var(--cream);
  margin-top: 16px;
}
.policy-alert--gold {
  background: rgba(198,161,91,.1);
  border-color: rgba(198,161,91,.35);
}
.policy-alert-icon {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.05rem;
  line-height: 1.7;
}
.policy-alert em {
  display: block;
  font-style: normal;
  font-family: var(--font-en);
  font-size: .85rem;
  color: var(--text-gray);
  margin-top: 6px;
}

/* ---- TABLES ---- */
.policy-table-wrap {
  overflow-x: auto;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.policy-table { width: 100%; border-collapse: collapse; font-size: .9rem; min-width: 480px; }
.policy-table-wrap .policy-table th {
  background: var(--charcoal);
  color: var(--gold);
  font-family: var(--font-en);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: start;
  padding: 12px 16px;
  border: 0;
}
.policy-table-wrap .policy-table td {
  padding: 14px 16px;
  border: 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.75;
}
.policy-table tbody tr:last-child td { border-bottom: 0; }
.policy-table tbody tr:nth-child(even) { background: rgba(198,161,91,.05); }
.policy-table em {
  display: block;
  font-style: normal;
  font-family: var(--font-en);
  font-size: .8rem;
  color: var(--text-gray);
  margin-top: 3px;
}
.policy-badge-free {
  display: inline-block;
  background: var(--gold);
  color: var(--cream);
  font-size: .76rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 6px 12px;
  border-radius: 999px;
  text-align: center;
}
.policy-badge-free em { display: inline; font-style: normal; color: inherit; font-family: inherit; }

/* ---- LISTS (check / x) ---- */
.policy-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.policy-list li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-inline-start: 32px;
}
.policy-list li .ar { font-size: .95rem; color: var(--cream); line-height: 1.7; }
.policy-list li .en {
  font-size: .8rem;
  color: var(--text-gray);
  font-family: var(--font-en);
  line-height: 1.6;
}
.policy-list--check li::before,
.policy-list--x li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 2px;
  width: 22px; height: 22px;
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.policy-list--check li::before {
  content: '\2713';
  background: var(--gold);
  color: var(--cream);
}
.policy-list--x li::before {
  content: '\2715';
  background: var(--burgundy);
  color: var(--cream);
}

/* ---- NUMBERED STEPS ---- */
.policy-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 20px 0 0;
}
.policy-step {
  position: relative;
  display: flex;
  gap: 16px;
  padding-bottom: 22px;
}
.policy-step:last-child { padding-bottom: 0; }
.policy-step-num {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 1rem;
}
.policy-step:not(:last-child)::after {
  content: '';
  position: absolute;
  inset-inline-start: 17px;
  top: 36px;
  bottom: 0;
  width: 1px;
  background: var(--line-strong);
}
.policy-step-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 6px;
}
.policy-step-text strong { font-size: .98rem; color: var(--cream); }
.policy-step-text .ar { font-size: .9rem; color: var(--text-gray); line-height: 1.7; }
.policy-step-text .en {
  font-size: .8rem;
  color: var(--text-gray);
  font-family: var(--font-en);
  opacity: .85;
  line-height: 1.6;
}

/* ---- TRACKING FLOW ---- */
.policy-track-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 20px 0 0;
  padding: 28px 20px;
  background: var(--charcoal);
  border-radius: var(--radius);
}
.policy-track-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 92px;
  text-align: center;
}
.track-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(198,161,91,.12);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.track-label {
  font-size: .78rem;
  line-height: 1.6;
  color: var(--cream);
}
.track-label em {
  display: block;
  font-style: normal;
  font-family: var(--font-en);
  font-size: .68rem;
  letter-spacing: .04em;
  color: var(--gold);
  margin-top: 2px;
}
.policy-track-arrow {
  color: var(--gold);
  font-size: 1.2rem;
  opacity: .45;
  padding: 0 4px;
}
@media (max-width: 700px) {
  .policy-track-flow { flex-direction: column; padding: 24px; }
  .policy-track-arrow { transform: rotate(90deg); }
}

/* ---- FORM (Contact page) ---- */
.policy-form-field { display: flex; flex-direction: column; gap: 8px; }
.policy-input,
.policy-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line-strong);
  background: var(--sand);
  color: var(--cream);
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.policy-input::placeholder,
.policy-textarea::placeholder { color: var(--text-gray); opacity: .7; }
.policy-input:focus,
.policy-textarea:focus {
  border-color: var(--gold);
  background: var(--surface-card);
}
.policy-textarea { resize: vertical; }

/* ---- CTA (closing card) ---- */
.policy-cta {
  background: var(--charcoal);
  background-image: radial-gradient(ellipse at 80% 15%, rgba(198,161,91,.22) 0%, transparent 55%);
  border-radius: var(--radius);
  padding: clamp(36px, 6vw, 64px) clamp(24px, 5vw, 56px);
  text-align: center;
}
.policy-cta-inner {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.policy-cta-label {
  font-family: var(--font-en);
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}
.policy-cta-title {
  font-size: clamp(1.25rem, 3vw, 1.85rem);
  font-weight: 800;
  color: var(--cream);
  margin: 0 0 4px;
  line-height: 1.5;
}
.policy-cta-title em {
  display: block;
  font-style: normal;
  font-family: var(--font-en);
  font-size: .65em;
  color: rgba(238,230,218,.55);
  margin-top: 6px;
}
.policy-cta .btn-primary { margin-top: 4px; }

/* ---- LINK COLOR FIX (resolve specificity conflict with .nashmi-page a) ---- */
.nashmi-page a.btn-primary { color: var(--cream); }
.nashmi-page a.btn-primary:hover { color: var(--cream); }

/* ===========================================================
   COMING SOON / PASSWORD PAGE
   =========================================================== */
.template-password { margin: 0; }

.soon {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--charcoal);
}
.soon__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.soon__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .35;
}
.soon__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(198,161,91,.16) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(198,161,91,.08) 0%, transparent 50%),
    linear-gradient(180deg, rgba(11,10,8,.55) 0%, rgba(11,10,8,.85) 70%, var(--charcoal) 100%);
}

.soon__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 56px var(--pad-x) 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.soon__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}
.soon__logo img { width: 56px; height: 56px; object-fit: contain; }
.soon__logo-word {
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: .3em;
  font-size: 13px;
  color: var(--cream);
}

.soon__eyebrow {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.soon__title {
  font-size: clamp(2rem, 6.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--cream);
  margin: 0 0 16px;
}
.soon__title .accent { color: var(--gold); }

.soon__sub {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(238,230,218,.78);
  max-width: 420px;
  margin: 0 0 36px;
}

/* Countdown */
.soon__countdown {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
}
.soon__countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 64px;
  padding: 14px 10px;
  background: rgba(244,239,231,.05);
  border: 1px solid rgba(198,161,91,.3);
  border-radius: var(--radius-sm);
}
.soon__countdown-unit span {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--gold);
  line-height: 1;
}
.soon__countdown-unit small {
  font-size: 11px;
  color: rgba(238,230,218,.6);
  letter-spacing: .04em;
}

/* Email form */
.soon__form { width: 100%; max-width: 440px; margin-bottom: 28px; }
.soon__form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.soon__input {
  flex: 1;
  min-width: 180px;
  padding: 13px 16px;
  border: 1px solid rgba(250,247,241,.22);
  background: rgba(250,247,241,.06);
  color: var(--cream);
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.soon__input::placeholder { color: rgba(238,230,218,.45); }
.soon__input:focus { border-color: var(--gold); background: rgba(250,247,241,.1); }
.soon__form-btn { white-space: nowrap; border: none; cursor: pointer; }
.soon__form-success {
  font-size: .95rem;
  color: var(--gold);
  font-weight: 600;
  margin: 0;
}
.soon__form-error {
  font-size: .85rem;
  color: #E08585;
  margin: 10px 0 0;
}

/* Social */
.soon__social {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}
.soon__social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(244,239,231,.2);
  color: var(--cream);
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.soon__social a:hover { border-color: var(--gold); color: var(--gold); }
.soon__social svg { width: 18px; height: 18px; }

/* Password gate (discreet) */
.soon__password-toggle {
  background: none;
  border: none;
  color: rgba(238,230,218,.4);
  font-size: .8rem;
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}
.soon__password-toggle:hover { color: var(--gold); }
.soon__password-form {
  width: 100%;
  max-width: 380px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .35s var(--ease), opacity .3s var(--ease), margin-top .35s var(--ease);
}
.soon__password-form.is-open {
  max-height: 120px;
  opacity: 1;
  margin-top: 18px;
}

@media (max-width: 480px) {
  .soon__countdown { gap: 8px; }
  .soon__countdown-unit { min-width: 52px; padding: 10px 6px; }
  .soon__form-row { flex-direction: column; }
  .soon__form-btn { width: 100%; }
}

/* ===========================================================
   PRE-ORDER PAGE — info bar, product slot badges, delivery text
   =========================================================== */
.preorder-bar {
  background: var(--charcoal);
  background-image: radial-gradient(ellipse at 50% 0%, rgba(198,161,91,.14) 0%, transparent 60%);
  color: var(--cream);
  padding: 16px var(--pad-x);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 32px;
  text-align: center;
  border-bottom: 1px solid rgba(198,161,91,.18);
}
.preorder-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(238,230,218,.9);
}
.preorder-bar__item .ic { color: var(--gold); font-size: 8px; }
.preorder-bar__countdown {
  display: flex;
  gap: 10px;
  font-family: var(--font-en);
}
.preorder-bar__countdown span {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  min-width: 36px;
  line-height: 1.2;
  color: var(--gold);
}
.preorder-bar__countdown span small {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(238,230,218,.5);
  margin-top: 2px;
}
@media (max-width: 640px) {
  .preorder-bar { flex-direction: column; gap: 10px; padding: 14px var(--pad-x); }
}

/* Product card — slot number + pre-order badge + delivery line */
.product-card__slot {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  z-index: 2;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .05em;
  color: var(--nc-gold);
  background: rgba(11,10,8,.78);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(198,161,91,.4);
}
.product-card__badge--preorder {
  background: var(--nc-gold);
  color: var(--nc-black);
}
.product-card--preorder .product-card__cta {
  background: var(--nc-gold);
  color: var(--nc-black);
}
.product-card__delivery {
  font-size: .76rem;
  color: var(--text-gray);
  margin: -4px 0 10px;
  line-height: 1.5;
}
.preorder-grid { position: relative; }
