/* SavvySouq Components — ported from design prototype */

/* Base reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body,
body.woocommerce-shop, body.woocommerce, body.archive,
body.content-style-boxed, body.content-style-unboxed,
body.content-style-boxed .site, body.content-style-unboxed .site,
.content-bg, .site, .site-container, .content-container { background: var(--off-white) !important; color: var(--charcoal); font-family: var(--font-body); -webkit-font-smoothing: antialiased; }
html { overflow-x: clip; max-width: 100vw; }
body { overflow-x: clip; max-width: 100vw; width: 100%; position: relative; }
.site, .site-container, .content-container, #main-content, main,
.entry, .entry-content, .entry-content-wrap, .content-area {
  max-width: 100vw !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: clip;
}
.ticker, .hero, .shop-head, .promo, .footer, .section, .about-hero, .timeline { max-width: 100vw; overflow-x: clip; }
.ticker-track { max-width: unset; }
/* Kill any Kadence hero/content block */
.entry-hero, .page-hero-section { display: none !important; }
body { font-size: 15px; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }
svg { display: block; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }

.arabic { font-family: var(--font-arabic); direction: rtl; unicode-bidi: isolate; }
.mono { font-family: var(--font-mono); letter-spacing: 0.02em; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.amber { color: var(--amber); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

/* Placeholder with diagonal stripes */
.ph {
  position: relative;
  background: var(--paper);
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 14px,
    rgba(26,26,26,0.035) 14px 15px
  );
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  background: var(--off-white);
  padding: 4px 8px;
  border: 1px solid var(--line);
}
.ph.dark {
  background: #141414;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 18px,
    rgba(255,255,255,0.03) 18px 19px
  );
  border-color: #2a2a2a;
}
.ph.dark .ph-label {
  background: #1a1a1a;
  color: #888;
  border-color: #2a2a2a;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--charcoal);
  background: var(--charcoal);
  color: var(--off-white);
  transition: all 0.18s ease;
  position: relative;
  cursor: pointer;
}
.btn:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--charcoal);
}
.btn.ghost {
  background: transparent;
  color: var(--charcoal);
}
.btn.ghost:hover {
  background: var(--charcoal);
  color: var(--off-white);
}
.btn.amber {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--charcoal);
}
.btn.amber:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--amber);
}
.btn.sm {
  padding: 9px 14px;
  font-size: 11px;
}
.btn.wa {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--line);
}
.btn.wa:hover {
  background: #25D366;
  border-color: #25D366;
  color: white;
}

/* Tags */
.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid var(--line);
  background: var(--off-white);
  color: var(--muted);
}
.tag.amber {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--charcoal);
  font-weight: 600;
}
.tag.dark {
  background: var(--charcoal);
  color: var(--off-white);
  border-color: var(--charcoal);
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 245, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.nav-logo .wordmark {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.nav-logo .wordmark .light { font-weight: 400; }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links li {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  position: relative;
  padding: 4px 0;
}
.nav-links li a {
  color: inherit;
  text-decoration: none;
}
.nav-links li:hover,
.nav-links li a:hover { color: var(--amber-deep); }
.nav-links li.active::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  width: 260px;
  font-size: 13px;
}
.nav-search input {
  background: transparent;
  border: none;
  outline: none;
  flex: 1;
  font-size: 13px;
}
.nav-icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--off-white);
  transition: all 0.15s;
  cursor: pointer;
  text-decoration: none;
  color: var(--charcoal);
  flex-shrink: 0;
  padding: 0;
}
.nav-icon-btn svg {
  width: 16px !important;
  height: 16px !important;
  stroke: var(--charcoal) !important;
  color: var(--charcoal) !important;
  flex-shrink: 0;
}
.nav-icon-btn svg * {
  stroke: var(--charcoal) !important;
}
.nav-icon-btn:hover { border-color: var(--charcoal); }
.lang-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: var(--charcoal);
  color: var(--amber);
  font-family: var(--font-arabic);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  cursor: pointer;
}
.lang-btn:hover { background: var(--amber); color: var(--charcoal); border-color: var(--amber); }
/* Mobile nav toggle + drawer (hidden on desktop) */
.nav-mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--off-white);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-mobile-toggle svg { width: 20px; height: 20px; }
.nav-mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 90;
}
.nav-mobile-backdrop.open { opacity: 1; pointer-events: auto; }
.nav-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 86%;
  max-width: 320px;
  background: var(--off-white);
  z-index: 100;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}
.nav-mobile-drawer.open { transform: translateX(0); }
.nav-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.nav-mobile-head .wordmark { font-family: var(--font-display); font-size: 20px; letter-spacing: -0.02em; color: var(--charcoal); }
.nav-mobile-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  background: var(--off-white);
  cursor: pointer;
}
.nav-mobile-search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 20px;
  padding: 11px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.nav-mobile-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 14px;
  color: var(--charcoal);
}
.nav-mobile-links {
  list-style: none;
  margin: 8px 0;
  padding: 0;
  flex: 1;
}
.nav-mobile-links li a {
  display: block;
  padding: 14px 20px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  border-bottom: 1px solid var(--line);
}
.nav-mobile-links li a:hover { color: var(--amber-deep); }
.nav-mobile-foot {
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}
body.nav-mobile-open { overflow: hidden; }

.cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  background: var(--amber);
  color: var(--charcoal);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-mono);
}

/* Hero */
.hero {
  background: var(--charcoal);
  color: var(--off-white);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  min-height: 620px;
}
.hero-text {
  padding: 80px var(--pad) 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--charcoal-line);
}
.hero-eyebrow {
  color: #888;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow .pulse {
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(245, 166, 35, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0); }
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--off-white);
}
.hero-headline .amber-word {
  color: var(--amber);
  font-style: italic;
  font-weight: 900;
}
.hero-headline .light,
.hero-headline-light {
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--off-white);
  font-style: normal;
}
.hero-ar {
  font-family: var(--font-arabic);
  direction: rtl;
  font-size: 22px;
  color: #b8b8b8;
  margin-top: 24px;
  font-weight: 400;
  max-width: 500px;
  line-height: 1.6;
}
.hero-sub {
  margin-top: 28px;
  max-width: 480px;
  font-size: 16px;
  color: #cfcfcf;
  line-height: 1.6;
}
.hero-cta-row {
  margin-top: 40px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 40px;
  display: flex;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--charcoal-line);
}
.hero-meta-item .num {
  font-family: var(--font-mono);
  color: var(--amber);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.hero-meta-item .lbl {
  margin-top: 6px;
  font-size: 13px;
  color: #cfcfcf;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.hero-product {
  flex: 1;
  background: #141414;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 18px,
    rgba(255,255,255,0.03) 18px 19px
  );
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.hero-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.hero-product-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  border: 1px solid #333;
  padding: 10px 16px;
  background: rgba(20, 20, 20, 0.8);
  position: relative;
  z-index: 1;
}
.hero-product-spec {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #888;
  text-transform: uppercase;
  z-index: 1;
}
.hero-product-spec.top-left { top: 24px; left: 24px; }
.hero-product-spec.top-right { top: 24px; right: 24px; text-align: right; }
.hero-product-spec.bottom-left { bottom: 24px; left: 24px; }
.hero-product-spec.bottom-right { bottom: 24px; right: 24px; text-align: right; }
.hero-product-spec .val {
  color: var(--amber);
  font-size: 14px;
  display: block;
  margin-top: 2px;
}

/* Ticker */
.ticker {
  background: var(--amber);
  color: var(--charcoal);
  overflow: hidden;
  border-top: 1px solid var(--amber-deep);
  border-bottom: 1px solid var(--amber-deep);
}
.ticker-track {
  display: flex;
  gap: 60px;
  padding: 14px 0;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  width: max-content;
}
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.ticker-track .dot {
  width: 4px;
  height: 4px;
  background: var(--charcoal);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes ticker-rtl {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* Section */
.section {
  padding: 90px var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.section.tight { padding: 60px var(--pad); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 40px;
  flex-wrap: wrap;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 720px;
}
.section-title .light {
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
}
.section-title .amber-word {
  color: var(--amber-deep);
  font-style: italic;
}
.section-ar {
  font-family: var(--font-arabic);
  direction: rtl;
  color: var(--muted);
  font-size: 18px;
  margin-top: 8px;
}
.section-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 2px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
}
.section-link:hover {
  color: var(--amber-deep);
  border-color: var(--amber-deep);
}

/* Categories */
.cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.cat {
  background: var(--off-white);
  padding: 28px 24px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.cat:hover {
  background: var(--charcoal);
  color: var(--off-white);
}
.cat:hover .cat-num { color: var(--amber); }
.cat:hover .cat-count { color: #888; }
.cat-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
}
.cat-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin-top: auto;
}
.cat-ar {
  font-family: var(--font-arabic);
  direction: rtl;
  font-size: 14px;
  opacity: 0.7;
  margin-top: 4px;
}
.cat-count {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 14px;
}
.cat-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  opacity: 0;
  transition: opacity 0.2s;
}
.cat:hover .cat-arrow { opacity: 1; }

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px calc(24px * var(--density));
  row-gap: calc(48px * var(--density));
}
.product {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.product .ph {
  aspect-ratio: 1;
  position: relative;
}
.product .ph .badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
.product .ph .qv {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  padding: 10px;
  background: var(--charcoal);
  color: var(--off-white);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.2s;
  font-weight: 600;
  z-index: 2;
}
.product:hover .ph .qv {
  opacity: 1;
  transform: translateY(0);
}
.product:hover .ph { border-color: var(--charcoal); }
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.product-sku {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.product-swatches {
  display: flex;
  gap: 4px;
}
.product-swatch {
  width: 10px;
  height: 10px;
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.product-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.product-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}
.product-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.product-price .curr {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-right: 3px;
}
.product-price .old {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 13px;
  font-weight: 500;
  margin-left: 8px;
}
.product-add {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px;
  min-height: 32px;
  border: 1px solid var(--line) !important;
  background: var(--off-white) !important;
  color: var(--charcoal) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: all 0.15s;
  flex-shrink: 0;
  flex-shrink: 0;
  cursor: pointer;
}
.product-add:hover {
  background: var(--charcoal) !important;
  color: var(--off-white) !important;
  border-color: var(--charcoal) !important;
  box-shadow: none !important;
}
.product-add:hover svg { stroke: var(--off-white) !important; }
.product-add svg { width: 14px !important; height: 14px !important; flex-shrink: 0; }

/* Promo section (Delivery Promise) */
.promo {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 80px var(--pad);
}
.promo-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.promo h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--off-white);
}
.promo h2 .amber-word { color: var(--amber); font-style: italic; }
.promo .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--amber);
  letter-spacing: 0.18em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.promo p { color: #cfcfcf; margin-top: 20px; max-width: 460px; font-size: 15px; line-height: 1.6; }

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pillar {
  background: var(--off-white);
  padding: 40px 32px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.pillar-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--amber-deep);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pillar-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.015em;
  margin-top: 8px;
  line-height: 1.2;
}
.pillar-ar {
  font-family: var(--font-arabic);
  direction: rtl;
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}
.pillar-body {
  font-size: 14px;
  color: var(--muted);
  margin-top: auto;
  line-height: 1.55;
  padding-top: 16px;
}

/* Footer */
.footer {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 80px var(--pad) 30px;
  margin-top: 80px;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--charcoal-line);
}
.footer-brand .wordmark {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--off-white);
}
.footer-brand p {
  color: #999;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 18px;
  max-width: 300px;
}
.footer-brand .ar {
  font-family: var(--font-arabic);
  direction: rtl;
  color: #777;
  font-size: 14px;
  margin-top: 14px;
}
.footer h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--amber);
  margin-bottom: 18px;
}
.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: #cfcfcf;
}
.footer ul li { cursor: pointer; }
.footer ul li:hover { color: var(--amber); }
.footer ul li a { color: inherit; text-decoration: none; }
.footer ul li a:hover { color: var(--amber); }
.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #666;
  letter-spacing: 0.08em;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links span,
.footer-bottom-links a {
  cursor: pointer;
  color: #666;
  text-decoration: none;
}
.footer-bottom-links a:hover { color: var(--amber); }
.footer-subscribe {
  display: flex;
  border: 1px solid #333;
  margin-top: 8px;
}
.footer-subscribe input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--off-white);
  padding: 12px 14px;
  font-size: 13px;
  outline: none;
}
.footer-subscribe input::placeholder { color: #666; }
.footer-subscribe button {
  padding: 0 18px;
  background: var(--amber);
  color: var(--charcoal);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
}
.footer-subscribe button:hover { background: var(--off-white); }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #cfcfcf;
}

/* Toast notification */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--charcoal);
  color: var(--off-white);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 500;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  border-left: 3px solid var(--amber);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast .mono {
  font-family: var(--font-mono);
  color: var(--amber);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* About page */
.about-hero {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 120px var(--pad) 100px;
}
.about-hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-hero h1 {
  color: var(--off-white);
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.about-hero h1 .amber-word { color: var(--amber); font-style: italic; }
.about-hero .ar {
  font-family: var(--font-arabic);
  direction: rtl;
  color: #cfcfcf;
  font-size: 24px;
  margin-top: 20px;
}
.about-hero p {
  color: #cfcfcf;
  font-size: 17px;
  line-height: 1.7;
  max-width: 480px;
}
.about-hero p + p { margin-top: 18px; }
.about-amber-quote {
  color: var(--amber);
  font-style: italic;
  margin-top: 18px;
  font-size: 17px;
}
.timeline {
  padding: 100px var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.timeline-row {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.timeline-row .y {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  letter-spacing: -0.02em;
  color: var(--amber-deep);
}
.timeline-row h3 {
  color: var(--charcoal);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.timeline-row p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Delivery page */
.delivery-hero {
  padding: 80px var(--pad);
  background: var(--paper);
}
.delivery-hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.delivery-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.delivery-hero h1 .amber-word { color: var(--amber-deep); font-style: italic; }
.delivery-hero p {
  font-size: 17px;
  color: var(--muted);
  max-width: 620px;
  margin-top: 18px;
  line-height: 1.6;
}
.zone-map {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 60px var(--pad) 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.zone-list { display: flex; flex-direction: column; }
.zone-card {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 20px;
  align-items: center;
  cursor: pointer;
  transition: padding 0.2s;
  text-decoration: none;
  color: inherit;
}
.zone-card:hover { padding-left: 12px; }
.zone-card .num {
  font-family: var(--font-mono);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.zone-card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.zone-card .cities {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.zone-card .eta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  background: var(--amber);
  color: var(--charcoal);
  padding: 6px 12px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}
.zone-card .eta.secondary {
  background: var(--paper);
  color: var(--charcoal);
}
.zone-map-visual {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 40px;
  position: sticky;
  top: 100px;
  align-self: start;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Contact page */
.contact {
  padding: 80px var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.contact-methods {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-method {
  padding: 24px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  color: inherit;
}
.contact-method:hover { border-color: var(--charcoal); }
.contact-method .ic {
  width: 44px;
  height: 44px;
  background: var(--charcoal);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method .k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-method .v {
  font-weight: 600;
  font-size: 15px;
  margin-top: 3px;
}
.contact-form {
  background: var(--paper);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-deep);
}
.contact-form textarea {
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--off-white);
  resize: vertical;
  min-height: 140px;
  font-size: 14px;
  outline: none;
  font-family: inherit;
}
.contact-form textarea:focus { border-color: var(--charcoal); }

/* Form fields */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field select {
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--off-white);
  font-size: 14px;
  outline: none;
  transition: border 0.15s;
  width: 100%;
}
.field input:focus,
.field select:focus { border-color: var(--charcoal); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Shop page */
.shop-head {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 60px var(--pad) 40px;
}
.shop-head-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.shop-head-perks {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  line-height: 1.8;
  flex-shrink: 0;
}
.shop-head-perks div:first-child {
  color: var(--off-white);
}
.shop-head h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 14px;
  color: var(--off-white);
}
.shop-head .count {
  color: #cfcfcf;
  font-size: 14px;
  margin-top: 8px;
}
.shop-body {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  padding: 40px var(--pad) 80px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.filters {
  position: sticky;
  top: 100px;
  align-self: start;
}
.filter-group {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.filter-group:first-child { padding-top: 0; }
.filter-group h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.filter-item {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 13px;
  cursor: pointer;
  align-items: center;
}
.filter-item:hover { color: var(--amber-deep); }
.filter-item.active { font-weight: 600; }
.filter-item .cnt {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
}
.shop-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
  align-items: center;
}
.shop-top-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.shop-top select {
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: var(--off-white);
  font-size: 13px;
  cursor: pointer;
}
.view-toggle {
  display: flex;
  border: 1px solid var(--line);
}
.view-btn {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px;
  min-height: 40px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: var(--off-white) !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  cursor: pointer;
  color: var(--charcoal) !important;
  transition: all 0.15s;
  flex-shrink: 0;
  box-shadow: none !important;
}
.view-btn.active,
.view-btn:hover {
  background: var(--charcoal) !important;
  color: var(--off-white) !important;
  box-shadow: none !important;
}
.view-btn svg {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px;
  min-height: 14px;
  flex-shrink: 0;
  fill: currentColor !important;
}
.shop-body .product-grid { grid-template-columns: repeat(3, 1fr); }
.shop-body .product-grid.list-view { grid-template-columns: 1fr; }
.shop-body .product-grid.list-view .product { display: grid; grid-template-columns: 200px 1fr auto; gap: 24px; align-items: center; }
.shop-body .product-grid.list-view .ph { aspect-ratio: unset; height: 140px; width: 200px; }

/* Cart */
.cart-page {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 60px var(--pad);
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
}
.cart-header h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 56px);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.cart-items { margin-top: 36px; }
.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.cart-item-name { font-weight: 600; font-size: 16px; }
.cart-item-sub {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}
.cart-item-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  text-align: right;
}
.cart-item-price .curr {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* Filter sidebar extras */
.filter-item .cnt { font-family: var(--font-mono); font-size: 10px; color: var(--muted); }
.filter-item.active .cnt { color: var(--amber-deep); }
.filter-check {
  width: 14px; height: 14px;
  border: 1px solid var(--charcoal);
  display: inline-block;
  margin-right: 10px;
  position: relative;
  flex-shrink: 0;
}
.filter-item.active .filter-check { background: var(--charcoal); }
.filter-item.active .filter-check::after {
  content: '✓';
  position: absolute;
  top: -3px; left: 1px;
  color: var(--amber);
  font-size: 11px;
  font-weight: 700;
}

/* Cart extras */
.cart-item-actions {
  display: flex;
  gap: 18px;
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cart-item-actions a,
.cart-item-actions button {
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  text-decoration: none;
}
.cart-item-actions a:hover,
.cart-item-actions button:hover { color: var(--amber-deep); border-color: var(--amber-deep); }

/* Kill WooCommerce's default remove styling (red X, centered column, narrow width) */
.cart-item-actions .remove,
.cart-item .remove,
a.remove {
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  color: var(--muted) !important;
  font-size: 12px !important;
  font-family: var(--font-mono) !important;
  font-weight: 400 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid var(--line) !important;
  padding: 0 0 1px 0 !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}
.cart-item-actions .remove:hover,
a.remove:hover { color: var(--amber-deep) !important; border-color: var(--amber-deep) !important; background: transparent !important; }

/* WooCommerce checkout form: normalize grid rows */
.woocommerce-checkout .form-row,
.woocommerce form .form-row {
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
  margin: 0 0 18px 0 !important;
  width: 100% !important;
  float: none !important;
  clear: both !important;
}
.woocommerce-checkout .form-row-first,
.woocommerce form .form-row-first,
.woocommerce-checkout .form-row-last,
.woocommerce form .form-row-last {
  width: calc(50% - 10px) !important;
  float: none !important;
  display: inline-flex !important;
  vertical-align: top !important;
}
.woocommerce-checkout .form-row-first { margin-right: 20px !important; }
.woocommerce-checkout .form-row label,
.woocommerce form .form-row label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  display: block;
}
.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .select2-selection,
.woocommerce form .form-row input,
.woocommerce form .form-row select {
  width: 100% !important;
  padding: 12px 14px !important;
  border: 1px solid var(--line) !important;
  background: var(--off-white) !important;
  font-size: 14px !important;
  font-family: var(--font-body) !important;
  border-radius: 0 !important;
  min-height: 46px !important;
  box-sizing: border-box !important;
}
.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce form .form-row input:focus { border-color: var(--charcoal) !important; outline: none !important; }
.woocommerce-checkout h3,
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3 {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  letter-spacing: -0.02em !important;
  margin: 32px 0 20px 0 !important;
  color: var(--charcoal) !important;
}
.woocommerce .col2-set,
.woocommerce-page .col2-set { display: block !important; width: 100% !important; }
.woocommerce .col2-set .col-1,
.woocommerce .col2-set .col-2 { width: 100% !important; float: none !important; padding: 0 !important; }

/* Order summary sidebar */
.summary {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 32px;
  align-self: start;
  position: sticky;
  top: 100px;
}
.summary h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
}
.summary-row.total {
  padding-top: 20px;
  margin-top: 12px;
  border-top: 1px solid var(--charcoal-line);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
}
.summary .sub { color: #aaa; font-size: 12px; }
.summary .btn { width: 100%; justify-content: center; margin-top: 24px; }
.summary .promo-input { display: flex; margin-top: 10px; border: 1px solid var(--charcoal-line); }
.summary .promo-input input {
  background: transparent;
  border: none;
  flex: 1;
  color: var(--off-white);
  padding: 12px 14px;
  font-size: 13px;
  outline: none;
}
.summary .promo-input button {
  padding: 0 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--amber);
  background: none;
  border: none;
  cursor: pointer;
}

/* Detail / Single Product page */
.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  padding: 60px var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.detail-gallery { display: grid; grid-template-columns: 80px 1fr; gap: 16px; }
.detail-thumbs { display: flex; flex-direction: column; gap: 12px; }
.detail-thumb { aspect-ratio: 1; cursor: pointer; opacity: 0.5; transition: opacity 0.15s; overflow: hidden; }
.detail-thumb.active { opacity: 1; }
.detail-main { aspect-ratio: 1; position: relative; overflow: hidden; }
.detail-info .sku {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.detail-info h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-top: 10px;
}
.detail-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.detail-price .now {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.02em;
}
.detail-price .curr {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.12em;
}
.detail-price .old {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 18px;
  font-weight: 500;
}
.detail-price .save {
  background: var(--amber);
  color: var(--charcoal);
  padding: 4px 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.detail-qty-row {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  align-items: flex-start;
}
.detail-features {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.detail-feat { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; }
.detail-feat .i { color: var(--amber-deep); margin-top: 2px; flex-shrink: 0; }
.detail-tabs {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad) 80px;
}
.tab-heads {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.tab-head {
  padding: 14px 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}
.tab-head:hover { color: var(--charcoal); }
.tab-head.active { color: var(--charcoal); }
.tab-head.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber);
}
.tab-body {
  padding: 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.spec-table { display: flex; flex-direction: column; }
.spec-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.spec-row .k {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Checkout */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 60px var(--pad);
}
.checkout-steps {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.checkout-step {
  padding: 14px 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: default;
  display: flex;
  align-items: center;
  gap: 8px;
}
.checkout-step.active { color: var(--charcoal); border-color: var(--amber); }
.checkout-step.done { color: var(--amber-deep); }
.checkout-step .n {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.checkout-step.active .n { background: var(--amber); color: var(--charcoal); }
.checkout-step.done .n { background: var(--amber-deep); color: var(--off-white); }
.checkout-form { display: flex; flex-direction: column; gap: 18px; }
.woocommerce-checkout .form-row { margin-bottom: 0; }
.woocommerce-checkout .form-row label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}
.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout input[type="password"],
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--charcoal);
  padding: 14px 16px;
  font-size: 14px;
  outline: none;
  font-family: var(--font-body);
  appearance: none;
  border-radius: 0;
}
.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus { border-color: var(--charcoal); }
.woocommerce-checkout #payment { background: none; border: none; padding: 0; }
.woocommerce-checkout #payment ul.payment_methods {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: none;
  padding: 0;
}
.woocommerce-checkout #payment ul.payment_methods li {
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--off-white);
  cursor: pointer;
}
.woocommerce-checkout #payment ul.payment_methods li.selected,
.woocommerce-checkout #payment ul.payment_methods li:has(input:checked) {
  border-color: var(--charcoal);
  background: var(--paper);
}
.woocommerce-checkout #payment .place-order { padding: 0; margin-top: 20px; }
.woocommerce-checkout #payment #place_order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--amber);
  color: var(--charcoal);
  border: none;
  padding: 16px 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
}
.woocommerce-checkout #payment #place_order:hover { background: var(--amber-deep); }

/* WooCommerce field overrides */
.woocommerce form .form-row .required { color: var(--amber); }
.woocommerce-error, .woocommerce-message, .woocommerce-info {
  padding: 14px 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  border-left: 3px solid var(--amber);
  background: var(--paper);
  margin-bottom: 24px;
}
.woocommerce-error { border-color: #e55; }

/* Misc utility */
.spark-line {
  display: inline-block;
  width: 14px;
  height: 2px;
  background: var(--amber);
  vertical-align: middle;
  margin-right: 10px;
}
.qty {
  display: flex;
  align-items: center;
  gap: 0;
}
.qty .n {
  font-family: var(--font-mono);
  font-size: 14px;
  min-width: 36px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RTL overrides */
html[dir="rtl"] body { font-family: var(--font-arabic); }
html[dir="rtl"] .hero-text { border-right: none; border-left: 1px solid var(--charcoal-line); }
html[dir="rtl"] .ticker-track { animation: ticker-rtl 40s linear infinite; }
@keyframes ticker-rtl { from { transform: translateX(-50%); } to { transform: translateX(0); } }
html[dir="rtl"] .product .ph .badges { left: auto; right: 12px; }
html[dir="rtl"] .cat-arrow { right: auto; left: 24px; }
html[dir="rtl"] .hero-product-spec.top-left { left: auto; right: 24px; text-align: right; }
html[dir="rtl"] .hero-product-spec.top-right { right: auto; left: 24px; text-align: left; }
html[dir="rtl"] .hero-product-spec.bottom-left { left: auto; right: 24px; text-align: right; }
html[dir="rtl"] .hero-product-spec.bottom-right { right: auto; left: 24px; text-align: left; }
html[dir="rtl"] .hero-headline,
html[dir="rtl"] .section-title,
html[dir="rtl"] .about-hero h1,
html[dir="rtl"] .shop-head h1,
html[dir="rtl"] .contact-info h1,
html[dir="rtl"] .delivery-hero h1,
html[dir="rtl"] .detail-info h1,
html[dir="rtl"] .cart-header h1,
html[dir="rtl"] .pillar-title,
html[dir="rtl"] .cat-name,
html[dir="rtl"] .product-name,
html[dir="rtl"] .promo h2,
html[dir="rtl"] .timeline-row h3 { font-family: var(--font-arabic); letter-spacing: 0; }
html[dir="rtl"] .section-link,
html[dir="rtl"] .btn { font-family: var(--font-arabic); letter-spacing: 0; }
html[dir="rtl"] .eyebrow,
html[dir="rtl"] .mono,
html[dir="rtl"] .cat-num,
html[dir="rtl"] .cat-count,
html[dir="rtl"] .pillar-num,
html[dir="rtl"] .product-sku,
html[dir="rtl"] .product-price .curr,
html[dir="rtl"] .hero-product-spec,
html[dir="rtl"] .hero-product-label,
html[dir="rtl"] .hero-meta-item .num,
html[dir="rtl"] .ph-label,
html[dir="rtl"] .tag,
html[dir="rtl"] .nav-search .mono,
html[dir="rtl"] .spec-row .k,
html[dir="rtl"] .ticker-track,
html[dir="rtl"] .footer-bottom,
html[dir="rtl"] .footer h4,
html[dir="rtl"] .cart-item-sub,
html[dir="rtl"] .timeline-row .y,
html[dir="rtl"] .field label,
html[dir="rtl"] .zone-card .num,
html[dir="rtl"] .contact-method .k,
html[dir="rtl"] .shop-head .count { font-family: var(--font-arabic); }
html[dir="rtl"] .summary-row .sub { font-family: var(--font-arabic); }
html[dir="rtl"] .cart-count { right: auto; left: -7px; }
html[dir="rtl"] .footer-top { direction: rtl; }

/* Responsive */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-text { border-right: none; border-bottom: 1px solid var(--charcoal-line); }
  .product-grid,
  .shop-body .product-grid { grid-template-columns: repeat(2, 1fr); }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cart-page,
  .checkout-grid,
  .detail-grid,
  .shop-body,
  .about-hero-inner,
  .zone-map,
  .contact,
  .promo-inner { grid-template-columns: 1fr; }
  .detail-gallery { grid-template-columns: 1fr; }
  .detail-thumbs { flex-direction: row; }
  .detail-thumb { width: 72px; flex-shrink: 0; }
  .tab-body { grid-template-columns: 1fr; }
  .detail-features { grid-template-columns: 1fr; }
  .nav-search { display: none; }
  .timeline-row { grid-template-columns: 100px 1fr; }
  .timeline-row p { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  :root { --pad: 20px; }

  /* Nav: show hamburger, hide desktop links */
  .nav-inner { padding: 14px var(--pad); gap: 12px; flex-wrap: nowrap; }
  .nav-mobile-toggle { display: flex !important; }
  .nav-links { display: none !important; }
  .nav-logo .wordmark { font-size: 18px; }
  .nav-links { display: none; }
  .nav-actions { gap: 8px; }
  .nav-search { display: none; }
  .lang-btn { width: 36px; height: 36px; font-size: 14px; }
  .nav-icon-btn { width: 36px; height: 36px; }
  .nav-icon-btn svg { width: 14px !important; height: 14px !important; }

  /* Hero: tighter paddings, readable headline */
  .hero-text { padding: 48px var(--pad) 40px; }
  .hero-headline { font-size: clamp(40px, 10vw, 56px); line-height: 1; }
  .hero-sub { font-size: 14px; }
  .hero-meta { flex-wrap: wrap; gap: 20px 28px; }
  .hero-product { min-height: 320px; }
  .hero-product-label { font-size: 10px; padding: 8px 12px; }
  .hero-cta-row .btn { padding: 12px 18px; font-size: 12px; }

  /* Sections: tighter padding + stack heads */
  .section { padding: 60px var(--pad); }
  .section-head { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 32px; }
  .section-title { font-size: clamp(28px, 7vw, 40px); }

  /* Shop head: stack heading + perks */
  .shop-head { padding: 40px var(--pad) 30px; }
  .shop-head-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .shop-head h1 { font-size: clamp(36px, 9vw, 52px); }
  .shop-head-perks { text-align: left; font-size: 10px; }
  .shop-top { flex-direction: column; align-items: flex-start; gap: 12px; }
  .shop-top-right { flex-wrap: wrap; }

  /* Shop body: stack + unstick sidebar so it doesn't overlap content */
  .shop-body { grid-template-columns: 1fr; gap: 20px; padding: 24px var(--pad) 60px; }
  .filters { position: static; top: auto; border-bottom: 1px solid var(--line); padding-bottom: 16px; margin-bottom: 8px; }
  .filter-group { padding: 14px 0; }

  /* Grids: 2 columns */
  .cats { grid-template-columns: 1fr 1fr; }
  .cat { padding: 20px 16px; min-height: 170px; }
  .cat-name { font-size: 18px; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar { padding: 28px 20px; min-height: 180px; }
  .product-grid,
  .shop-body .product-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
  .product { gap: 10px; }
  .product-name { font-size: 13px; }
  .product-sub { font-size: 11px; }
  .product-price { font-size: 14px; }

  /* Promo: stack + tighter */
  .promo { padding: 60px var(--pad); }
  .promo-inner { gap: 32px; }
  .promo h2 { font-size: clamp(28px, 7vw, 40px); }

  /* About hero */
  .about-hero { padding: 72px var(--pad) 56px; }
  .about-hero h1 { font-size: clamp(36px, 9vw, 56px); }
  .about-hero .ar { font-size: 18px; }
  .about-hero p { font-size: 15px; }
  .timeline { padding: 56px var(--pad); }
  .timeline-row { grid-template-columns: 80px 1fr; gap: 20px; padding: 28px 0; }
  .timeline-row .y { font-size: 32px; }
  .timeline-row h3 { font-size: 18px; }

  /* Footer: single column */
  .footer { padding: 48px var(--pad) 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Ticker: smaller */
  .ticker-track { font-size: 10px; gap: 32px; padding: 10px 0; }
  .ticker-track .dot { width: 3px; height: 3px; }

  /* Contact */
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .nav-inner { gap: 8px; }
  .nav-actions { gap: 6px; }
  .lang-btn,
  .nav-icon-btn { width: 34px; height: 34px; }
  .nav-logo svg { width: 26px; height: 26px; }
  .nav-logo .wordmark { font-size: 16px; }

  .hero-text { padding: 40px var(--pad) 32px; }
  .hero-headline { font-size: clamp(34px, 11vw, 48px); }

  .cats { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .product-grid,
  .shop-body .product-grid { grid-template-columns: 1fr; }

  .shop-head h1 { font-size: clamp(32px, 10vw, 44px); }
  .about-hero h1 { font-size: clamp(32px, 10vw, 48px); }
  .section-title { font-size: clamp(24px, 8vw, 36px); }
  .promo h2 { font-size: clamp(24px, 8vw, 36px); }

  .hero-product-spec { font-size: 9px; }
  .hero-product-spec.top-left,
  .hero-product-spec.top-right,
  .hero-product-spec.bottom-left,
  .hero-product-spec.bottom-right { top: 12px; bottom: 12px; left: 12px; right: 12px; }
  .hero-product-spec.top-right,
  .hero-product-spec.bottom-right { left: auto; }
  .hero-product-spec.bottom-left,
  .hero-product-spec.bottom-right { top: auto; }

  .timeline-row { grid-template-columns: 1fr; gap: 8px; }
  .timeline-row p { grid-column: 1; }
}
