/* ─── VARIABLES ──────────────────────────────────────────── */
:root {
  --off-white: #F7F7F7;       /* Main canvas background */
  --white: #FFFFFF;           /* Cards & sheet backdrops */
  --black: #0A0A0A;           /* Primary typography */
  --red: #6E7B4A;             /* Accent — premium olive */
  --gold: #6E7B4A;            /* Accent alias — premium olive */
  --gold-hover: #57612F;
  --gold-light: #F0F2EA;
  --gray-50: #FAFAFA;
  --gray-100: #F2F2F2;
  --gray-200: #E5E5E5;
  --gray-400: #8A8A8A;
  --gray-600: #4A4A4A;
  --gray-800: #1A1A1A;
  --success: #2D7A4F;
  --warning: #B45309;
  --error: #C0392B;
  --font-display: "Playfair Display", Georgia, 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(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(110, 123, 74, 0.15);
}

/* 🌙 Dark Mode variables */
html[data-theme="dark"] {
  --off-white: #0A0A0A;
  --white: #141414;
  --black: #F5F5F5;
  --red: #8FA05E;              /* Accent — lighter olive for dark mode */
  --gold: #8FA05E;
  --gold-hover: #A6B876;
  --gold-light: #1A1D14;
  --gray-50: #151515;
  --gray-100: #1E1E1E;
  --gray-200: #2A2A2A;
  --gray-400: #9A9A9A;
  --gray-600: #C7C7C7;
  --gray-800: #F5F5F5;
  --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(143, 160, 94, 0.18);
}

/* ─── 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(110, 123, 74, 0.6) 45%, rgba(110, 123, 74, 0.6) 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(110, 123, 74, .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 — fixed, transparent over hero ─── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  color: #FFFFFF;
}
#site-header.scrolled {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
  color: var(--black);
}
html[data-theme="dark"] #site-header.scrolled {
  background: rgba(10,10,10,0.75);
}
.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;
}
.logo-img {
  height: 64px;
  width: auto;
  display: block;
}
/* Default: transparent header over dark hero → show the dark-bg (light-colored) logo */
.logo-img-light {
  display: none;
}
.logo-img-dark {
  display: block;
}
#site-header.scrolled .logo-img-light {
  display: block;
}
#site-header.scrolled .logo-img-dark {
  display: none;
}
html[data-theme="dark"] #site-header.scrolled .logo-img-light {
  display: none;
}
html[data-theme="dark"] #site-header.scrolled .logo-img-dark {
  display: block;
}

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

/* Search Bar — row 2, frosted pill, cut corners */
.nav-search-row {
  display: flex;
  justify-content: center;
  padding-bottom: 16px;
}
.search-wrap {
  width: 100%;
  max-width: 460px;
  position: relative;
  display: flex;
  align-items: center;
}
.search-icon-lead {
  position: absolute;
  left: 16px;
  color: rgba(255,255,255,0.7);
  pointer-events: none;
  transition: color 0.3s ease;
}
#site-header.scrolled .search-icon-lead {
  color: var(--gray-400);
}
.search-wrap input {
  width: 100%;
  height: 42px;
  padding: 0 16px 0 42px;
  border: 1px solid rgba(255,255,255,0.35);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  font-size: 13px;
  color: #FFFFFF;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition);
  outline: none;
}
#site-header.scrolled .search-wrap input {
  color: var(--black);
  background: var(--gray-50);
  border-color: var(--gray-200);
}
.search-wrap input::placeholder {
  color: rgba(255,255,255,0.65);
}
#site-header.scrolled .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;
}
.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: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
#site-header.scrolled .nav-link {
  color: var(--gray-600);
}
.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 */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-btn {
  padding: 4px 6px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: all var(--transition);
  letter-spacing: 0.5px;
}
#site-header.scrolled .lang-btn {
  color: var(--gray-400);
}
.lang-btn:hover {
  color: #FFFFFF;
}
#site-header.scrolled .lang-btn:hover {
  color: var(--black);
}
.lang-btn.active {
  color: var(--gold);
  font-weight: 700;
}

/* Cart Button */
.cart-btn {
  position: relative;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
  color: #FFFFFF;
}
#site-header.scrolled .cart-btn {
  color: var(--black);
}
.cart-btn:hover {
  color: var(--gold);
}
#site-header:not(.scrolled) .theme-btn {
  color: #FFFFFF;
}
#site-header:not(.scrolled) .theme-btn:hover {
  background: rgba(255,255,255,0.12);
  color: #FFFFFF;
}
.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 ─────────────────────────────────────────── */
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 8px;
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,0.12); }
#site-header.scrolled .hamburger:hover { background: var(--gray-100, rgba(0,0,0,0.05)); }
.hamburger span {
  display: block;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.38s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.28s ease, width 0.28s ease, background 0.3s ease;
}
#site-header.scrolled .hamburger span {
  background: var(--black);
}
.hamburger span:nth-child(1) { width: 22px; height: 1.5px; }
.hamburger span:nth-child(2) { width: 14px; height: 1.5px; }
.hamburger span:nth-child(3) { width: 22px; height: 1.5px; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) 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);
}

/* 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 BANNER ─────────────────────────────────────── */
.marquee-bar {
  background: var(--gold);
  color: var(--white);
  overflow: hidden;
  height: 32px;
  display: flex;
  align-items: center;
  letter-spacing: 1.5px;
}
.marquee-track {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  width: 100%;
}
.marquee-item {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

/* ─── HERO SECTION — full-bleed video ───────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 94vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5F5F5;
  text-align: center;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0A0A0A;
}
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.42) 50%, rgba(10,10,10,0.62) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 148px 24px 48px;
  display: flex;
  justify-content: center;
}
.hero-left {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #E4D9C4;
  margin-bottom: 26px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-title {
  font-family: "Fraunces", var(--font-display);
  font-optical-sizing: auto;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1.04;
  font-weight: 440;
  color: #FFFFFF;
  margin-bottom: 26px;
  word-break: break-word;
  max-width: 100%;
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.hero-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245,245,245,0.82);
  max-width: min(500px, 100%);
  margin: 0 auto 38px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

/* ─── 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 {
  --cut: 10px;
  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;
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.btn-primary {
  background: #8FA05E;
  color: #0A0A0A;
  border: 1px solid #8FA05E;
}
.btn-primary:hover {
  background: #A6B876;
  border-color: #A6B876;
  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);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(245,245,245,0.2);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: #FFFFFF;
  font-weight: 400;
}
.stat-label {
  font-size: 11px;
  color: rgba(245,245,245,0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ─── HERO EYEBROW DECORATION ────────────────────────────── */
.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.9;
}

/* ─── 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);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}
.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;
}

/* ─── 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(5, 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: 12px;
  font-weight: 600;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.view-all-link:hover {
  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;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.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 .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); }

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.3;
}
.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 16px;
}
.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);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.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);
}

.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);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 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(110,123,74,0.7), transparent);
  margin: 0 auto;
}

/* ─── FEATURED BANNER ────────────────────────────────────── */
.featured-banner {
  background: var(--black);
  border: none;
  margin: 0 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}
.featured-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 100% at 15% 50%, rgba(110,123,74,0.13) 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: var(--off-white);
  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: var(--gray-400);
  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(110,123,74,0.45);
  border-left: 1px solid rgba(110,123,74,0.45);
}
.banner-corner-bl {
  bottom: 20px;
  left: 20px;
  border-bottom: 1px solid rgba(110,123,74,0.45);
  border-left: 1px solid rgba(110,123,74,0.45);
}

.banner-right {
  background: #1a1714;
  overflow: hidden;
  position: relative;
}
.banner-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--black) 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);
}

.wa-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
  z-index: 900;
  transition: transform var(--transition);
}
.wa-btn:hover {
  transform: scale(1.05);
}

/* ─── 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);
  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);
  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);
}
.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);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 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);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 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;
  }
  .hero-inner {
    padding-top: 128px;
  }
  .hero-left {
    max-width: 100%;
  }
  .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, var(--black) 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) {
  .nav-pages {
    display: none;
  }
  .hamburger {
    display: flex !important;
  }
  .nav-right .theme-btn {
    display: flex !important;
  }
  .nav-right .lang-switch {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .nav-search-row {
    padding-bottom: 12px;
  }
  .search-wrap {
    max-width: 100%;
  }
  .section-pad {
    padding: 60px 0;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .product-info {
    padding: 12px;
  }
  .product-name {
    font-size: 13px;
    margin-bottom: 6px;
  }
  .product-pricing {
    gap: 6px;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }
  .price {
    font-size: 13px;
  }
  .price-old {
    font-size: 10px;
  }
  .price-save {
    font-size: 9px;
  }
  .product-actions {
    flex-direction: column;
    gap: 8px;
  }
  .btn-cart,
  .btn-buy {
    height: 44px;
    font-size: 12px;
    letter-spacing: 0.8px;
  }
  .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: 96px;
    gap: 8px;
    scroll-snap-align: start;
  }
  .category-card-media {
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  }
  .category-card-name {
    font-size: 11px;
    letter-spacing: 0.2px;
  }
  .hero-title {
    font-size: clamp(38px, 8vw, 56px);
  }
  .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;
  }
  .hero-stats {
    gap: 12px 20px;
    padding-top: 20px;
    flex-wrap: nowrap;
  }
  .stat-num {
    font-size: 24px;
  }
  .stat-label {
    font-size: 9px;
    letter-spacing: 0.5px;
  }
  .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 .hero-title,
body.lang-ar .section-title,
body.lang-ar .stat-num,
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);
}
body.lang-ar .hero-title em {
  font-style: normal;
}
[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"] .wa-btn {
  left: auto;
  right: 24px;
}
[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;
}
