/* ─── VARIABLES — TaurusFit (dark by default) ───────────────── */
:root {
  --off-white: #0A0A0A;       /* Main canvas background */
  --white: #141414;           /* Cards & sheet backdrops */
  --black: #F5F5F5;           /* Primary typography */
  --red: #fc0002;             /* Accent — TaurusFit red */
  --gold: #00b6fa;            /* Accent alias — TaurusFit blue */
  --gold-hover: #33c5fb;
  --gold-light: #0A1E26;
  --gray-50: #151515;
  --gray-100: #1E1E1E;
  --gray-200: #2A2A2A;
  --gray-400: #9A9A9A;
  --gray-600: #C7C7C7;
  --gray-800: #F5F5F5;
  --success: #2D7A4F;
  --warning: #B45309;
  --error: #fc0002;
  --font-display: "Anton", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-arabic: "Cairo", "Tajawal", sans-serif;
  --nav-h: 68px;
  --cat-h: 46px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 20px rgba(0, 182, 250, 0.2);
}

/* ☀️ Light Mode variables */
html[data-theme="light"] {
  --off-white: #F7F7F7;
  --white: #FFFFFF;
  --black: #0A0A0A;
  --red: #fc0002;
  --gold: #00b6fa;
  --gold-hover: #0091c8;
  --gold-light: #E6F8FF;
  --gray-50: #FAFAFA;
  --gray-100: #F2F2F2;
  --gray-200: #E5E5E5;
  --gray-400: #8A8A8A;
  --gray-600: #4A4A4A;
  --gray-800: #1A1A1A;
  --shadow-sm: 0 2px 8px rgba(10, 10, 10, 0.04);
  --shadow-md: 0 8px 24px rgba(10, 10, 10, 0.06);
  --shadow-lg: 0 16px 40px rgba(10, 10, 10, 0.08);
  --shadow-gold: 0 4px 20px rgba(0, 182, 250, 0.15);
}

/* ─── PAGE LOADER — "Loom Weave" ──────────────────────────── */
#pageLoader {
  position: fixed;
  inset: 0;
  background: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  overflow: hidden;
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
#pageLoader.wl-exit {
  opacity: 0;
  transform: scale(1.06);
}
#pageLoader.hidden {
  visibility: hidden;
  pointer-events: none;
}
.bb-noanim #pageLoader {
  display: none !important;
}
#dataSpinner {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  background: var(--off-white);
  pointer-events: none;
  opacity: 0.95;
}
.ds-ring {
  width: 44px;
  height: 44px;
  border: 2px solid var(--gray-200);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: ds-spin .75s linear infinite;
}
@keyframes ds-spin {
  to { transform: rotate(360deg); }
}

/* Vertical "warp threads" that grow, hold, then dissolve — evokes a loom weaving */
.wl-weave {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 11px;
  height: 130px;
  z-index: 0;
}
.wl-thread {
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(0, 182, 250, 0.7) 45%, rgba(252, 0, 2, 0.7) 55%, transparent);
  transform: scaleY(0);
  animation: wlThreadWeave 2.2s cubic-bezier(.65, 0, .35, 1) infinite;
}
.wl-thread:nth-child(1)  { animation-delay: .00s; }
.wl-thread:nth-child(2)  { animation-delay: .05s; }
.wl-thread:nth-child(3)  { animation-delay: .10s; }
.wl-thread:nth-child(4)  { animation-delay: .15s; }
.wl-thread:nth-child(5)  { animation-delay: .20s; }
.wl-thread:nth-child(6)  { animation-delay: .25s; }
.wl-thread:nth-child(7)  { animation-delay: .20s; }
.wl-thread:nth-child(8)  { animation-delay: .15s; }
.wl-thread:nth-child(9)  { animation-delay: .10s; }
.wl-thread:nth-child(10) { animation-delay: .05s; }
.wl-thread:nth-child(11) { animation-delay: .00s; }
@keyframes wlThreadWeave {
  0%   { transform: scaleY(0);    opacity: 0; }
  22%  { transform: scaleY(1);    opacity: 1; }
  55%  { transform: scaleY(1);    opacity: 1; }
  78%  { transform: scaleY(0.15); opacity: .4; }
  100% { transform: scaleY(0);    opacity: 0; }
}

.wl-body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 1;
}
.wl-logo-wrap {
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  animation: wlLogoUnroll .85s cubic-bezier(.65, 0, .16, 1) .32s forwards;
}
@keyframes wlLogoUnroll {
  to { clip-path: inset(0 0 0 0); }
}
.wl-logo {
  display: block;
  height: 78px;
  width: auto;
  object-fit: contain;
}
.wl-line-wrap {
  position: relative;
  width: 210px;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}
.wl-line-fill {
  position: absolute;
  inset: 0;
  width: 0;
  background: var(--gold);
  animation: wlLineFill .55s cubic-bezier(.45, 0, .2, 1) .9s forwards;
}
.wl-shuttle {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px 2px rgba(0, 182, 250, .65);
  transform: translate(-3px, -50%);
  opacity: 0;
  animation: wlShuttleMove .55s cubic-bezier(.45, 0, .2, 1) .9s forwards;
}
@keyframes wlLineFill {
  0%   { width: 0; }
  100% { width: 100%; }
}
@keyframes wlShuttleMove {
  0%   { left: 0;    opacity: 1; }
  95%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
.wl-tagline {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -0.1em;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  animation: wlTaglineExpand .8s cubic-bezier(.16, 1, .3, 1) 1.05s forwards;
}
.wl-tagline .wl-dot {
  color: var(--gold);
  padding: 0 2px;
}
@keyframes wlTaglineExpand {
  0%   { opacity: 0; letter-spacing: -0.1em; }
  100% { opacity: 1; letter-spacing: .3em; }
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
ul {
  list-style: none;
}
input, textarea {
  font-family: inherit;
}

/* ─── UTILITY ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad {
  padding: 80px 0;
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes underlineExtend {
  from { width: 0; }
  to { width: 100%; }
}

/* ─── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.22s; }
.reveal-d3 { transition-delay: 0.34s; }
.reveal-d4 { transition-delay: 0.46s; }
.reveal-d5 { transition-delay: 0.58s; }

.animate-up {
  animation: fadeUp 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* ─── HEADER / TOP NAVBAR — solid, always opaque ─────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.35s ease;
  color: var(--black);
}
#site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.top-nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}
.logo-img {
  height: 64px;
  width: auto;
  display: block;
}
/* logo-dark.png is used as the single logo in both light and dark mode */
.logo-img-light {
  display: none;
}
.logo-img-dark {
  display: block;
}

/* Page links */
.nav-pages {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 0 0 auto;
}

/* Search bar — now inline in the top row, right of the page links */
.nav-search {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 0;
}
.search-wrap {
  width: 100%;
  max-width: 360px;
  position: relative;
  display: flex;
  align-items: center;
}
.search-icon-lead {
  position: absolute;
  left: 16px;
  color: var(--gray-400);
  pointer-events: none;
  transition: color 0.3s ease;
}
.search-wrap input {
  width: 100%;
  height: 42px;
  padding: 0 16px 0 42px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  font-size: 13px;
  color: var(--black);
  background: var(--gray-50);
  transition: all var(--transition);
  outline: none;
}
.search-wrap input::placeholder {
  color: var(--gray-400);
}
.search-wrap input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}
[dir="rtl"] .search-icon-lead {
  left: auto;
  right: 16px;
}
[dir="rtl"] .search-wrap input {
  padding: 0 42px 0 16px;
}
.mobile-search-btn {
  display: none;
  padding: 0;
  margin: 0;
}
.search-close-btn {
  display: none;
  padding: 0;
  margin: 0;
}
.search-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  z-index: 2000;
  max-height: 360px;
  overflow-y: auto;
  padding: 6px 0;
}
.search-dropdown.open { display: block; }
.search-drop-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background var(--transition);
}
.search-drop-item:hover { background: var(--gray-50); }
.search-drop-thumb {
  width: 40px;
  height: 40px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-drop-thumb img { width:100%; height:100%; object-fit:cover; }
.search-drop-info { flex:1; min-width:0; }
.search-drop-brand { font-size:10px; color:var(--gray-400); font-weight:600; letter-spacing:1px; text-transform:uppercase; margin-bottom: 2px; }
.search-drop-name { font-size:13px; font-weight:500; color:var(--black); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.search-drop-price { font-size:14px; font-weight: 500; color:var(--black); flex-shrink:0; }
.search-drop-empty { padding:16px; font-size:13px; color:var(--gray-400); text-align:center; }

/* Right Nav Controls */
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Language Switcher — compact dropdown (was 3 flat buttons; that
   crowded the mobile header next to the logo/cart/hamburger) */
.lang-switch {
  position: relative;
}
.lang-btn {
  padding: 4px 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-400);
  transition: all var(--transition);
  letter-spacing: 0.5px;
}
.lang-btn:hover {
  color: var(--black);
}
.lang-btn.active {
  color: var(--gold);
  font-weight: 700;
}

.lang-dd-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 34px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  transition: border-color var(--transition), color var(--transition);
}
.lang-dd-toggle:hover,
.lang-dd-toggle[aria-expanded="true"] {
  border-color: var(--gold);
  color: var(--gold);
}
.lang-dd-toggle svg {
  transition: transform var(--transition);
  flex-shrink: 0;
}
.lang-dd-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.lang-dd-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 88px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  padding: 6px;
  z-index: 2100;
}
.lang-dd-menu.open {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
[dir="rtl"] .lang-dd-menu {
  right: auto;
  left: 0;
}
.lang-dd-item {
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gray-600);
  border-radius: 6px;
  text-align: left;
  transition: background var(--transition), color var(--transition);
}
[dir="rtl"] .lang-dd-item {
  text-align: right;
}
.lang-dd-item:hover {
  background: var(--gray-50);
  color: var(--black);
}
.lang-dd-item.active {
  background: var(--gold-light);
  color: var(--gold);
}

/* Cart Button */
.cart-btn {
  position: relative;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
  color: var(--black);
}
.cart-btn:hover {
  color: var(--gold);
}
.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}


/* ─── HAMBURGER — boxed, equal-width bars ────────────────── */
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  transition: background var(--transition), border-color var(--transition);
}
.hamburger:hover { background: var(--gold-light); border-color: var(--gold); }
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.38s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.28s ease, background 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE OVERLAY ─────────────────────────────────────── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(8px);
  z-index: 1099;
}
.mobile-overlay.open { display: block; animation: mmOverlayIn 0.35s ease forwards; }
@keyframes mmOverlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── MOBILE MENU PANEL — clean, elevated sidebar ─────────── */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: min(340px, 86vw);
  background: var(--white);
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  box-shadow: 24px 0 60px rgba(10,10,10,0.18);
}
[dir="rtl"] .mobile-menu {
  left: auto; right: 0;
  transform: translateX(100%);
  box-shadow: -24px 0 60px rgba(10,10,10,0.18);
}
.mobile-menu::before {
  content: "";
  display: block;
  height: 3px;
  flex-shrink: 0;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
}
.mobile-menu.open { transform: translateX(0); }

/* Menu header */
.mm-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--gray-200);
  flex-shrink: 0;
}
.mm-brand {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--black);
}
.mm-close {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  color: var(--gray-400);
  font-size: 13px;
  background: none; cursor: pointer;
  transition: all 0.22s ease;
}
.mm-close:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: rotate(90deg);
}

/* Nav body */
.mm-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px 20px;
}
.mm-body::-webkit-scrollbar { width: 3px; }
.mm-body::-webkit-scrollbar-track { background: transparent; }
.mm-body::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 2px; }

.mm-section {
  margin-bottom: 8px;
}
.mm-section + .mm-section {
  margin-top: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}
.mm-section-label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0 12px;
  margin-bottom: 10px;
}

/* Nav links — rounded row, soft hover pill */
.mobile-menu .m-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  margin-bottom: 2px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  transition: color 0.25s ease, background 0.25s ease, padding-inline-start 0.25s ease;
}
.mobile-menu .m-link:hover,
.mobile-menu .m-link.active {
  color: var(--gold);
  background: var(--gold-light);
  padding-inline-start: 22px;
}

/* Category toggle rows */
.m-cat-item {
  margin-bottom: 2px;
}
.m-cat-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}
.m-cat-toggle svg { width: 13px; height: 13px; transition: transform 0.3s ease; flex-shrink: 0; opacity: 0.4; }
.m-cat-item.open .m-cat-toggle svg { transform: rotate(180deg); opacity: 1; }
.m-cat-item.open .m-cat-toggle,
.m-cat-toggle:hover {
  color: var(--gold);
  background: var(--gold-light);
}

/* Subcategories */
.m-sub {
  display: none;
  padding: 4px 4px 10px 28px;
}
[dir="rtl"] .m-sub {
  padding: 4px 28px 10px 4px;
}
.m-cat-item.open .m-sub { display: block; }
.m-sub-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s ease, background 0.2s ease;
}
.m-sub-link::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gray-200);
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.m-sub-link:hover {
  color: var(--gold);
  background: var(--gold-light);
}
.m-sub-link:hover::before {
  background: var(--gold);
}
.m-sub-link.m-sub-all {
  font-weight: 600;
  color: var(--black);
}

/* Sub-subcategory toggle rows (nested one level deeper) */
.m-subsub-cat-item { margin-bottom: 1px; }
.m-subsub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.m-subsub-toggle svg { width: 11px; height: 11px; transition: transform 0.3s ease; flex-shrink: 0; opacity: 0.4; }
.m-subsub-cat-item.open .m-subsub-toggle svg { transform: rotate(180deg); opacity: 1; }
.m-subsub {
  display: none;
  padding: 2px 4px 6px 16px;
}
[dir="rtl"] .m-subsub {
  padding: 2px 16px 6px 4px;
}
.m-subsub-cat-item.open .m-subsub { display: block; }
.m-subsub-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s ease, background 0.2s ease;
}
.m-subsub-link::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gray-200);
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.m-subsub-link:hover {
  color: var(--gold);
  background: var(--gold-light);
}
.m-subsub-link:hover::before {
  background: var(--gold);
}
.m-subsub-link.m-subsub-all {
  font-weight: 600;
  color: var(--black);
}

/* Language switcher — segmented pill */
.mobile-lang {
  display: flex;
  gap: 4px;
  padding: 16px 20px 20px;
  border-top: 1px solid var(--gray-200);
  flex-shrink: 0;
  background: var(--off-white);
}
.mobile-lang .lang-btn {
  flex: 1;
  height: 40px;
  border: none;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gray-400);
  background: transparent;
  cursor: pointer;
  transition: all 0.22s ease;
}
.mobile-lang .lang-btn.active {
  color: #FFFFFF;
  background: var(--gold);
}
.mobile-lang .lang-btn:hover:not(.active) {
  color: var(--black);
  background: var(--gray-100);
}

/* Stagger animation */
@keyframes mmItemIn {
  from { opacity: 0; transform: translateX(-14px); }
  to   { opacity: 1; transform: translateX(0); }
}
[dir="rtl"] .mobile-menu.open .mm-section {
  animation-name: mmItemInRtl;
}
@keyframes mmItemInRtl {
  from { opacity: 0; transform: translateX(14px); }
  to   { opacity: 1; transform: translateX(0); }
}
.mobile-menu.open .mm-section {
  animation: mmItemIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.mobile-menu.open .mm-section:nth-child(1) { animation-delay: 0.08s; }
.mobile-menu.open .mm-section:nth-child(2) { animation-delay: 0.16s; }

/* ─── MARQUEE TICKER — scrolling sports-brand strip ───────── */
.marquee-bar {
  background: var(--red);
  color: #FFFFFF;
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
  letter-spacing: 1.5px;
}
.marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marqueeScroll 22s linear infinite;
  will-change: transform;
}
.marquee-bar:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 18px;
  flex-shrink: 0;
}
.marquee-item::after {
  content: "\2022";
  margin-inline-start: 18px;
  opacity: 0.6;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
[dir="rtl"] .marquee-track {
  animation-name: marqueeScrollRtl;
}
@keyframes marqueeScrollRtl {
  from { transform: translateX(0); }
  to   { transform: translateX(50%); }
}

/* ─── HERO SECTION — full-bleed video ───────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 94vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0A0A0A;
  margin-top: calc(var(--nav-h) + 1px);
}
.hero-media-source {
  display: none;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0A0A0A;
}

/* ─── MOBILE HERO — plain swipeable carousel, hidden on desktop ─── */
.hero-mobile {
  display: none;
}

/* ─── SLICED HERO PANELS ─────────────────────────────────────
   4 diagonally-skewed static photos, full color (no filter),
   no rotation, no text. On hover the whole card lifts forward
   with a 3D drop shadow — the photo inside stays put. */
.hero-panels {
  position: absolute;
  inset: 0 -8vw;
  z-index: 1;
  display: flex;
  overflow: visible;
  background: #0A0A0A;
}
.hero-panel {
  --py: 0px; /* parallax offset, set by JS on scroll */
  position: relative;
  flex: 1 0 0;
  overflow: hidden;
  transform: skewX(-9deg) translateY(var(--py));
  margin-left: -4vw;
  transition: transform 0.45s cubic-bezier(.25,.9,.35,1), box-shadow 0.45s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  will-change: transform;
}
.hero-panel.is-linked {
  cursor: pointer;
}
.hero-panel:first-child {
  margin-left: -2vw;
}
.hero-panel-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-panel-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: skewX(9deg) scale(1.5);
  transform-origin: center center;
  transition: filter 0.45s ease, opacity 0.45s ease;
}
.hero-panel:hover {
  z-index: 5;
  transform: skewX(-9deg) scale(1.08) translateY(calc(var(--py) - 16px));
  box-shadow:
    0 40px 70px -12px rgba(0,0,0,0.65),
    0 15px 30px -8px rgba(0,0,0,0.5);
}
.hero-panel:hover .hero-panel-media img {
  transform: skewX(9deg) scale(1.9);
}
/* Rack-focus: while any panel is hovered, the rest soften and dim
   slightly, like a camera pulling focus onto the hovered subject. */
.hero-panels:has(.hero-panel:hover) .hero-panel:not(:hover) .hero-panel-media img {
  filter: grayscale(1) blur(3px) brightness(0.72);
}

/* Panel title — admin-controlled label per photo, counter-skewed so
   it reads horizontally despite the panel's diagonal frame. */
.hero-panel-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.65) 100%);
  pointer-events: none;
}
.hero-panel-title {
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: 22px;
  z-index: 3;
  display: flex;
  justify-content: center;
  transform: skewX(9deg);
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(.25,.9,.35,1);
}
.hero-panel-title span {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,0.85);
  text-align: center;
}
.hero-panel:hover .hero-panel-title {
  transform: skewX(9deg) translateY(-4px);
}

/* Entrance reveal — panels drop/fade in on first load, staggered. */
.hero-panels.pre-reveal .hero-panel {
  opacity: 0;
  transform: skewX(-9deg) translateY(28px);
  transition: transform 0.9s cubic-bezier(.16,.84,.32,1), opacity 0.9s ease;
}
.hero-panels.pre-reveal .hero-panel:nth-child(1) { transition-delay: 0s; }
.hero-panels.pre-reveal .hero-panel:nth-child(2) { transition-delay: 0.1s; }
.hero-panels.pre-reveal .hero-panel:nth-child(3) { transition-delay: 0.2s; }
.hero-panels.pre-reveal .hero-panel:nth-child(4) { transition-delay: 0.3s; }
.hero-panels.reveal-in .hero-panel {
  opacity: 1;
  transform: skewX(-9deg) translateY(var(--py));
}

.hero-panels::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.05) 0%, transparent 40%, rgba(10,10,10,0.35) 100%),
    radial-gradient(ellipse at center, transparent 45%, rgba(10,10,10,0.5) 100%);
  pointer-events: none;
}

/* ── Animated red/blue wave accents at the top and bottom of the hero ── */
.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  height: 68px;
  overflow: hidden;
  z-index: 4;
  pointer-events: none;
  opacity: 0.45;
}
.hero-wave-top { top: 0; }
.hero-wave-bottom { bottom: 0; }
.hero-wave-svg {
  display: block;
  width: 200%;
  height: 100%;
  animation: heroWaveScroll 14s linear infinite;
}
.hero-wave-top .hero-wave-svg { animation-direction: normal; }
.hero-wave-bottom .hero-wave-svg { animation-direction: reverse; }
@keyframes heroWaveScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
}
.hero-slide img,
.hero-slide video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.85) contrast(1.3) brightness(0.55) blur(1.5px);
  transform: scale(1);
  animation: heroKenBurns 20s ease-in-out infinite alternate;
}
/* Videos already move on their own — the extra Ken Burns zoom just
   fights the footage, so only apply it to still images. */
.hero-slide video {
  animation: none;
}
@keyframes heroKenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.1); }
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.6) 45%, rgba(10,10,10,0.88) 100%),
    linear-gradient(100deg, rgba(252,0,2,0.35) 0%, transparent 32%, transparent 68%, rgba(0,182,250,0.35) 100%);
}
/* ─── HERO BUTTONS — cut-corner shape, hardcoded colors ───────
   These always sit on the dark hero video, independent of the
   site's light/dark toggle, so colors are fixed hex, not vars. */
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 10px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.btn-primary {
  background: #fc0002;
  color: #FFFFFF;
  border: 1px solid #fc0002;
}
.btn-primary:hover {
  background: #ff3335;
  border-color: #ff3335;
  transform: translateY(-2px);
}
.btn-primary svg {
  transition: transform 0.25s ease;
}
.btn-primary:hover svg {
  transform: translateX(3px);
}
[dir="rtl"] .btn-primary:hover svg {
  transform: translateX(-3px) rotate(180deg);
}

.btn-outline {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: #FFFFFF;
  color: #0A0A0A;
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

/* ─── CATEGORIES SECTION ─────────────────────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.category-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--black);
}
.category-card-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gray-100);
  border-radius: 16px;
}
.category-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.category-card:hover .category-card-media img {
  transform: scale(1.06);
}
.category-card-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gray-100) 100%);
}
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,10,0.35) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.category-card:hover .category-card-overlay {
  opacity: 1;
}
.category-card-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.3px;
}

/* Sub-category pills — shown under each category card */
.category-card-subs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 2px;
  width: 100%;
  max-width: 100%;
}
.category-sub-pill {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--gray-400);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 4px 10px;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.category-card:hover .category-sub-pill {
  color: var(--black);
}
.category-sub-pill:not(.category-sub-more):hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}
.category-sub-more {
  color: var(--gray-400);
  cursor: default;
}

/* ─── TRUST BAR ──────────────────────────────────────────── */
/* ─── TRUST BAR — bordered grid cells ────────────────────── */
.trust-bar {
  background: var(--off-white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 0;
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 44px 20px;
  cursor: default;
  border-inline-end: 1px solid var(--gray-200);
  transition: background 0.3s ease;
}
.trust-item:last-child {
  border-inline-end: none;
}
.trust-item:hover {
  background: var(--white);
}
.trust-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  color: var(--gold);
  background: var(--white);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.trust-item:hover .trust-icon {
  background: var(--gold);
  color: #FFFFFF;
  border-color: var(--gold);
  transform: scale(1.08);
}

/* ─── PRODUCT SIGNS / GRID ────────────────────────────────── */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 2px;
}
.view-all-link {
  font-size: 11px;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  transition: all var(--transition);
  flex-shrink: 0;
}
.view-all-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.view-all-link svg {
  transition: transform var(--transition);
}
.view-all-link:hover svg {
  transform: translateX(4px);
}
[dir="rtl"] .view-all-link:hover svg {
  transform: translateX(-4px);
}

/* Product Cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}
.product-img {
  position: relative;
  aspect-ratio: 1;
  background: var(--gray-50);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.4s ease;
}
.product-card:hover .product-img img {
  transform: scale(1.04);
}
.product-img .img-hover { position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s ease; }
.product-card:hover .product-img:has(.img-hover) .img-primary { opacity: 0; }
.product-card:hover .product-img .img-hover { opacity: 1; }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 8px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
}
.badge-oos { background: var(--gray-400); }
.badge-hot { background: var(--error); }
.badge-new { background: var(--black); }
.badge-promo { background: var(--error); }

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-brand {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.3;
}
.product-desc {
  display: none;
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
  margin: -4px 0 10px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product-stock {
  display: block;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 10px;
}
.product-stock.in-stock { color: #1a9e5c; }
.product-stock.low-stock { color: #d97706; }
.product-stock.out-stock { color: var(--gray-400); }
.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 6px;
}
.price {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}
.price-old {
  font-size: 12px;
  color: var(--gray-400);
  text-decoration: line-through;
}
.price-save {
  font-size: 10px;
  font-weight: 600;
  color: var(--error);
}

.product-actions {
  display: flex;
  gap: 8px;
}
.btn-cart,
.btn-buy {
  flex: 1;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition);
  border-radius: 10px;
}
.btn-cart {
  border: 1px solid var(--black);
  color: var(--black);
  background: transparent;
}
.btn-cart:hover {
  background: var(--black);
  color: var(--white);
}
.btn-buy {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #FFFFFF;
}
.btn-buy:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
}
.btn-cart-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black);
  background: transparent;
  color: var(--black);
  transition: all var(--transition);
  border-radius: 10px;
}
.btn-cart-icon:hover {
  background: var(--black);
  color: var(--white);
}

.view-all-block {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border: 1px solid var(--gray-200);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--black);
  transition: all var(--transition);
  border-radius: 10px;
}
.btn-view-all:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── HOW TO ORDER — editorial numbered list ─────────────── */
.hiw-section {
  background: var(--white);
  padding: 100px 0;
}
.hiw-head {
  max-width: 560px;
  margin: 0 0 56px;
}
.hiw-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.hiw-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.hiw-sub {
  font-size: 14px;
  color: var(--gray-400);
  max-width: 440px;
}

.hiw-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--gray-200);
}
.hiw-row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  transition: padding-inline-start 0.35s ease;
}
.hiw-row:hover {
  padding-inline-start: 16px;
}
.hiw-num {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  font-weight: 500;
  flex-shrink: 0;
  width: 110px;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gray-200);
  text-stroke: 1.5px var(--gray-200);
  transition: -webkit-text-stroke-color 0.35s ease;
}
.hiw-row:hover .hiw-num {
  -webkit-text-stroke-color: var(--gold);
}
.hiw-row-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  color: var(--gold);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.hiw-row:hover .hiw-row-icon {
  background: var(--gold);
  color: #FFFFFF;
  border-color: var(--gold);
}
.hiw-row-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 8px;
}
.hiw-row-body p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--gray-400);
  max-width: 560px;
}

/* ─── BANNER SECTION INTRO HEADER ───────────────────────── */
.banner-section-intro {
  text-align: center;
  padding: 88px 0 52px;
}
.banner-intro-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.banner-intro-eyebrow::before,
.banner-intro-eyebrow::after {
  content: "·";
  margin: 0 10px;
  opacity: 0.45;
}
.banner-intro-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  color: var(--black);
  letter-spacing: 3px;
  line-height: 1.15;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.banner-intro-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  display: block;
  font-size: 1.05em;
}
.banner-intro-sub {
  font-size: 13px;
  color: var(--gray-400);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.banner-intro-rule {
  width: 64px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(252,0,2,0.7), transparent);
  margin: 0 auto;
}

/* ─── FEATURED BANNER — always a dark photographic panel,
   independent of the site's light/dark toggle (same intent as
   the hero and footer, which also stay dark in both themes) ── */
.featured-banner {
  background: #0a0a0a;
  border: none;
  margin: 0 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.featured-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 100% at 15% 50%, rgba(0,182,250,0.16) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.banner-left {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.banner-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.banner-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 300;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.1;
}
.banner-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.banner-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
}

/* Corner bracket decorations */
.banner-corner {
  position: absolute;
  width: 26px;
  height: 26px;
  pointer-events: none;
  z-index: 3;
}
.banner-corner-tl {
  top: 20px;
  left: 20px;
  border-top: 1px solid rgba(252,0,2,0.5);
  border-left: 1px solid rgba(252,0,2,0.5);
}
.banner-corner-bl {
  bottom: 20px;
  left: 20px;
  border-bottom: 1px solid rgba(252,0,2,0.5);
  border-left: 1px solid rgba(252,0,2,0.5);
}

.banner-right {
  background: #0A0A0A;
  overflow: hidden;
  position: relative;
}
.banner-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0a0a0a 0%, rgba(0,0,0,0.35) 55%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.banner-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 8s ease-out, opacity 0.4s ease;
}
.featured-banner:hover .banner-right img {
  transform: scale(1.03);
  opacity: 0.95;
}

/* ─── SCROLL PROGRESS & TOP ──────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  width: 0%;
  z-index: 9999;
  transition: width 0.1s ease-out;
}
#scrollTop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 38px;
  height: 38px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 900;
}
#scrollTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scrollTop:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── ADD TO CART MODAL ───────────────────────────────────── */
.atc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(4px);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.atc-overlay.open {
  opacity: 1;
  visibility: visible;
}
.atc-modal {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  width: 100%;
  max-width: 440px;
  padding: 32px;
  position: relative;
  transform: translateY(12px);
  transition: transform var(--transition);
}
.atc-overlay.open .atc-modal {
  transform: translateY(0);
}
.atc-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 14px;
  color: var(--gray-400);
  transition: color var(--transition);
}
.atc-close:hover {
  color: var(--black);
}
.atc-modal-img {
  width: 100px;
  height: 100px;
  background: var(--gray-50);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
}
.atc-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.atc-modal-name {
  font-family: var(--font-display);
  font-size: 20px;
  text-align: center;
  color: var(--black);
  margin-bottom: 8px;
}
.atc-modal-price {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: var(--gold);
  margin-bottom: 24px;
}
.atc-section {
  margin-bottom: 20px;
}
.atc-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 8px;
}
.atc-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.atc-option {
  padding: 6px 12px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 11px;
  color: var(--black);
  transition: all var(--transition);
}
.atc-option:hover {
  border-color: var(--gold);
}
.atc-option.active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}
.atc-qty-row {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
}
.atc-qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background var(--transition);
}
.atc-qty-btn:hover { background: var(--gray-50); }
.atc-qty-val {
  width: 32px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}
.atc-confirm-btn {
  width: 100%;
  height: 46px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
  transition: all var(--transition);
  border-radius: 10px;
}
.atc-confirm-btn:hover {
  background: var(--black);
}

/* ─── CART DRAWER ──────────────────────────────────────────── */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 360px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 9995;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition);
}
.cart-drawer.open {
  transform: translateX(0);
}
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.3);
  backdrop-filter: blur(4px);
  z-index: 9994;
}
.cart-overlay.open {
  display: block;
}
.cart-drawer-hd {
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-drawer-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cart-drawer-x {
  font-size: 14px;
  color: var(--gray-400);
  transition: color var(--transition);
}
.cart-drawer-x:hover {
  color: var(--black);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}
.cart-row {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
}
.cart-row-img {
  width: 64px;
  height: 64px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  flex-shrink: 0;
  overflow: hidden;
}
.cart-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-row-info {
  flex: 1;
  min-width: 0;
}
.cart-row-name {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--black);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-row-meta {
  font-size: 10px;
  color: var(--gray-400);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.cart-row-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ciq {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-200);
}
.ciq-btn {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.ciq-val {
  width: 26px;
  text-align: center;
  font-size: 11px;
}
.cart-row-price {
  font-size: 13px;
  font-weight: 600;
}
.cart-row-del {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--gray-400);
  transition: color var(--transition);
}
.cart-row-del:hover {
  color: var(--black);
}

.cart-drawer-ft {
  padding: 24px;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.cart-total-lbl {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
}
.cart-total-num {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}
.cart-checkout {
  width: 100%;
  height: 46px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all var(--transition);
  border-radius: 10px;
}
.cart-checkout:hover {
  background: var(--black);
}

.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--gray-400);
  gap: 16px;
}
.cart-empty-state p {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── TOAST ────────────────────────────────────────────────── */
#toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--white);
  border: 1px solid var(--gold);
  padding: 12px 24px;
  box-shadow: var(--shadow-md);
  z-index: 10000;
  transform: translateY(48px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
#toast.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.toast-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
#toastMsg {
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
}

/* ─── RESPONSIVENESS ───────────────────────────────────────── */
@media (max-width: 991px) {
  .hero {
    min-height: 78vh;
  }
  .banner-section-intro {
    padding: 60px 0 40px;
  }
  .featured-banner {
    grid-template-columns: 1fr;
    min-height: auto;
    margin: 0 0 60px;
  }
  .banner-right {
    height: 320px;
  }
  .banner-right-overlay {
    background: linear-gradient(to bottom, #0a0a0a 0%, transparent 40%);
  }
  .hiw-row {
    gap: 20px;
    padding: 28px 0;
  }
  .hiw-num {
    font-size: 40px;
    width: 60px;
  }
  .hiw-row-icon {
    width: 44px;
    height: 44px;
  }
  .hiw-row-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* Page links hidden on mobile, hamburger shown instead */
@media (max-width: 900px) {
  .top-nav {
    gap: 10px;
  }
  .logo-img {
    height: 42px;
  }
  .nav-pages {
    display: none;
  }
  .hamburger {
    display: flex !important;
    width: 34px;
    height: 34px;
  }
  .nav-right {
    gap: 4px;
  }
  .nav-right .theme-btn {
    display: flex !important;
    width: 32px;
    height: 32px;
  }
  .nav-right .lang-switch {
    display: block !important;
  }
  .nav-right .lang-dd-toggle {
    height: 32px;
    padding: 0 7px;
  }
  .nav-right .cart-btn {
    width: 32px;
    height: 32px;
  }
  .mobile-lang {
    display: none !important;
  }

  /* Inline search bar is replaced by an icon that opens a fullscreen overlay,
     since it was colliding with the language switcher in the same row. */
  .nav-search {
    display: none;
  }
  .mobile-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    color: var(--black);
    cursor: pointer;
    flex-shrink: 0;
  }
  .nav-search.mobile-open {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 5000;
    align-items: flex-start;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: calc(var(--nav-h) + 24px) 24px 24px;
    animation: mobileSearchFadeIn 0.25s ease;
  }
  .nav-search.mobile-open .search-wrap {
    width: 100%;
    max-width: 480px;
  }
  .search-close-btn {
    display: none;
  }
  .nav-search.mobile-open .search-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 16px;
    right: 20px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--black);
    cursor: pointer;
    z-index: 5001;
  }
  [dir="rtl"] .nav-search.mobile-open .search-close-btn {
    right: auto;
    left: 20px;
  }
}

@keyframes mobileSearchFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 768px) {
  /* Desktop cinematic sliced hero is replaced by a plain carousel on phones */
  .hero {
    display: block;
    min-height: auto;
    overflow: visible;
  }
  .hero-panels {
    display: none;
  }
  .hero-mobile {
    display: block;
    position: relative;
    width: 100%;
    background: #0A0A0A;
    padding-top: 22px;
  }
  .hero-mobile-headline {
    padding: 0 20px 16px;
    text-align: center;
  }
  .hero-mobile-eyebrow {
    margin: 0 0 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
  }
  .hero-mobile-heading {
    margin: 0;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: 0.5px;
    color: #fff;
  }
  .hero-mobile-heading em {
    font-style: normal;
    color: var(--red);
  }
  .hero-mobile-track {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    touch-action: pan-y;
    border-radius: 14px;
  }
  .hero-mobile-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    overflow: hidden;
  }
  .hero-mobile-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
  }
  .hero-mobile-slide.is-linked {
    cursor: pointer;
  }
  .hero-mobile-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
  }
  /* Cinematic Ken Burns drift — alternates zoom-in / zoom-out per slide
     so consecutive photos never repeat the exact same motion. */
  .hero-mobile-slide.active img {
    animation: heroKenBurnsIn 5.5s ease-out forwards;
  }
  .hero-mobile-slide:nth-child(2n).active img {
    animation-name: heroKenBurnsOut;
  }
  @keyframes heroKenBurnsIn {
    from { transform: scale(1) translate(0, 0); }
    to   { transform: scale(1.16) translate(-1%, -1%); }
  }
  @keyframes heroKenBurnsOut {
    from { transform: scale(1.16) translate(1%, 1%); }
    to   { transform: scale(1) translate(0, 0); }
  }
  .hero-mobile-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0) 45%, rgba(10, 10, 10, 0.88) 100%);
  }
  .hero-mobile-title {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    font-family: var(--font-display);
    font-size: 26px;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  }
  /* Quick white flash pulse on every slide change — a punchy,
     shutter-like "gym transition" beat between photos. */
  .hero-mobile-flash {
    position: absolute;
    inset: 0;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: overlay;
  }
  .hero-mobile-flash.pulse {
    animation: heroMobileFlashPulse 0.35s ease-out;
  }
  @keyframes heroMobileFlashPulse {
    0% { opacity: 0.4; }
    100% { opacity: 0; }
  }
  .hero-mobile-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: #fff;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.15s ease;
  }
  .hero-mobile-arrow:active {
    transform: translateY(-50%) scale(0.9);
  }
  .hero-mobile-arrow-prev {
    left: 12px;
  }
  .hero-mobile-arrow-next {
    right: 12px;
  }
  .hero-mobile-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 0 12px;
  }
  .hero-mobile-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gray-200);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease;
  }
  .hero-mobile-dot.active {
    background: var(--gold);
    width: 20px;
    border-radius: 4px;
  }
  .hero-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px 20px;
    height: 48px;
    background: linear-gradient(100deg, var(--red), var(--blue, var(--red)));
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 10px;
  }

  .search-wrap {
    max-width: 100%;
  }
  .section-pad {
    padding: 60px 0;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .product-card {
    flex-direction: row;
  }
  .product-img {
    width: 130px;
    min-width: 130px;
    aspect-ratio: 1;
  }
  .product-info {
    padding: 12px 14px;
    justify-content: center;
  }
  .product-brand {
    font-size: 10px;
  }
  .product-name {
    font-size: 14px;
    margin-bottom: 4px;
  }
  .product-stock {
    font-size: 10px;
    margin-bottom: 8px;
  }
  .product-pricing {
    gap: 6px;
    margin-bottom: 10px;
    margin-top: 0;
    flex-wrap: wrap;
  }
  .price {
    font-size: 13px;
  }
  .price-old {
    font-size: 10px;
  }
  .price-save {
    font-size: 9px;
  }
  .product-actions {
    flex-direction: row;
    gap: 8px;
  }
  .btn-cart,
  .btn-buy {
    height: 40px;
    font-size: 11px;
    letter-spacing: 0.6px;
  }
  .btn-cart-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }
  .product-badge {
    font-size: 8px;
    padding: 3px 6px;
    top: 8px;
    left: 8px;
  }
  .category-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    padding-bottom: 8px;
    margin: 0 -24px;
    padding-inline: 24px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .category-grid::-webkit-scrollbar {
    display: none;
  }
  .category-card {
    flex: 0 0 auto;
    width: 148px;
    gap: 8px;
    scroll-snap-align: start;
  }
  .category-card-media {
    border-radius: 12px;
  }
  .category-card-subs {
    gap: 4px;
  }
  .category-sub-pill {
    font-size: 9.5px;
    padding: 3px 8px;
  }
  .category-card-name {
    font-size: 12px;
    letter-spacing: 0.2px;
  }
  .hero-panel {
    transform: skewX(-6deg);
    margin-left: -8vw;
  }
  .hero-panel:first-child {
    margin-left: -4vw;
  }
  .hero-panel-media img {
    transform: skewX(6deg) scale(1.7);
  }
  .hero-panel:hover {
    transform: skewX(-6deg) scale(1.06) translateY(-10px);
  }
  .hero-panel-title {
    left: -60%;
    right: -60%;
    bottom: 10px;
    transform: skewX(6deg);
  }
  .hero-panel:hover .hero-panel-title {
    transform: skewX(6deg) translateY(-4px);
  }
  .hero-panel-title span {
    font-size: 10px;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.9);
  }
  .marquee-item {
    font-size: 10px;
    padding: 0 12px;
  }
  .trust-inner {
    grid-template-columns: 1fr 1fr;
  }
  .trust-item {
    padding: 28px 14px;
    border-inline-end: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
  }
  .trust-item:nth-child(2n) {
    border-inline-end: none;
  }
  .trust-item:last-child {
    border-inline-end: none;
    border-bottom: none;
  }
  .trust-icon {
    width: 44px;
    height: 44px;
  }
  .featured-banner {
    margin: 0 0 48px;
  }
  .banner-section-intro {
    padding: 48px 0 32px;
  }
  .banner-intro-title {
    letter-spacing: 1.5px;
  }
  .banner-left {
    padding: 36px 28px;
  }
}

/* ─── ARABIC / RTL ────────────────────────────────────────── */
body.lang-ar,
body.lang-ar .section-title,
body.lang-ar .banner-title,
body.lang-ar .hiw-title,
body.lang-ar .category-card-name,
body.lang-ar .logo-img,
body.lang-ar .mm-brand {
  font-family: var(--font-arabic);
}
[dir="rtl"] .search-btn {
  right: auto;
  left: 2px;
}
[dir="rtl"] .search-wrap input {
  padding: 0 16px 0 40px;
}
[dir="rtl"] .cart-badge {
  right: auto;
  left: 2px;
}
[dir="rtl"] #scrollTop {
  right: auto;
  left: 24px;
}
[dir="rtl"] .hiw-badge {
  right: auto;
  left: -4px;
}
[dir="rtl"] .banner-corner-tl,
[dir="rtl"] .banner-corner-bl {
  left: auto;
  right: 20px;
}
