:root {
  --primary: #FFC003;
  --pink: #FFC003;
  --primary-glow: #E5AB00;
  --primary-soft: rgba(255, 192, 3, .12);
  --foreground: #14181f;
  --muted: #676f7e;
  --bg: #fafaf8;
  --card: #fff;
  --border: #dfe3ea;
  --radius: 16px;
  --header: 64px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Tajawal, Heebo, Arial, sans-serif;
  background: var(--bg);
  color: var(--foreground);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }
.skip { position: absolute; right: -999px; }
.skip:focus { right: 8px; top: 8px; background: #000; color: #fff; padding: 8px 12px; z-index: 99; }

.gradient-primary { background: linear-gradient(135deg, var(--primary), var(--primary-glow)); }
.shadow-glow { box-shadow: 0 0 30px rgba(255, 192, 3, .15); }
.liquid-glass {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid rgba(255,255,255,.25);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.4), 0 8px 32px rgba(0,0,0,.08);
}

.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
}
.header-inner {
  width: 100%;
  padding: 0 24px;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-start { display: flex; align-items: center; gap: 32px; }
.logo { display: flex; align-items: center; color: inherit; }
.logo img { height: 56px; width: auto; border-radius: 0; object-fit: contain; }
.logo-foot { display: flex; align-items: center; color: inherit; }
.logo-foot img { height: 56px; width: auto; border-radius: 0; object-fit: contain; }
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 600;
  font-size: 16px;
  color: rgba(20,24,31,.9);
}
.nav a { transition: color .2s; }
.nav a:hover, .nav a.is-active { color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-link {
  position: relative;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  color: rgba(20,24,31,.7);
}
.icon-link:hover { background: rgba(20,24,31,.05); color: var(--foreground); }
.icon-link small {
  position: absolute; top: 2px; left: 2px;
  background: var(--primary); color: #14181f;
  border-radius: 999px; font-size: 10px; min-width: 16px; height: 16px;
  display: grid; place-items: center; padding: 0 4px;
}
.lang-pill {
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(20,24,31,.7);
  border: 1px solid rgba(20,24,31,.1);
}
.lang-pill:hover { background: rgba(20,24,31,.05); color: var(--foreground); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer; font-weight: 700;
  transition: transform .2s, background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: scale(1.04); }
.btn-pink {
  background: linear-gradient(135deg, var(--primary), var(--primary-glow));
  color: #14181f;
  border-radius: 12px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
}
.btn-hero {
  padding: 20px 40px;
  border-radius: 16px;
  font-size: 20px;
  font-weight: 700;
  color: #14181f;
  background: linear-gradient(135deg, var(--primary), var(--primary-glow));
  box-shadow: 0 0 30px rgba(255, 192, 3, .15);
  position: relative;
  overflow: hidden;
}
.btn-hero-outline {
  padding: 20px 32px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 600;
  border: 2px solid rgba(255, 192, 3, .3);
  background: transparent;
  color: var(--foreground);
}
.btn-hero-outline:hover { border-color: var(--primary); background: rgba(255, 192, 3,.05); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 999px;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 700;
}
.btn-outline:hover { background: var(--primary); color: #14181f; transform: none; }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: rgba(20,24,31,.7); }

.gradient-mesh {
  background:
    radial-gradient(at 20% 50%, rgba(255, 192, 3, .15) 0%, transparent 50%),
    radial-gradient(at 80% 20%, rgba(255, 193, 7, .1) 0%, transparent 50%),
    radial-gradient(at 50% 80%, rgba(240, 232, 219, .3) 0%, transparent 50%),
    linear-gradient(135deg, #fafaf8, #f5f0f0, #faf5f8);
  background-size: 140% 140%;
  animation: gradient-shift 12s ease-in-out infinite alternate;
}
@keyframes gradient-shift {
  0% { background-position: 0% 0%, 100% 0%, 50% 100%, 0% 0%; }
  100% { background-position: 100% 100%, 0% 100%, 50% 0%, 0% 0%; }
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 100vh;
}
.hero-copy {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 80rem;
  margin-right: 0;
  margin-left: auto;
  padding: 112px 48px 48px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  justify-content: center;
  min-height: 100vh;
}
.hero-logo-wrap { position: relative; margin-bottom: 8px; }
.hero-logo-wrap::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-glow));
  filter: blur(32px); opacity: .3; border-radius: 999px; transform: scale(1.5);
}
.hero-logo { position: relative; height: 128px; width: auto; border-radius: 16px; object-fit: contain; }
.careers-logo { height: 90px; width: auto; margin: 0 auto 12px; border-radius: 12px; object-fit: contain; }
.careers-stats { max-width: 980px; margin: 0 auto; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
.careers-jobs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}
.careers-job-desc { color: var(--muted); font-size: 14px; margin: 0 0 12px; line-height: 1.6; }
.hero h1 {
  font-weight: 800;
  color: var(--foreground);
  line-height: 1.15;
  letter-spacing: -.04em;
  font-size: clamp(48px, 8vw, 128px);
  margin: 0 0 16px;
}
.hero h1 span {
  color: var(--primary);
  text-shadow: 0 0 40px rgba(255, 192, 3, .4), 0 0 80px rgba(255, 192, 3, .2);
}
.hero p.lead {
  font-size: clamp(16px, 2vw, 24px);
  color: var(--muted);
  max-width: 32rem;
  margin: 0 0 24px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }

.hero-mosaic {
  display: none;
  position: absolute;
  inset-block: 0;
  left: 0;
  width: 50%;
  z-index: 0;
  gap: 12px;
  padding: 12px 12px 0;
}
.hero-col { flex: 1; height: 100%; overflow: hidden; }
.hero-track { display: flex; flex-direction: column; gap: 12px; }
.hero-track.up { animation: marquee-up 42s linear infinite; }
.hero-track.down { animation: marquee-down 48s linear infinite; }
@keyframes marquee-up { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes marquee-down { from { transform: translateY(-50%); } to { transform: translateY(0); } }
.tile {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.1);
  background: #ddd;
}
.tile img, .tile video { width: 100%; height: 100%; object-fit: cover; }
.tile span {
  position: absolute; bottom: 12px; left: 12px;
  color: #fff; font-size: 12px; letter-spacing: .18em; font-weight: 700;
  text-shadow: 0 1px 8px rgba(0,0,0,.45);
}
.hero-mosaic-mobile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 8px 24px 40px;
}
.hero-mosaic-mobile .tile { aspect-ratio: 3 / 4; min-height: 0; }

.marquee-wrap { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; }
.marquee { display: flex; gap: 48px; padding: 18px 0; width: max-content; animation: slide 28s linear infinite; align-items: center; }
.marquee img { height: 28px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .75; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(50%); } }

.section { padding: 64px 20px; max-width: 1280px; margin: 0 auto; }
.section h2 {
  text-align: center;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin: 0 0 8px;
  font-family: Heebo, Tajawal, sans-serif;
  font-size: clamp(22px, 3vw, 30px);
}
.section .sub { text-align: center; color: var(--muted); margin: 0 0 8px; }
.tabs { display: flex; justify-content: center; gap: 8px; margin: 18px 0 28px; }
.chip {
  border: 0; background: transparent; border-radius: 999px;
  padding: 8px 20px; cursor: pointer; font-weight: 600; font-size: 14px;
  color: var(--muted);
}
.chip.is-on {
  background: linear-gradient(135deg, var(--primary), var(--primary-glow));
  color: #fff;
  box-shadow: 0 0 30px rgba(255, 192, 3, .15);
}
.type-badge.is-lens { background: #ede9fe; color: #5b21b6; }
.grid-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card {
  display: block;
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px -2px rgba(20,24,31,.06);
  border: 1px solid rgba(223,227,234,.4);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px -8px rgba(20,24,31,.12);
  border-color: rgba(255, 192, 3,.3);
}
.card-img {
  position: relative;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,255,255,.92) 0%, rgba(250,249,247,.7) 70%, rgba(245,244,242,.5) 100%);
  overflow: hidden;
}
.card-img img.product { width: 100%; height: 100%; object-fit: contain; padding: 16px; transition: transform .5s; }
.card:hover .card-img img.product { transform: scale(1.05); }
.card-brand-logo {
  position: absolute; top: 12px; left: 12px;
  width: 64px; height: 64px;
  display: grid; place-items: center; opacity: .7; pointer-events: none;
}
.card-brand-logo img { max-height: 100%; max-width: 100%; object-fit: contain; }
.card-badge {
  position: absolute; top: 8px; right: 8px;
  background: #fff; color: #e11d48;
  font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  border: 1px solid rgba(225,29,72,.2);
  z-index: 2;
}
.card-body { padding: 10px 12px 14px; }
.card-brand { font-size: 12px; color: var(--muted); font-weight: 700; }
.card-code { margin: 2px 0 6px; font-size: 14px; }
.price { font-weight: 800; }
.price s { color: #999; font-weight: 500; margin-inline-start: 6px; }
.price.is-lens-pack { display: flex; flex-direction: column; gap: 2px; }
.price.is-lens-pack .price-main { font-weight: 800; line-height: 1.3; }
.price.is-lens-pack .price-main small {
  margin-inline-start: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}
.price.is-lens-pack .price-alt {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.center { text-align: center; margin-top: 28px; }

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}
.cta-band-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e);
}
.cta-band-inner { position: relative; max-width: 48rem; margin: 0 auto; }
.cta-icon {
  width: 80px; height: 80px; margin: 0 auto 24px;
  border-radius: 999px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
}
.cta-band h2 { color: #fff; letter-spacing: 0; text-transform: none; font-size: clamp(28px, 4vw, 48px); margin: 0 0 12px; font-family: Tajawal, sans-serif; }
.cta-band p { color: rgba(255,255,255,.6); font-size: 18px; max-width: 28rem; margin: 0 auto 24px; }
.btn-glass {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 12px; font-weight: 700; color: #fff;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(24px) saturate(1.8);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.btn-glass:hover { transform: scale(1.05); }

.footer {
  position: relative;
  background: #1a1a2e;
  color: rgba(255,255,255,.8);
  padding: 56px 24px 32px;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255, 192, 3,.1), transparent, rgba(255, 192, 3,.05));
  pointer-events: none;
}
.footer-grid {
  position: relative;
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1.2fr 1fr 1.1fr; gap: 36px;
}
.footer h3 { margin: 0 0 12px; font-size: 16px; color: #fff; }
.footer a { display: block; color: rgba(255,255,255,.6); margin: 8px 0; font-size: 14px; }
.footer a:hover { color: #fff; }
.footer .muted { color: rgba(255,255,255,.5); font-size: 14px; max-width: 260px; }
.footer-addr {
  color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.5; margin: 0 0 12px; max-width: none;
}
.footer-addr strong { display: block; color: rgba(255,255,255,.85); margin-bottom: 2px; }
.footer-contact { margin: 14px 0 4px; color: #fff; font-size: 13px; }
.footer-phone { direction: ltr; text-align: right; }
.footer-app-title { margin-top: 22px; }
.app-store-btn {
  display: inline-block; margin: 6px 8px 0 0; padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.2); border-radius: 10px;
  color: #fff !important; font-size: 13px; font-weight: 700;
}
.app-store-btn:hover { background: rgba(255, 192, 3,.35); }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 40px; height: 40px; margin: 0;
  border-radius: 999px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.1);
}
.socials a:hover { background: rgba(255, 192, 3,.4); }
.footer-bottom {
  position: relative;
  max-width: 1280px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
}
.copy {
  margin: 0;
  color: rgba(255,255,255,.4);
  font-size: 13px;
  border: 0;
  padding: 0;
}
.footer-credit {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 !important;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 192, 3, .22);
  background: rgba(255, 192, 3, .06);
  color: rgba(255,255,255,.55) !important;
  font-size: 12px;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}
.footer-credit-label {
  color: rgba(255,255,255,.38);
  font-weight: 500;
}
.footer-credit strong {
  color: var(--primary, #FFC003);
  font-weight: 800;
  letter-spacing: .01em;
}
.footer-credit:hover {
  background: rgba(255, 192, 3, .14);
  border-color: rgba(255, 192, 3, .4);
  color: #fff !important;
}
.footer-credit:hover .footer-credit-label { color: rgba(255,255,255,.7); }
.footer-credit:hover strong { color: #ffe08a; }
@media (max-width: 640px) {
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-credit { width: 100%; justify-content: center; }
}

.page-head { padding: 112px 20px 8px; text-align: center; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 12px 0 8px; }
.search-box { max-width: 560px; margin: 0 auto 16px; position: relative; }
.search-box input {
  width: 100%; border: 1px solid var(--border); border-radius: 999px; padding: 12px 18px; font-size: 15px; background: #fff;
}
.brands-row { display: flex; gap: 10px; overflow: auto; padding: 8px 4px 16px; }
.brands-row a, .brands-row span {
  flex: 0 0 auto; border: 1px solid var(--border); border-radius: 12px; padding: 8px 10px; background: #fff;
  font-size: 12px; font-weight: 700;
}
.brands-row img { height: 22px; }
.pager { display: flex; gap: 8px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }
.pager a { padding: 8px 12px; border: 1px solid var(--border); border-radius: 10px; background: #fff; }
.pager a.is-on { background: var(--primary); color: #14181f; border-color: var(--primary); }

.product-page { padding: 88px 20px 40px; }
.product-layout {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr; gap: 40px;
  align-items: start;
}
.product-back { grid-column: 1 / -1; }
.product-back a { color: var(--muted); font-weight: 600; }
.product-back a:hover { color: var(--primary); }

.gallery { display: flex; flex-direction: column; gap: 12px; }
.gallery-stage {
  display: block; width: 100%; padding: 0; border: 1px solid rgba(255,255,255,.4);
  border-radius: 16px; overflow: hidden; cursor: zoom-in; color: inherit;
  font: inherit; appearance: none; -webkit-appearance: none; text-align: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.92) 0%, rgba(250,249,247,.7) 70%, rgba(245,244,242,.5) 100%);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), inset 0 -1px 0 rgba(0,0,0,.03), 0 4px 24px rgba(0,0,0,.03);
}
.gallery-frame { position: relative; aspect-ratio: 3 / 2; }
.gallery-base, .gallery-zoom {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; padding: 16px 24px; user-select: none;
}
.gallery-base { transition: opacity .2s; }
.gallery-zoom {
  opacity: 0; pointer-events: none; transform: scale(2.5);
  transform-origin: 50% 50%;
}
.gallery-stage.is-zoom .gallery-base { opacity: 0; }
.gallery-stage.is-zoom .gallery-zoom { opacity: 1; }
.gallery-hint {
  position: absolute; bottom: 12px; display: flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(0,0,0,.4); color: rgba(255,255,255,.9);
  font-size: 12px; font-weight: 600; pointer-events: none;
  backdrop-filter: blur(8px);
}
.gallery-hint-hover { right: 12px; opacity: 0; display: none; }
.gallery-hint-tap { left: 50%; transform: translateX(-50%); }
.gallery-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gallery-thumb {
  padding: 0; border: 1px solid rgba(255,255,255,.4); border-radius: 12px;
  overflow: hidden; cursor: pointer; background: transparent;
  transition: border-color .2s;
  font: inherit; appearance: none; -webkit-appearance: none;
}
.gallery-thumb:hover { border-color: rgba(255, 192, 3,.3); }
.gallery-thumb img {
  width: 100%; aspect-ratio: 1; object-fit: contain; padding: 12px;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.92) 0%, rgba(250,249,247,.7) 70%, rgba(245,244,242,.5) 100%);
}

.meta { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 14px; }
.meta-brand-logo { height: 48px; display: flex; align-items: center; }
.meta-brand-logo img { max-height: 100%; max-width: 160px; object-fit: contain; }
.type-badge {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 800;
}
.type-badge.is-sun { background: #fef3c7; color: #92400e; }
.type-badge.is-eye { background: #e0f2fe; color: #075985; }
.type-badge.is-lens { background: #ede9fe; color: #5b21b6; }
.meta h1 { margin: 0; font-size: clamp(24px, 3vw, 30px); font-weight: 800; line-height: 1.25; }
.meta-name { margin: 0; color: var(--muted); font-size: 15px; }
.meta .code { color: var(--muted); font-size: 14px; }
.meta-desc { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.lens-options { display: grid; gap: 14px; margin: 4px 0 8px; }
.opt-title { font-weight: 800; font-size: 15px; }
.opt-hint { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.opt-group { display: grid; gap: 8px; }
.opt-label { font-weight: 700; font-size: 13px; color: var(--muted); }
.opt-select {
  width: 100%; border: 1px solid rgba(20,24,31,.12); border-radius: 12px;
  padding: 12px 14px; font: inherit; background: #fff;
}
.opt-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.opt-chip { cursor: pointer; position: relative; }
.opt-chip input { position: absolute; opacity: 0; pointer-events: none; }
.opt-chip span {
  display: inline-block; padding: 8px 14px; border-radius: 999px;
  border: 1px solid rgba(20,24,31,.12); background: #fff;
  font-size: 13px; font-weight: 700;
}
.opt-chip input:checked + span,
.opt-chip:has(input:checked) span {
  background: var(--foreground); color: #fff; border-color: var(--foreground);
}
.opt-chips.is-package .opt-chip span {
  padding: 12px 18px; font-size: 14px; border-radius: 14px;
}
.big-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; font-size: 30px; font-weight: 800; margin: 0; }
.big-price.is-sale .price-now { color: #e11d48; }
.big-price s { color: var(--muted); font-size: 18px; font-weight: 500; }
.sale-pct { background: rgba(225,29,72,.1); color: #e11d48; font-size: 12px; font-weight: 800; padding: 2px 8px; border-radius: 999px; }
.product-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.product-ctas form { margin: 0; }
.qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 4px 0 14px;
}
.qty-label {
  font-weight: 700;
  font-size: 14px;
}
.qty-stepper {
  display: inline-flex;
  align-items: stretch;
  height: 48px;
  border: 1px solid rgba(20,24,31,.12);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}
.qty-btn {
  width: 44px;
  border: 0;
  background: transparent;
  color: var(--foreground);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
}
.qty-btn:hover { background: rgba(255, 192, 3,.06); color: var(--primary); }
.qty-stepper input[type=number] {
  width: 58px;
  border: 0;
  border-inline: 1px solid rgba(20,24,31,.08);
  background: #fff;
  text-align: center;
  font: inherit;
  font-weight: 800;
  font-size: 16px;
  padding: 0;
  -moz-appearance: textfield;
  appearance: textfield;
}
.qty-stepper input[type=number]::-webkit-outer-spin-button,
.qty-stepper input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.btn-buy {
  width: 100%; background: var(--foreground); color: #fff;
  border-radius: 16px; padding: 16px 24px; font-size: 18px; font-weight: 800;
}
.btn-buy:hover { opacity: .9; transform: none; }
.product-ctas .btn-outline { width: 100%; border-radius: 16px; padding: 12px 24px; }
.btn-wa {
  width: 100%; background: #25d366; color: #fff;
  border-radius: 16px; padding: 12px 24px; font-size: 16px; font-weight: 800;
}
.btn-wa:hover { opacity: .92; transform: none; }
.stock-box {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  border: 1px solid var(--border); border-radius: 16px; padding: 14px 16px; background: #fff;
}
.stock-box strong { font-size: 14px; }

.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(245,244,242,.95); backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none !important; }
.lightbox-close, .lightbox-nav {
  position: absolute; width: 40px; height: 40px; border: 0; border-radius: 999px;
  background: rgba(0,0,0,.1); color: var(--foreground); cursor: pointer;
  display: grid; place-items: center; z-index: 2;
}
.lightbox-close { top: 16px; right: 16px; }
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(0,0,0,.2); }
.lightbox-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-stage { max-width: 90vw; max-height: 80vh; touch-action: pan-y; cursor: zoom-in; }
.lightbox-img { max-width: 90vw; max-height: 80vh; object-fit: contain; user-select: none; display: block; }
.lightbox-pct {
  position: absolute; bottom: 64px; left: 50%; transform: translateX(-50%);
  padding: 4px 12px; border-radius: 999px; background: rgba(0,0,0,.1);
  font-size: 12px; color: rgba(20,24,31,.7);
}
.lightbox-dots {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
}
.lightbox-dot {
  width: 10px; height: 10px; border: 0; border-radius: 999px;
  background: rgba(20,24,31,.25); cursor: pointer; padding: 0;
}
.lightbox-dot.is-on { background: var(--foreground); }

@media (hover: hover) and (pointer: fine) {
  .gallery-hint-hover { display: flex; }
  .gallery-stage:hover .gallery-hint-hover { opacity: 1; }
  .gallery-hint-tap { display: none; }
}
.lead-form, .form-card {
  background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 18px; margin-top: 18px;
  position: relative;
}
label { display: block; font-weight: 700; margin: 10px 0 6px; }
input[type=text], input[type=tel], input[type=email], input[type=number], select, textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 12px; padding: 10px 12px; background: #fff;
}
.hours-list { list-style: none; padding: 0; }
.hours-list li { display: flex; justify-content: space-between; border-bottom: 1px dashed var(--border); padding: 6px 0; }

.branch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.branch-card { background: #fff; border-radius: 18px; padding: 18px; box-shadow: 0 2px 12px -2px rgba(20,24,31,.06); }
.badge { display: inline-block; background: #e8f5e9; color: #2e7d32; border-radius: 999px; padding: 2px 10px; font-size: 12px; font-weight: 700; }
.badge.off { background: #fbe9e7; color: #c62828; }

.branches-map-sec {
  padding: 64px 24px 80px; max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column;
}
.branches-map-sec.is-page { padding-top: 112px; }
.branches-map-sec h2 {
  text-align: center; margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 48px); letter-spacing: 0; text-transform: none;
}
.branches-map-sec .sub { text-align: center; color: var(--muted); margin: 0 0 28px; }
.map-wrap {
  position: relative; width: 100%; height: 450px; border-radius: 18px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.12); margin-bottom: 28px; background: #f5f5f0;
}
.map-canvas { width: 100%; height: 100%; }
.map-tools { position: absolute; bottom: 16px; left: 16px; z-index: 500; display: flex; gap: 8px; }
.map-tool {
  background: rgba(255,255,255,.92); border: 0; border-radius: 10px; padding: 8px 12px;
  font-weight: 700; font-size: 13px; cursor: pointer; box-shadow: 0 4px 14px rgba(0,0,0,.12);
  font-family: inherit;
}
.map-tool:hover { background: #fff; }
.map-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; width: 100%; }
.map-card {
  background: #fff; border: 2px solid #e5e5e5; border-radius: 14px; padding: 16px;
  cursor: pointer; transition: border-color .2s, box-shadow .2s, background .2s, color .2s;
}
.map-card:hover { border-color: #999; box-shadow: 0 6px 18px rgba(0,0,0,.08); }
.map-card.is-on { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.map-card h3 { margin: 0 0 8px; font-size: 15px; }
.map-addr { color: #888; font-size: 13px; margin: 0 0 10px; line-height: 1.5; }
.map-card.is-on .map-addr { color: rgba(255,255,255,.72); }
.map-phones { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; font-size: 13px; }
.map-phones a { color: #3b82f6; direction: ltr; unicode-bidi: embed; }
.map-card.is-on .map-phones a { color: #93c5fd; }
.map-card .btn { width: 100%; justify-content: center; }
.map-card.is-on .btn { background: #fff; color: #1a1a1a; border-color: #fff; }
.branch-pin-inner {
  width: 36px; height: 36px; border-radius: 50%; background: #1a1a1a; border: 2.5px solid #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.4); display: grid; place-items: center;
}
.leaflet-popup-content-wrapper { border-radius: 12px; }
.map-popup { direction: rtl; text-align: right; min-width: 180px; font-family: Tajawal, sans-serif; }
.map-popup h3 { margin: 0 0 6px; font-size: 15px; }
.map-popup p { margin: 0 0 8px; font-size: 13px; color: #666; }
.map-popup .map-tel { display: block; color: #3b82f6; margin-bottom: 8px; direction: ltr; text-align: right; }
.map-popup .map-go {
  display: inline-flex; background: #1a1a1a; color: #fff; border-radius: 6px;
  padding: 6px 12px; font-size: 12px; text-decoration: none;
}
.branch-contact a { display: inline-block; margin-left: 12px; }

.legal { max-width: 860px; margin: 0 auto; padding: 112px 20px 70px; }
.legal h1 { margin-top: 0; }
.legal h2 { margin-top: 28px; }
.legal li { margin: 6px 0; }
.legal.wide { max-width: 1040px; }
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 18px 0 28px; }
.info-card, .info-step {
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 18px;
}
.info-card h3, .info-card h4, .info-step h4 { margin: 0 0 8px; }
.info-period { color: var(--primary); font-weight: 700; margin-bottom: 8px; }
.info-cta {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 22px; margin-top: 28px; text-align: center;
}
.info-cta .btn { display: inline-block; margin: 8px 6px 0; }
@media (max-width: 720px) {
  .info-grid { grid-template-columns: 1fr; }
}
.note { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 16px; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.stat { background: #fff; border-radius: 16px; padding: 18px; text-align: center; box-shadow: 0 2px 12px -2px rgba(20,24,31,.06); }
.stat b { display: block; color: var(--primary); font-size: 32px; }

.alert { background: #e8f5e9; color: #1b5e20; padding: 14px 16px; border-radius: 12px; margin: 16px 0; }
.alert.is-error { background: #fdecea; color: #9b3d3d; }
.book-when { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 4px; }
.book-note { margin: 10px 0 0; color: #c62828; font-weight: 700; font-size: 14px; }
.book-hint { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
#book-time {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.book-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: 8px;
  margin-top: 8px;
}
.book-slot {
  appearance: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  padding: 10px 6px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  color: var(--text, #14181f);
}
.book-slot:hover { border-color: var(--primary); color: var(--primary); }
.book-slot.is-on {
  background: var(--primary);
  border-color: var(--primary);
  color: #14181f;
}
.branches-map-sec.is-book { padding-top: 12px; }

table.acc { width: 100%; border-collapse: collapse; background: #fff; font-size: 13px; }
table.acc th, table.acc td { border: 1px solid var(--border); padding: 8px; text-align: center; }
table.acc th { background: #f0f0ee; }

.cartier-hero {
  position: relative; min-height: 52vh; background: #111; overflow: hidden;
  display: grid; place-items: end stretch;
}
.cartier-hero video, .cartier-hero img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .75;
}
.cartier-hero-copy {
  position: relative; z-index: 1; color: #fff; padding: 48px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,.55));
}
.cartier-hero-copy h1 { margin: 0 0 8px; font-size: clamp(32px, 5vw, 56px); }
.cartier-block img, .cartier-col img {
  width: 100%; border-radius: 16px; margin-bottom: 14px; max-height: 420px; object-fit: cover;
}
.cartier-page .lead { font-size: 18px; color: var(--muted); }
.tab-panel { display: none; }
.tab-panel.is-on { display: block; }

@media (min-width: 1024px) {
  .hero-mosaic { display: flex; }
  .hero-mosaic-mobile { display: none; }
  .hero-copy { padding-right: 96px; padding-left: 0; width: 50%; margin-right: 0; margin-left: auto; }
}
@media (max-width: 1023px) {
  .hero { min-height: auto; }
  .hero-copy { min-height: auto; padding: 96px 24px 24px; }
  .hero-logo { height: 80px; }
  .nav { display: none; }
  .nav.is-open {
    display: flex; flex-direction: column; position: absolute; top: 64px; right: 0; left: 0;
    background: rgba(255,255,255,.96); padding: 16px 24px; gap: 14px;
    border-bottom: 1px solid var(--border);
    z-index: 60;
  }
  .menu-toggle { display: block; }
}
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .product-layout, .footer-grid { grid-template-columns: 1fr; }
  .meta { position: static; }
  .gallery-base, .gallery-zoom { padding: 12px; }
  .grid-products, .branch-grid, .map-cards { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-hero, .btn-hero-outline { width: 100%; }
}
@media (max-width: 640px) {
  .grid-products { grid-template-columns: 1fr 1fr; gap: 10px; }
  .card-brand-logo { width: 40px; height: 40px; }
  .btn-pink, .lang-pill { display: none; }
  .form-card .btn-pink { display: inline-flex; }
  .map-cards { grid-template-columns: 1fr; }
  .map-wrap { height: 360px; }
  .book-when { grid-template-columns: 1fr; }
  .book-slots { grid-template-columns: repeat(3, 1fr); }
}

.checkout-page { max-width: 1120px; margin: 0 auto; padding: 112px 20px 70px; }
.checkout-page h1 { margin: 0 0 18px; }
.checkout-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; align-items: start; }
.co-card {
  background: #fff; border-radius: 18px; padding: 22px;
  box-shadow: 0 2px 12px -2px rgba(20,24,31,.06);
  border: 1px solid var(--border);
}
.co-card h2 { margin: 0 0 16px; font-size: 20px; }
.co-notice {
  background: #fff4e5; color: #9a6b00; border: 1px solid #ffd9a8;
  padding: 12px 14px; border-radius: 12px; margin-bottom: 14px;
}
.co-notice.is-error { background: #fdecea; color: #9b3d3d; border-color: #f5c2c0; }
.co-label { font-weight: 700; margin: 14px 0 8px; }
.co-fulfill { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.co-option {
  border: 2px solid var(--border); border-radius: 14px; padding: 16px 14px;
  cursor: pointer; display: flex; flex-direction: column; gap: 6px; text-align: center;
}
.co-option input { position: absolute; opacity: 0; pointer-events: none; }
.co-option strong { font-size: 15px; }
.co-option small { color: var(--muted); font-size: 13px; }
.co-option.is-on { border-color: var(--primary); background: rgba(255, 192, 3,.06); }
.co-pickup-box { background: #f4fbf6; border: 1px solid #b7e4c7; border-radius: 14px; padding: 14px; }
.co-pickup-box h3 { margin: 0 0 10px; }
.co-branch-list { display: grid; gap: 8px; margin: 12px 0; }
.co-branch-list p { margin: 2px 0 0; color: var(--muted); font-size: 13px; }
.co-pickup-note { margin: 8px 0 0; font-weight: 700; color: #1b5e20; }
.co-submit { width: 100%; margin-top: 16px; }
.co-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid #f1f1f1; }
.co-item img { width: 72px; height: 72px; object-fit: contain; border-radius: 10px; background: #fafafa; }
.co-item-info { flex: 1; min-width: 0; }
.co-item-name { margin: 0 0 6px; font-weight: 700; }
.co-attrs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 6px; }
.attr-badge { background: #f5f7fb; color: #333; padding: 2px 8px; border-radius: 999px; font-size: 12px; }
.co-item-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 14px; color: #555; }
.co-qty { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--border); border-radius: 999px; padding: 2px 8px; }
.co-qty a { color: inherit; font-weight: 800; }
.co-remove { color: #999; font-size: 18px; padding: 4px; }
.co-coupon { margin: 16px 0; padding: 14px; background: #f8f9fa; border-radius: 12px; }
.co-coupon h3 { margin: 0 0 10px; font-size: 15px; }
.co-coupon-row { display: flex; gap: 8px; }
.co-coupon-row input { flex: 1; }
.co-coupon-row button, .co-coupon-on button {
  background: #1b5e20; color: #fff; border: 0; border-radius: 10px; padding: 10px 14px; font-weight: 700; cursor: pointer;
}
.co-coupon-on { display: flex; justify-content: space-between; align-items: center; background: #d4edda; color: #155724; border-radius: 10px; padding: 10px 12px; }
.co-coupon-on button { background: transparent; color: #c62828; padding: 0; }
.co-totals { display: grid; gap: 8px; }
.total-row { display: flex; justify-content: space-between; font-weight: 700; }
.total-row.is-disc { color: #c62828; }
.total-row.is-total { font-size: 18px; margin-top: 6px; }
.co-item-name a { color: inherit; }
.co-item-brand { color: var(--muted); font-size: 13px; margin-bottom: 6px; }
.cart-added-modal {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  display: flex; align-items: center; justify-content: center;
  z-index: 80; padding: 20px;
}
.cart-added-box {
  background: #fff; border-radius: 18px; padding: 24px 22px;
  width: min(92vw, 420px); text-align: center;
  box-shadow: 0 16px 40px rgba(0,0,0,.2);
}
.cart-added-box h3 { margin: 0 0 8px; }
.cart-added-box p { margin: 0 0 16px; color: var(--muted); }
.cart-added-actions { display: grid; gap: 10px; }
@media (max-width: 900px) {
  .checkout-grid, .co-fulfill { grid-template-columns: 1fr; }
}

/* Site promo popup */
html.promo-open, html.promo-open body { overflow: hidden; }
.site-promo {
  position: fixed; inset: 0; z-index: 120;
  display: grid; place-items: center;
  padding: 18px;
}
.site-promo[hidden] { display: none !important; }
.site-promo-backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 4, 18, .72);
  backdrop-filter: blur(4px);
}
.site-promo-card {
  position: relative; z-index: 1;
  width: min(100%, 420px);
  border-radius: 28px;
  padding: 28px 22px 22px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 20% 15%, rgba(255,255,255,.18) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 22%, rgba(255,255,255,.14) 0 1px, transparent 2px),
    radial-gradient(circle at 50% 8%, rgba(255,255,255,.12) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 30% 80%, rgba(255,255,255,.1) 0 1px, transparent 2px),
    radial-gradient(circle at 85% 70%, rgba(255,255,255,.12) 0 1px, transparent 2px),
    linear-gradient(165deg, #4a0d3a 0%, #2a0630 42%, #14041c 100%);
  box-shadow: 0 24px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.08), 0 0 80px rgba(255, 192, 3, .25);
  animation: promoIn .35s ease;
}
@keyframes promoIn {
  from { opacity: 0; transform: translateY(18px) scale(.96); }
  to { opacity: 1; transform: none; }
}
.site-promo-close {
  position: absolute; top: 12px; inset-inline-start: 12px;
  width: 34px; height: 34px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.25); color: #fff;
  font-size: 22px; line-height: 1; cursor: pointer;
}
.site-promo-badge {
  display: inline-flex; align-items: center; justify-content: center;
  margin: 4px auto 14px; padding: 7px 14px; border-radius: 999px;
  background: rgba(0,0,0,.35); border: 1px solid rgba(255,255,255,.12);
  font-size: 12px; font-weight: 800;
}
.site-promo-title {
  margin: 0 0 10px;
  font-size: clamp(34px, 9vw, 46px);
  line-height: 1.05;
  font-weight: 900;
  color: #FFC003;
  text-shadow: 0 0 28px rgba(255, 192, 3, .45);
}
.site-promo-sub {
  margin: 0 0 8px; font-size: 15px; font-weight: 800; color: #fff;
}
.site-promo-desc {
  margin: 0 0 16px; font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.82); font-weight: 600;
}
.site-promo-live {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 auto 16px; padding: 8px 14px; border-radius: 999px;
  background: rgba(0,0,0,.4); border: 1px solid rgba(255,255,255,.1);
  font-size: 13px; font-weight: 800;
}
.site-promo-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #FFC003;
  box-shadow: 0 0 0 0 rgba(255, 192, 3,.7);
  animation: promoPulse 1.4s infinite;
}
@keyframes promoPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 192, 3,.55); }
  70% { box-shadow: 0 0 0 10px rgba(255, 192, 3,0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 192, 3,0); }
}
.site-promo-code {
  margin: 4px auto 10px;
  padding: 14px 18px;
  width: min(100%, 280px);
  border-radius: 16px;
  border: 1.5px dashed rgba(255,255,255,.45);
  background: rgba(0,0,0,.35);
  font-size: clamp(22px, 6vw, 28px);
  font-weight: 900;
  letter-spacing: .18em;
  color: #FFE8A0;
  user-select: all;
}
.site-promo-hint {
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,.72);
  font-weight: 600;
}
.site-promo-actions { display: grid; gap: 10px; margin-bottom: 14px; }
.site-promo-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; border-radius: 14px; padding: 12px 16px;
  font-weight: 800; font-size: 15px; text-decoration: none; color: #14181f;
  cursor: pointer; border: 0; font-family: inherit;
}
.site-promo-btn.is-primary {
  background: linear-gradient(180deg, #FFC003, #E5AB00);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 28px rgba(255, 192, 3, .28);
}
.site-promo-btn.is-copy {
  background: linear-gradient(180deg, #FFC003, #E5AB00);
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 10px 28px rgba(255, 192, 3, .35);
}
.site-promo-btn.is-copy.is-copied {
  background: linear-gradient(180deg, #2ecc71, #1b9e4b);
  box-shadow: 0 10px 28px rgba(46, 204, 113, .35);
  color: #fff;
}
.site-promo-btn.is-ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.55);
  color: #fff;
}
.site-promo-card.is-coupon .site-promo-title {
  font-size: clamp(28px, 7vw, 38px);
}
.site-promo-note {
  margin: 0; font-size: 11px; line-height: 1.7; color: rgba(255,255,255,.62); font-weight: 600;
}
@media (max-width: 480px) {
  .site-promo-card { padding: 26px 16px 18px; border-radius: 24px; }
}
