:root,
[data-theme="dark"] {
  --bg: #05070c;
  --bg-elevated: #0c111a;
  --bg-card: #101722;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f5f7fb;
  --muted: #94a0b5;
  --accent: #00d084;
  --accent-2: #3dffb0;
  --gold: #f5c16c;
  --sale: #ff5d8f;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  --header-bg: rgba(8, 12, 20, 0.92);
  --topbar: #070b12;
  --drawer: #0b1018;
  --on-accent: #042016;
  --nav-hover: rgba(0, 208, 132, 0.12);
  --badge-bg: rgba(0, 208, 132, 0.16);
  --overlay: rgba(0, 0, 0, 0.6);
  --hero-text: #f5f7fb;
  --hero-muted: #d7deea;
  --hero-shade: linear-gradient(90deg, rgba(5, 7, 12, 0.92) 0%, rgba(5, 7, 12, 0.5) 55%, rgba(5, 7, 12, 0.18) 100%);
  --hero-shade-ltr: linear-gradient(270deg, rgba(5, 7, 12, 0.92) 0%, rgba(5, 7, 12, 0.5) 55%, rgba(5, 7, 12, 0.18) 100%);
  --hero-panel: rgba(10, 16, 26, 0.78);
  --hero-panel-cell: rgba(255, 255, 255, 0.05);
  --hero-copy-bg: transparent;
  --hero-nav: rgba(255, 255, 255, 0.35);
  --wa: #25d366;
  --wa-ink: #d8ffe8;
  --wa-soft: rgba(37, 211, 102, 0.14);
  --wa-line: rgba(37, 211, 102, 0.38);
  --oos-bg: rgba(255, 93, 143, 0.12);
  --oos-text: #ff8fb0;
  --oos-line: rgba(255, 93, 143, 0.35);
  --radius: 18px;
  --max: 1240px;
  color-scheme: dark;
}

[data-theme="light"] {
  --bg: #e8ecf1;
  --bg-elevated: #f2f5f8;
  --bg-card: #f7f9fb;
  --line: rgba(52, 68, 86, 0.12);
  --text: #2c3644;
  --muted: #6a7686;
  --accent: #1a8a64;
  --accent-2: #2aa578;
  --gold: #a67c2a;
  --sale: #c44768;
  --shadow: 0 14px 32px rgba(44, 58, 74, 0.08);
  --header-bg: rgba(242, 245, 248, 0.9);
  --topbar: #dde3ea;
  --drawer: #f2f5f8;
  --on-accent: #f3fbf7;
  --nav-hover: rgba(26, 138, 100, 0.1);
  --badge-bg: rgba(26, 138, 100, 0.12);
  --overlay: rgba(36, 48, 62, 0.38);
  --hero-text: #f5f7fb;
  --hero-muted: #d7deea;
  --hero-shade: linear-gradient(90deg, rgba(5, 7, 12, 0.92) 0%, rgba(5, 7, 12, 0.5) 55%, rgba(5, 7, 12, 0.18) 100%);
  --hero-shade-ltr: linear-gradient(270deg, rgba(5, 7, 12, 0.92) 0%, rgba(5, 7, 12, 0.5) 55%, rgba(5, 7, 12, 0.18) 100%);
  --hero-panel: rgba(247, 249, 251, 0.9);
  --hero-panel-cell: rgba(255, 255, 255, 0.78);
  --hero-copy-bg: transparent;
  --hero-nav: rgba(255, 255, 255, 0.4);
  --wa: #1faa59;
  --wa-ink: #0f5132;
  --wa-soft: rgba(26, 138, 100, 0.12);
  --wa-line: rgba(26, 138, 100, 0.32);
  --oos-bg: rgba(196, 71, 104, 0.1);
  --oos-text: #a33858;
  --oos-line: rgba(196, 71, 104, 0.28);
  color-scheme: light;
}

[data-theme="light"] body {
  background:
    radial-gradient(ellipse 120% 70% at 50% -10%, rgba(26, 138, 100, 0.05), transparent 55%),
    linear-gradient(180deg, #eef2f6 0%, var(--bg) 42%, #e4e9ef 100%);
}

[data-theme="light"] .chip {
  border-color: rgba(26, 138, 100, 0.22);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Tajawal", sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.topbar {
  background: var(--topbar);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  min-height: 38px;
  flex-wrap: wrap;
}
.topbar-actions { display: flex; gap: 8px; align-items: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo img {
  height: 58px;
  width: auto;
  display: block;
  border-radius: 12px;
}
.site-header .logo {
  --logo-mark: 58px;
  position: relative;
  isolation: isolate;
}
.site-header .logo img {
  position: relative;
  z-index: 1;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.4s ease,
    filter 0.4s ease;
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--accent) 32%, transparent),
    0 10px 28px color-mix(in srgb, var(--accent) 16%, transparent);
  animation: logo-float 5.5s ease-in-out infinite;
}
.site-header .logo::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  width: var(--logo-mark);
  height: var(--logo-mark);
  transform: translateY(-50%);
  border-radius: 16px;
  background: radial-gradient(circle at 35% 35%, color-mix(in srgb, var(--accent) 50%, transparent), transparent 72%);
  filter: blur(10px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
  animation: logo-glow-pulse 4s ease-in-out infinite;
}
.site-header .logo::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  width: var(--logo-mark);
  height: var(--logo-mark);
  transform: translateY(-50%);
  border-radius: 12px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 36%, rgba(255, 255, 255, 0.28) 50%, transparent 64%);
  background-size: 220% 100%;
  background-position: 180% 0;
  opacity: 0.75;
  animation: logo-shine 6s ease-in-out infinite;
}
.site-header .logo:hover img,
.site-header .logo:focus-visible img {
  animation: none;
  transform: scale(1.07) rotate(-2deg);
  filter: brightness(1.06);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--accent) 58%, transparent),
    0 14px 36px color-mix(in srgb, var(--accent) 30%, transparent),
    0 0 32px color-mix(in srgb, var(--accent-2) 24%, transparent);
}
.site-header .logo:hover::before,
.site-header .logo:focus-visible::before {
  opacity: 0.95;
  transform: translateY(-50%) scale(1.14);
}
.site-header .logo:hover::after,
.site-header .logo:focus-visible::after {
  animation-duration: 2.8s;
  opacity: 1;
}
@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@keyframes logo-glow-pulse {
  0%, 100% { opacity: 0.45; transform: translateY(-50%) scale(1); }
  50% { opacity: 0.82; transform: translateY(-50%) scale(1.1); }
}
@keyframes logo-shine {
  0%, 70%, 100% { background-position: 180% 0; }
  40% { background-position: -70% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .site-header .logo img,
  .site-header .logo::before,
  .site-header .logo::after {
    animation: none;
  }
  .site-header .logo:hover img,
  .site-header .logo:focus-visible img {
    transform: none;
    filter: none;
  }
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-text strong {
  font-size: 15px;
  letter-spacing: 0.04em;
}
.logo-text small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.header-search {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: auto;
  height: auto;
  background: transparent;
  border: 0;
  border-radius: 999px;
  overflow: visible;
  transition:
    width 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    flex 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}
.header-search.open {
  flex: 0 0 auto;
  width: min(420px, 62vw);
  height: 44px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 42%, var(--line));
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--accent) 18%, transparent),
    0 12px 28px color-mix(in srgb, var(--accent) 12%, transparent);
  background: color-mix(in srgb, var(--bg-elevated) 88%, var(--accent) 12%);
}
.header-search input {
  flex: 1;
  min-width: 0;
  width: 0;
  opacity: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 0;
  outline: none;
  font: inherit;
  transition: opacity 0.24s ease, padding 0.32s ease;
}
.header-search.open input {
  width: auto;
  opacity: 1;
  padding: 11px 8px;
  text-align: start;
}
.search-toggle {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border: 1px solid color-mix(in srgb, var(--accent) 38%, var(--line));
  border-radius: 50%;
  background:
    radial-gradient(
      120% 120% at 30% 18%,
      color-mix(in srgb, var(--accent) 22%, var(--bg-elevated)) 0%,
      var(--bg-elevated) 58%
    );
  color: var(--accent);
  font-weight: 800;
  font-size: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  gap: 0;
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, #fff 14%, transparent),
    0 6px 16px color-mix(in srgb, var(--accent) 12%, transparent);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease,
    width 0.28s ease,
    padding 0.28s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    border-radius 0.2s ease;
}
.search-toggle .search-toggle-ico {
  width: 20px;
  height: 20px;
  display: block;
}
.search-toggle .search-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  display: none;
}
.search-toggle.is-open .search-ico-open {
  display: none !important;
}
.search-toggle.is-open .search-label {
  display: inline !important;
}
.header-search.open .search-toggle.is-open {
  width: auto;
  min-width: 64px;
  padding: 0 14px;
  border-radius: 0;
  border-color: transparent;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 13px;
  box-shadow: none;
}
.search-toggle:hover,
.search-toggle:focus-visible {
  transform: scale(1.04);
}
.search-toggle:active {
  transform: scale(0.96);
}
.search-close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-inline-start: 2px;
  margin-inline-end: 4px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}
.search-close .search-close-ico {
  width: 18px;
  height: 18px;
  display: block;
}
.search-close:hover,
.search-close:focus-visible {
  color: var(--text);
  background: color-mix(in srgb, var(--line) 55%, transparent);
}
.search-close[hidden] {
  display: none !important;
}
.header-search-panel {
  display: contents;
}
.header-search-panel[hidden] {
  display: none !important;
}
.search-submit {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  background: var(--accent);
  color: var(--on-accent);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.search-submit:hover,
.search-submit:focus-visible {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
  margin: 0;
}
.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--nav-hover);
}

.nav-actions { display: flex; align-items: center; gap: 8px; }

.icon-btn, .menu-btn {
  position: relative;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  color: var(--text);
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
}
.menu-btn {
  display: none;
  width: 42px;
  min-width: 42px;
  padding: 0;
  align-items: center;
  justify-content: center;
  font-size: 0;
  color: var(--text);
}
.menu-bars,
.menu-bars::before,
.menu-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease, top 0.22s ease;
}
.menu-bars {
  position: relative;
}
.menu-bars::before,
.menu-bars::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
}
.menu-bars::before { top: -6px; }
.menu-bars::after { top: 6px; }
body.nav-open .menu-bars { background: transparent; }
body.nav-open .menu-bars::before {
  top: 0;
  transform: rotate(45deg);
}
body.nav-open .menu-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.btn-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-start: auto;
  background: var(--accent);
  color: var(--on-accent);
  border: 0;
  border-radius: 12px;
  height: 42px;
  padding: 0 16px;
  font-weight: 800;
  cursor: pointer;
}
.cart-count {
  position: absolute;
  top: -6px;
  inset-inline-end: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #fff;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
  pointer-events: none;
}
[data-theme="light"] .cart-count {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}

.hero-slider {
  margin: 0;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  min-height: clamp(360px, 48vw, 520px);
  background: var(--bg);
  touch-action: pan-y;
}
.slider-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.slider-track {
  display: flex;
  align-items: stretch;
  height: 100%;
  width: 100%;
  transition: transform 0.85s cubic-bezier(0.45, 0.05, 0.25, 1);
  will-change: transform;
  direction: ltr;
}
.slider-panel {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  align-self: stretch;
  background: center/cover no-repeat;
}
.slider-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--hero-shade);
}
[dir="ltr"] .slider-shade {
  background: var(--hero-shade-ltr);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  padding: 48px 0;
  align-items: center;
  min-height: 520px;
  color: var(--hero-text);
  cursor: pointer;
}
.hero-inner > div:first-child {
  background: var(--hero-copy-bg);
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 0;
  backdrop-filter: none;
  box-shadow: none;
}
.hero-inner > div:first-child,
.hero-inner .spec-card {
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.45, 0.05, 0.25, 1);
}
.hero-slider.is-sliding .hero-inner > div:first-child,
.hero-slider.is-sliding .spec-card {
  opacity: 0;
  transform: translateX(-24px);
}
[dir="ltr"] .hero-slider.is-sliding .hero-inner > div:first-child,
[dir="ltr"] .hero-slider.is-sliding .spec-card {
  transform: translateX(24px);
}

.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.chip {
  background: var(--badge-bg);
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 800;
}

.hero-slider h1 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--hero-text);
}
.hero-slider .lead {
  color: var(--hero-muted);
  max-width: 540px;
}
.hero-slider .muted {
  color: var(--hero-muted);
}
.slide-price { font-size: 1.8rem; font-weight: 800; color: var(--accent); margin: 16px 0; }
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.hero-cta .btn-ghost {
  color: var(--hero-text);
  border-color: color-mix(in srgb, var(--hero-text) 28%, transparent);
  background: color-mix(in srgb, var(--hero-panel) 55%, transparent);
}
.hero-cta .btn-whatsapp {
  color: var(--wa-ink);
  background: color-mix(in srgb, var(--wa) 22%, transparent);
  border-color: color-mix(in srgb, var(--wa) 45%, transparent);
}
[data-theme="light"] .hero-cta .btn-whatsapp {
  color: #eafff3;
  background: color-mix(in srgb, var(--wa) 28%, rgba(0, 0, 0, 0.25));
  border-color: color-mix(in srgb, var(--wa) 50%, transparent);
}

.spec-card {
  background: var(--hero-panel);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  box-shadow: var(--shadow);
}
.spec-card div {
  background: var(--hero-panel-cell);
  border-radius: 14px;
  padding: 12px;
}
.spec-card span { display: block; color: var(--hero-muted); font-size: 12px; }
.spec-card b { color: var(--accent); }

.slider-nav {
  position: absolute;
  inset-inline-start: 18px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
}
.dots { display: flex; gap: 6px; }
.dots button, .slider-nav .icon-btn {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: var(--hero-nav);
  color: var(--hero-text);
  cursor: pointer;
  padding: 0;
  min-width: 10px;
}
.dots button.on { width: 22px; background: var(--accent); }
.slider-nav .icon-btn {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border: 1px solid var(--line);
  background: var(--hero-panel);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 12px;
  padding: 11px 18px;
  font-weight: 800;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  background-image: linear-gradient(
    180deg,
    color-mix(in srgb, var(--accent) 82%, #fff) 0%,
    var(--accent) 48%,
    color-mix(in srgb, var(--accent) 82%, #000) 100%
  );
  color: var(--on-accent);
  border: 1px solid color-mix(in srgb, var(--accent) 55%, #000 18%);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, #fff 22%, transparent),
    0 8px 18px color-mix(in srgb, var(--accent) 18%, transparent);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}
.btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, #fff 26%, transparent),
    0 12px 26px color-mix(in srgb, var(--accent) 28%, transparent);
}
.btn-primary:active:not(:disabled) {
  transform: translateY(0);
  filter: brightness(0.98);
}
.btn-primary .cart-ico {
  width: 1.05em;
  height: 1.05em;
  flex-shrink: 0;
}

[data-theme="light"] .btn-primary {
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, #fff 35%, transparent),
    0 6px 14px color-mix(in srgb, var(--accent) 16%, transparent);
}
[data-theme="light"] .btn-primary:hover:not(:disabled) {
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, #fff 40%, transparent),
    0 10px 22px color-mix(in srgb, var(--accent) 22%, transparent);
}
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.btn-lg {
  width: 100%;
  min-height: 52px;
  font-size: 1.05rem;
  margin-top: 4px;
}
.btn-whatsapp {
  background: var(--wa-soft);
  color: var(--wa);
  border: 1px solid var(--wa-line);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn-whatsapp:hover:not(:disabled) {
  background: color-mix(in srgb, var(--wa) 22%, transparent);
  border-color: color-mix(in srgb, var(--wa) 55%, var(--line));
  color: var(--wa);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px color-mix(in srgb, var(--wa) 18%, transparent);
}
.btn-whatsapp .wa-ico {
  width: 1.05em;
  height: 1.05em;
  flex-shrink: 0;
}
.btn-whatsapp.btn-lg {
  background: var(--wa);
  color: #fff;
  border-color: transparent;
}
.btn-whatsapp.btn-lg:hover:not(:disabled) {
  background: color-mix(in srgb, var(--wa) 88%, #000);
  color: #fff;
}
.btn-whatsapp.btn-whatsapp-inquiry,
.hero-cta .btn-whatsapp.btn-whatsapp-inquiry {
  background: var(--wa);
  color: #fff;
  border-color: transparent;
  font-weight: 800;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--wa) 26%, transparent);
}
.btn-whatsapp.btn-whatsapp-inquiry:hover:not(:disabled),
.hero-cta .btn-whatsapp.btn-whatsapp-inquiry:hover:not(:disabled) {
  background: color-mix(in srgb, var(--wa) 88%, #000);
  color: #fff;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px color-mix(in srgb, var(--wa) 32%, transparent);
}
.pc-actions .btn-compact {
  padding: 10px 12px;
  font-size: 0.92rem;
  min-height: 42px;
  white-space: nowrap;
}
.pdp-cta-row.is-wa-only {
  grid-template-columns: 1fr;
}
html.cart-disabled .btn-cart,
html.cart-disabled [data-drawer],
html.cart-disabled [data-overlay][data-close-cart] {
  display: none !important;
}

.pdp-cta {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.pdp-cta-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 10px;
}
.pdp-cta-row .btn,
.pdp-cta > .btn {
  width: 100%;
  min-height: 48px;
}
.btn-oos {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  padding: 11px 18px;
  font-weight: 800;
  cursor: default;
  background: var(--oos-bg);
  color: var(--oos-text);
  border: 1px solid var(--oos-line);
  letter-spacing: 0.01em;
}
.btn-oos .oos-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px color-mix(in srgb, currentColor 22%, transparent);
  flex-shrink: 0;
}
@media (max-width: 560px) {
  .pdp-cta-row { grid-template-columns: 1fr; }
}

.hero-cta .btn-whatsapp {
  min-height: 44px;
}

.section { padding: 42px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 20px;
}
.eyebrow { color: var(--accent); font-weight: 800; }
.muted { color: var(--muted); }

.office-gallery-section { padding: 36px 0; }
.office-gallery-head {
  margin-bottom: 16px;
  text-align: start;
}
.office-gallery-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.office-gallery-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr 1.15fr;
  grid-template-rows: 1.2fr 1fr;
  grid-template-areas:
    "tall wide wide"
    "tall b1 b2";
  gap: 10px;
  height: min(360px, 38vw);
}
.office-gallery-cell {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--bg-elevated);
  min-height: 0;
}
.office-gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.office-gallery-cell:hover img {
  transform: scale(1.03);
}
.office-gallery-cell--empty {
  background: color-mix(in srgb, var(--line) 70%, transparent);
}

.product-slider-section:focus-within .product-slider-viewport {
  cursor: grab;
}

.hero-slider.is-image-only .hero-inner {
  display: none;
}

.hero-slider.is-no-specs .hero-inner {
  grid-template-columns: 1fr;
}

.hero-slider.is-no-specs .spec-card {
  display: none;
}

.hero-slider.is-hero-text-center:not(.is-image-only) .hero-inner,
.hero-inner[data-text-position="center"] {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, 4vw);
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  text-align: center;
}

.hero-slider.is-hero-text-center .hero-inner > div:first-child,
.hero-inner[data-text-position="center"] > div:first-child {
  width: min(100%, 720px);
  margin-inline: auto;
}

.hero-slider.is-hero-text-center .chips,
.hero-slider.is-hero-text-center .hero-cta,
.hero-inner[data-text-position="center"] .chips,
.hero-inner[data-text-position="center"] .hero-cta {
  justify-content: center;
}

.hero-slider.is-hero-text-center .lead,
.hero-inner[data-text-position="center"] .lead {
  margin-inline: auto;
}

.hero-slider.is-hero-text-center .spec-card:not([hidden]) {
  width: min(100%, 520px);
}

.hero-slider.is-hero-text-right:not(.is-image-only) .hero-inner,
.hero-inner[data-text-position="right"] {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, 4vw);
  justify-items: start;
}

.hero-slider.is-hero-text-right .hero-inner > div:first-child,
.hero-inner[data-text-position="right"] > div:first-child {
  justify-self: start;
  text-align: start;
  width: min(100%, 720px);
}

.hero-slider.is-hero-text-right .chips,
.hero-slider.is-hero-text-right .hero-cta,
.hero-inner[data-text-position="right"] .chips,
.hero-inner[data-text-position="right"] .hero-cta {
  justify-content: flex-start;
}

.hero-slider.is-hero-text-right:not(.is-no-specs) .hero-inner {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.hero-slider.is-image-only .slider-shade {
  opacity: 0.08;
}

.header-brands[hidden] {
  display: none;
}

.header-brands {
  border-bottom: 1px solid var(--line);
  background: var(--bg-elevated);
}
.header-brands-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
  justify-content: safe center;
  padding: 10px 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
}
.header-brands-track::-webkit-scrollbar { display: none; }
.header-brands-track.is-panning,
.cat-grid.is-panning {
  cursor: grabbing;
  scroll-behavior: auto;
}
.header-brand-link {
  flex: 0 0 auto;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  white-space: nowrap;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.header-brand-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--badge-bg);
}

.catalog-page {
  padding: 0;
  min-height: calc(100dvh - 120px);
}
.catalog-shell {
  display: grid;
  grid-template-columns: minmax(280px, 300px) minmax(0, 1fr);
  align-items: stretch;
  direction: ltr;
  min-height: inherit;
}
.catalog-shell > * { direction: rtl; }

.shop-filters {
  position: sticky;
  top: 0;
  align-self: start;
  height: calc(100dvh - 52px);
  max-height: calc(100dvh - 52px);
  border-inline-end: 1px solid var(--line);
  background: var(--bg-elevated);
  z-index: 20;
}
.filter-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.filter-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-card);
  flex-shrink: 0;
}
.filter-panel-title {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.filter-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--badge-bg);
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
}
.filter-panel-head h2 { font-size: 1.05rem; margin: 0; }
.filter-panel-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.filter-close-btn {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.filter-panel-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 18px 22px 22px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.filter-panel-foot {
  display: none;
  padding: 14px 22px 18px;
  border-top: 1px solid var(--line);
  background: var(--bg-card);
  flex-shrink: 0;
  gap: 10px;
}
.filter-foot-count { font-size: 13px; text-align: center; }
.btn-block { width: 100%; justify-content: center; }

.catalog-main {
  min-width: 0;
  padding: 28px 0 48px;
}
.catalog-main-inner { max-width: var(--max); }
.catalog-page-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 22px;
}
.filter-mobile-toggle { display: none; }
.filter-toggle-icon { font-size: 14px; opacity: 0.85; }
.filter-active-badge {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 11px;
  font-weight: 800;
  display: inline-grid;
  place-items: center;
}

.filter-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--overlay);
  z-index: 45;
  backdrop-filter: blur(2px);
}
body.filters-open .filter-backdrop { display: block; }
body.filters-open,
body.nav-open { overflow: hidden; }

.btn-sm { padding: 6px 12px; font-size: 13px; }
.filter-block + .filter-block {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.filter-block h3 {
  font-size: 0.88rem;
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.02em;
}
.price-range-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.price-field {
  display: grid;
  gap: 6px;
}
.price-field span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}
.price-range-inputs input,
.price-field input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
  transition: border-color 0.15s ease;
}
.price-range-inputs input:focus,
.price-field input:focus {
  outline: none;
  border-color: var(--accent);
}
.filter-select { width: 100%; }
.filter-checks {
  display: grid;
  gap: 6px;
}
.filter-block-brands .filter-checks {
  max-height: none;
}
.filter-check {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  cursor: pointer;
  font-weight: 700;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.filter-check:has(input:checked) {
  border-color: var(--accent);
  background: var(--nav-hover);
}
.filter-check:hover { background: var(--nav-hover); }
.filter-check input { accent-color: var(--accent); width: 16px; height: 16px; }
.filter-check small {
  color: var(--muted);
  font-size: 12px;
  background: var(--bg);
  padding: 2px 8px;
  border-radius: 999px;
}
.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.catalog-toolbar .search { flex: 1; min-width: 180px; }
.catalog-count { margin-inline-start: auto; font-weight: 800; white-space: nowrap; }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.catalog-grid .product-card {
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.catalog-grid .product-card:hover {
  border-color: rgba(0, 208, 132, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
[data-theme="light"] .catalog-grid .product-card:hover {
  border-color: rgba(26, 138, 100, 0.3);
}
.catalog-grid .pc-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(165deg, var(--bg) 0%, var(--bg-card) 55%, var(--bg-elevated) 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.catalog-grid .pc-media img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  padding: 14px 16px;
  transition: transform 0.35s ease;
}
.catalog-grid .product-card:hover .pc-media img { transform: scale(1.05); }
.catalog-grid .card-body {
  padding: 16px 18px 18px;
  gap: 8px;
}
.catalog-grid .card-body h3 {
  font-size: 1.02rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.catalog-grid .card-body h3 a {
  color: inherit;
  text-decoration: none;
}
.catalog-grid .card-body h3 a:hover { color: var(--accent); }
.catalog-grid .card-body .muted,
.catalog-grid .card-body .pc-specs {
  font-size: 0.72rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.catalog-grid .pc-actions { margin-top: 10px; }
.catalog-grid .price b { font-size: 1.12rem; }

.catalog-grid:has(.catalog-empty) {
  display: block;
}
.catalog-empty {
  grid-column: 1 / -1;
  min-height: min(560px, calc(100dvh - 320px));
  display: grid;
  place-items: stretch;
  padding: 8px 0 24px;
}
.catalog-empty-card {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(0, 208, 132, 0.08), transparent 55%),
    linear-gradient(165deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: inherit;
  display: grid;
  place-items: center;
}
.catalog-empty-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 40px 36px;
  width: 100%;
  max-width: 720px;
}
.catalog-empty-visual {
  position: relative;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.catalog-empty-glow {
  position: absolute;
  width: 120px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 208, 132, 0.22) 0%, transparent 68%);
  filter: blur(6px);
}
.catalog-empty-icon {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: var(--badge-bg);
  color: var(--accent);
  border: 1px solid rgba(0, 208, 132, 0.22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}
.catalog-empty-icon svg { width: 44px; height: 44px; }
.catalog-empty-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.catalog-empty-body h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.35;
}
.catalog-empty-lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 52ch;
}
.catalog-empty-lead strong { color: var(--accent); }
.catalog-empty-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.catalog-empty-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
}
.catalog-empty-note { margin: 0; line-height: 1.6; }
.catalog-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.catalog-empty-actions .btn-lg {
  width: auto;
  min-width: 160px;
  min-height: 48px;
  margin-top: 0;
}
[data-theme="light"] .catalog-empty-card {
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(26, 138, 100, 0.06), transparent 55%),
    linear-gradient(165deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
}

@media (max-width: 960px) {
  .catalog-empty-main {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 28px 22px;
  }
  .catalog-empty-body {
    align-items: center;
  }
  .catalog-empty-chips {
    justify-content: center;
  }
  .catalog-empty-actions .btn-lg {
    flex: 1 1 140px;
  }
}

@media (max-width: 640px) {
  .catalog-empty {
    min-height: auto;
    padding: 0;
  }
  .catalog-empty-actions {
    flex-direction: column;
    width: 100%;
  }
  .catalog-empty-actions .btn-lg {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .catalog-shell {
    grid-template-columns: 1fr;
    direction: rtl;
  }
  .shop-filters {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(340px, 92vw);
    height: 100dvh;
    max-height: none;
    z-index: 50;
    transform: translateX(-105%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    border-inline-end: none;
    box-shadow: var(--shadow);
  }
  body.filters-open .shop-filters { transform: none; }
  .filter-close-btn { display: inline-grid; place-items: center; }
  .filter-panel-foot { display: grid; }
  .filter-mobile-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }
  .catalog-toolbar .search { min-width: 100%; order: 3; }
  .catalog-count { margin-inline-start: 0; width: 100%; order: 4; }
  .catalog-main { padding: 20px 0 40px; }
  .catalog-page-head { margin-bottom: 16px; }
  .catalog-page-head h1 { font-size: 1.45rem; }
}

@media (max-width: 560px) {
  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .catalog-grid .pc-media { aspect-ratio: 16 / 10; }
  .catalog-toolbar {
    padding: 12px;
    gap: 8px;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-slider-section { overflow: hidden; }
.product-slider-section:focus-within { outline: none; }
.product-slider-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  min-width: 0;
}
.product-slider-section .container {
  min-width: 0;
}
.product-slider-viewport {
  overflow: hidden;
  width: 100%;
  min-width: 0;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.product-slider-viewport.is-native-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
  cursor: auto;
  direction: ltr;
}
.product-slider-viewport.is-native-scroll::-webkit-scrollbar {
  display: none;
}
.product-slider-viewport.is-native-scroll .product-slider-track {
  transform: none !important;
  transition: none !important;
  width: max-content;
}
.product-slider-viewport.is-native-scroll .product-card {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.product-slider-viewport.is-dragging {
  cursor: grabbing;
}
.product-slider-viewport.is-dragging .product-card {
  pointer-events: none;
}
.product-slider-viewport img,
.product-slider-viewport a {
  -webkit-user-drag: none;
}
.product-slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.65s cubic-bezier(0.45, 0.05, 0.25, 1);
  direction: ltr;
  will-change: transform;
}
.product-slider-track .product-card {
  flex: 0 0 clamp(240px, 23vw, 290px);
  width: clamp(240px, 23vw, 290px);
  min-width: clamp(240px, 23vw, 290px);
  cursor: pointer;
}
.product-slider-viewport a,
.product-slider-viewport [data-product-link] {
  cursor: pointer;
}
.product-slider-btn {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-card);
  color: var(--text);
  font-size: 1.25rem;
  cursor: pointer;
  flex-shrink: 0;
}
.product-slider-btn:hover { border-color: var(--accent); color: var(--accent); }
.product-slider-btn:disabled { opacity: 0.35; cursor: not-allowed; }

@media (max-width: 760px) {
  .product-slider-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .product-slider-viewport {
    grid-row: 1;
    grid-column: 1;
  }
  .product-slider-btn { display: none; }
  .product-slider-track .product-card {
    flex: 0 0 min(82vw, calc(100% - 12px));
    width: min(82vw, calc(100% - 12px));
    min-width: min(82vw, calc(100% - 12px));
  }
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.cat-mini {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  min-height: 120px;
}
.cat-mini:hover { border-color: var(--accent); }

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}
.pc-media { position: relative; display: block; }
.product-card img { height: 170px; width: 100%; object-fit: cover; }
.card-body { padding: 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.pc-meta { font-size: 13px; color: var(--gold); }
.pc-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}
.pc-meta-row .pc-meta { margin: 0; }
.pc-condition {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.4;
}
.pc-condition.cond-new {
  color: #34d399;
  border-color: rgba(52, 211, 153, 0.35);
  background: rgba(52, 211, 153, 0.1);
}
.pc-condition.cond-refurbished {
  color: #60a5fa;
  border-color: rgba(96, 165, 250, 0.35);
  background: rgba(96, 165, 250, 0.1);
}
.pc-condition.cond-open-box {
  color: #fbbf24;
  border-color: rgba(251, 191, 36, 0.35);
  background: rgba(251, 191, 36, 0.1);
}
.pc-condition.cond-used {
  color: #fb923c;
  border-color: rgba(251, 146, 60, 0.4);
  background: rgba(251, 146, 60, 0.12);
}
.product-card .pc-specs {
  font-size: 0.72rem;
  line-height: 1.35;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pc-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: auto; }

.badge {
  position: absolute;
  top: 10px;
  inset-inline-start: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--badge-bg);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}
.badge-sale {
  inset-inline-start: auto;
  inset-inline-end: 44px;
  background: rgba(255, 93, 143, 0.18);
  color: var(--sale);
}
.wish {
  position: absolute;
  top: 8px;
  inset-inline-end: 8px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(8, 12, 20, 0.55);
  color: #fff;
  cursor: pointer;
}
.wish.on { color: var(--sale); }

.price { display: flex; align-items: baseline; gap: 8px; }
.price b { font-size: 1.15rem; }
.old { color: var(--muted); text-decoration: line-through; font-size: 0.88rem; }

.toolbar { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0 20px; }
.search, .select {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 12px;
  padding: 12px 14px;
}
.search { flex: 1; min-width: 200px; }

.overlay {
  position: fixed; inset: 0;
  background: var(--overlay);
  opacity: 0; pointer-events: none;
  transition: 0.2s; z-index: 50;
}
.overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; bottom: 0; inset-inline-end: 0;
  width: min(420px, 100%);
  background: var(--drawer);
  border-inline-start: 1px solid var(--line);
  z-index: 60;
  display: flex; flex-direction: column;
  transform: translateX(-110%);
  transition: 0.25s ease;
}
[dir="ltr"] .cart-drawer { transform: translateX(110%); }
.cart-drawer.open,
[dir="rtl"] .cart-drawer.open,
[dir="ltr"] .cart-drawer.open { transform: translateX(0); }
.cart-head, .cart-foot { padding: 18px; border-bottom: 1px solid var(--line); }
.cart-foot { border-bottom: 0; border-top: 1px solid var(--line); margin-top: auto; }
.cart-items { padding: 12px 18px; overflow: auto; flex: 1; }
.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item img { width: 72px; height: 56px; object-fit: cover; border-radius: 10px; }
.qty { display: flex; align-items: center; gap: 8px; }
.qty button {
  width: 28px; height: 28px; border-radius: 8px;
  border: 1px solid var(--line); background: var(--bg-elevated); color: var(--text); cursor: pointer;
}

.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 20px; }
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.form { display: grid; gap: 12px; }
.form input, .form textarea, .form select {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 12px;
  padding: 12px 14px;
}
.form textarea { min-height: 140px; resize: vertical; }

.toast {
  position: fixed; bottom: 22px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--accent); color: var(--on-accent);
  padding: 12px 18px; border-radius: 999px; font-weight: 800;
  opacity: 0; pointer-events: none; z-index: 80; transition: 0.25s;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.site-footer {
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--accent) 20%, var(--line));
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--bg-elevated) 92%, var(--accent) 8%),
    var(--bg)
  );
  padding: 28px 0 0;
  color: var(--muted);
  overflow: hidden;
}
.site-footer-compact {
  padding-top: 0;
}
.site-footer-compact .footer-grid {
  display: none;
}
.footer-glow {
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.7;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 18px 24px;
  padding-bottom: 16px;
}
.footer-heading {
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  color: var(--text);
  margin: 0 0 8px;
}
.footer-grid h3 { color: var(--text); margin-bottom: 8px; font-size: 0.9rem; }
.footer-grid ul { list-style: none; display: grid; gap: 4px; }
.store-phone {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-logo img {
  height: 40px;
  background: #071018;
  border-radius: 8px;
}
.footer-logo .logo-text strong {
  font-size: 0.95rem;
}
.footer-logo .logo-text small {
  font-size: 0.72rem;
}
.footer-tagline {
  margin: 0;
  line-height: 1.5;
  color: var(--muted);
  max-width: 34ch;
  font-size: 0.82rem;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.footer-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--line));
  background: color-mix(in srgb, var(--accent) 8%, var(--bg-card));
  color: var(--accent);
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}
.footer-links a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.84rem;
  transition: color 0.15s ease;
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 5px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 0;
  border: 0;
  background: none;
  border-radius: 0;
}
.footer-contact-label {
  flex: 0 0 auto;
  min-width: 3.6em;
  font-size: 10px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.03em;
  line-height: 1.55;
}
.footer-contact-label::after {
  content: ":";
}
.footer-contact-value {
  flex: 1;
  min-width: 0;
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.45;
}
.footer-contact-value a {
  color: inherit;
}
.footer-contact-value a:hover {
  color: var(--accent);
}
.footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.footer-cta-btn {
  flex: 0 1 auto;
  min-width: 0;
}
.footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 0 14px;
  border-top: 1px solid var(--line);
}
.footer-bar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
}
.footer-bar-links a {
  color: var(--muted);
  font-weight: 700;
}
.footer-bar-links a:hover {
  color: var(--accent);
}
.footer-copy {
  margin: 0;
  border: 0;
  padding: 0;
  font-size: 12px;
}
@media (max-width: 900px) {
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 760px) {
  .site-footer {
    padding-top: 22px;
  }
  .footer-grid {
    gap: 16px;
    padding-bottom: 12px;
  }
  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}
.empty { color: var(--muted); padding: 28px 0; text-align: center; }
.is-oos img {
  filter: grayscale(1) brightness(1.28);
  opacity: 0.72;
}
.oos-ribbon {
  position: absolute;
  top: 46px;
  inset-inline: 0;
  text-align: center;
  background: #9aa0a6;
  color: #f7f7f7;
  font-weight: 800;
  padding: 6px 10px;
  z-index: 2;
}
.cart-row {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.cart-row img { width: 96px; height: 72px; object-fit: cover; border-radius: 12px; }
.cart-page-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.checkout-total { font-size: 1.15rem; margin-top: 12px; }
.hidden { display: none !important; }
.success-box {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}

.pdp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.pdp-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-card);
}
.pdp-media img { width: 100%; height: min(460px, 55vw); object-fit: cover; }
.spec-table {
  width: 100%;
  margin-top: 22px;
  border-collapse: collapse;
}
.spec-table th,
.spec-table td {
  text-align: start;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.spec-table th { color: var(--muted); font-weight: 700; width: 38%; }
.wish-btn.on { color: var(--sale); border-color: var(--sale); }

@media (max-width: 1100px) {
  .grid, .cat-grid { grid-template-columns: repeat(3, 1fr); }
}

.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--overlay);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  inset-inline-start: 0;
  z-index: 71;
  width: min(360px, 88vw);
  max-width: 100%;
  flex-direction: column;
  background: var(--drawer);
  border-inline-end: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateX(110%);
  transition: transform 0.28s cubic-bezier(0.45, 0.05, 0.25, 1);
}
[dir="ltr"] .mobile-nav { transform: translateX(-110%); }
body.nav-open .mobile-nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}
body.nav-open .mobile-nav,
[dir="rtl"] body.nav-open .mobile-nav,
[dir="ltr"] body.nav-open .mobile-nav {
  transform: none;
}
.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 14px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav-head .logo img { height: 44px; }
.mobile-nav-close {
  width: 42px;
  min-width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 12px;
  font-size: 1.4rem;
  line-height: 1;
}
.mobile-nav-body {
  flex: 1;
  overflow: auto;
  padding: 16px;
  display: grid;
  gap: 8px;
  align-content: start;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav-label {
  margin: 10px 2px 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.mobile-nav-label:first-child { margin-top: 0; }
.mobile-nav-search {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}
.mobile-nav-search input {
  flex: 1;
  min-width: 0;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  color: var(--text);
  border-radius: 12px;
  padding: 0 14px;
}
.mobile-nav-search button {
  height: 44px;
  min-width: 72px;
  padding: 0 14px;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  color: var(--text);
  font-weight: 800;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  border-color: var(--accent);
  background: var(--nav-hover);
  color: var(--accent);
}
.mobile-nav-cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mobile-nav-cat {
  min-height: 88px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  color: var(--text);
}
.mobile-nav-cat:hover,
.mobile-nav-cat.active {
  border-color: var(--accent);
  background: var(--nav-hover);
}
.mobile-nav-cat strong {
  display: block;
  font-size: 14px;
  line-height: 1.35;
}
.mobile-nav-cat small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}
.mobile-nav-actions {
  display: grid;
  gap: 8px;
}
.mobile-nav-foot {
  padding: 14px 16px 18px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
}
.mobile-nav-meta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}
.mobile-nav-theme {
  width: 100%;
}

@media (max-width: 1020px) {
  .menu-btn { display: inline-flex; }
  .nav-links { display: none; }
  .nav {
    flex-wrap: wrap;
    gap: 8px;
    min-height: 68px;
    align-items: center;
  }
  .logo { order: 1; flex: 0 1 auto; min-width: 0; }
  .header-search { display: contents; }
  .search-toggle {
    order: 2;
    margin-inline-start: auto;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    min-width: 44px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--accent) 38%, var(--line));
    background:
      radial-gradient(
        120% 120% at 30% 18%,
        color-mix(in srgb, var(--accent) 22%, var(--bg-elevated)) 0%,
        var(--bg-elevated) 58%
      );
    color: var(--accent);
    box-shadow:
      inset 0 1px 0 color-mix(in srgb, #fff 14%, transparent),
      0 6px 16px color-mix(in srgb, var(--accent) 12%, transparent);
    transition:
      transform 0.2s ease,
      box-shadow 0.24s ease,
      background 0.24s ease,
      border-color 0.24s ease,
      color 0.24s ease;
  }
  .search-toggle .search-toggle-ico {
    width: 19px;
    height: 19px;
  }
  .search-toggle:active {
    transform: scale(0.94);
  }
  .btn-cart { order: 3; margin-inline-start: 0; flex-shrink: 0; }
  .menu-btn { order: 4; flex-shrink: 0; }
  .header-search-panel {
    display: none;
    order: 10;
    flex: 0 0 100%;
    width: 100%;
    align-items: center;
    gap: 8px;
    padding: 10px 0 6px;
    margin-top: 2px;
    border-top: 1px solid var(--line);
    background: linear-gradient(
      180deg,
      color-mix(in srgb, var(--accent) 6%, var(--header-bg)) 0%,
      var(--header-bg) 100%
    );
    animation: search-drop 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .header-search.open .header-search-panel {
    display: flex;
  }
  .header-search-panel .search-submit { order: 1; }
  .header-search-panel input { order: 2; }
  .header-search-panel .search-close { order: 3; }
  .header-search.open .search-toggle {
    width: 44px;
    min-width: 44px;
    padding: 0;
    border-radius: 50%;
    border-color: transparent;
    background: var(--accent);
    color: var(--on-accent);
    font-size: 0;
    box-shadow:
      0 0 0 3px color-mix(in srgb, var(--accent) 24%, transparent),
      0 10px 22px color-mix(in srgb, var(--accent) 30%, transparent);
  }
  .header-search.open .search-toggle.is-open {
    width: 44px;
    min-width: 44px;
    padding: 0;
    font-size: 0;
  }
  .header-search.open .search-toggle .search-label {
    display: none !important;
  }
  .header-search.open .search-toggle .search-ico-open {
    display: block !important;
  }
  .header-search.open .search-toggle:active {
    transform: scale(0.94);
  }
  .header-search-panel input {
    flex: 1;
    min-width: 0;
    width: auto;
    opacity: 1;
    padding: 12px 14px;
    font-size: 15px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--bg-elevated);
    box-shadow: inset 0 1px 0 color-mix(in srgb, var(--text) 4%, transparent);
  }
  .search-submit { display: inline-flex; }
  .mobile-nav-backdrop { display: block; }
  .mobile-nav { display: flex; }
}
@keyframes search-drop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 420px) {
  .mobile-nav-cats { grid-template-columns: 1fr; }
  .mobile-nav-cat { min-height: 0; }
}

@media (max-width: 900px) {
  .hero-inner, .contact-grid, .footer-grid, .grid, .cat-grid, .pdp {
    grid-template-columns: 1fr 1fr;
  }
  .hero-slider, .hero-inner { min-height: 0; }
  .office-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.1fr 0.95fr 0.95fr;
    grid-template-areas:
      "tall tall"
      "wide wide"
      "b1 b2";
    height: min(480px, 72vw);
  }
}

@media (max-width: 760px) {
  .nav { display: flex; }
  .hero-inner, .contact-grid, .footer-grid, .grid, .cat-grid, .pdp, .shop-layout {
    grid-template-columns: 1fr;
  }
  .office-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: minmax(150px, 40vw);
    grid-template-areas:
      "tall"
      "wide"
      "b1"
      "b2";
    gap: 10px;
    height: auto;
  }
  .office-gallery-section { padding: 28px 0; }
  .site-header .logo { --logo-mark: 48px; }
  .logo img,
  .footer-logo img { height: 48px; }
  .spec-card { order: -1; }
  .cart-line {
    grid-template-columns: 88px 1fr;
  }
  .cart-line-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .checkout-page {
    overflow-x: clip;
  }
  .checkout-page .container {
    width: min(var(--max), calc(100% - 24px));
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }
  .checkout-page .shop-layout,
  .checkout-page form.shop-layout,
  [data-cart-page] .shop-layout {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
  }
  .checkout-page .shop-layout > *,
  .checkout-page form.shop-layout > *,
  [data-cart-page] .shop-layout > * {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  form.shop-layout > [data-checkout-summary] {
    display: none;
  }
  [data-cart-page] .order-summary .btn-lg,
  [data-cart-page] .order-summary .btn-ghost {
    display: none;
  }
  .checkout-steps {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 8px;
    padding-bottom: 2px;
  }
  .checkout-steps::-webkit-scrollbar { display: none; }
  .checkout-steps li {
    flex: 0 0 auto;
    font-size: 0.84rem;
  }
  .panel {
    padding: 16px;
  }
  .form-grid input,
  .form-grid textarea,
  .form-grid select,
  .summary-ship select {
    font-size: 16px;
  }
  .choice-card {
    padding: 12px;
    gap: 10px;
    grid-template-columns: auto 1fr;
  }
  .choice-card b {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 2px;
  }
  .checkout-mobile-submit {
    display: none !important;
  }
  .cat-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    gap: 12px;
    padding-bottom: 4px;
  }
  .cat-grid::-webkit-scrollbar { display: none; }
  .cat-mini {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: start;
  }
}

.lead-tight { margin: 6px 0 22px; }
.checkout-page h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.checkout-steps {
  list-style: none;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.checkout-steps li {
  display: flex;
  align-items: center;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.92rem;
}
.checkout-steps li span span,
.checkout-steps li a span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 8px;
}
.checkout-steps li.active,
.checkout-steps li.done { color: var(--text); }
.checkout-steps li.active span span,
.checkout-steps li.done a span {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}
.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.85fr);
  gap: 22px;
  align-items: start;
  margin-top: 8px;
}
.panel, .order-summary, .cart-line, .empty-cart {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  animation: rise 0.45s ease both;
}
.panel { padding: 22px; }
.checkout-main, .cart-list { display: grid; gap: 16px; }
.panel h2, .order-summary h2 { font-size: 1.05rem; margin-bottom: 14px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-grid label, .summary-ship {
  display: grid;
  gap: 6px;
  font-weight: 700;
  font-size: 0.92rem;
}
.form-grid .span-2 { grid-column: 1 / -1; }
.form-grid input, .form-grid textarea, .form-grid select, .summary-ship select {
  width: 100%;
  background: var(--bg);
  border: 1px solid color-mix(in srgb, var(--text) 22%, transparent);
  color: var(--text);
  border-radius: 12px;
  padding: 12px 14px;
}
.form-grid textarea { min-height: 96px; resize: vertical; }
.form-grid input:focus, .form-grid textarea:focus, .form-grid select:focus, .summary-ship select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.cart-line {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 16px;
  padding: 16px;
  align-items: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.cart-line:hover { border-color: var(--accent); }
.cart-line-media {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-elevated);
}
.cart-line-media img {
  width: 100%;
  height: 92px;
  object-fit: cover;
}
.cart-line-info h3 { font-size: 1.05rem; line-height: 1.4; }
.cart-line-info .price { margin-top: 8px; }
.cart-line-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.line-total { font-weight: 800; }
.spec-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.spec-pills li {
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 9px;
}
.qty-ctrl {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-elevated);
  overflow: hidden;
  direction: ltr;
}
.qty-ctrl button {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.qty-ctrl button:hover { background: var(--nav-hover); color: var(--accent); }
.qty-ctrl svg { width: 16px; height: 16px; }
.qty-ctrl span {
  min-width: 28px;
  text-align: center;
  font-weight: 800;
}
.icon-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  font-size: 0.85rem;
}
.icon-action svg { width: 16px; height: 16px; }
.icon-action:hover { color: var(--sale); }
.order-summary {
  padding: 22px;
  position: sticky;
  top: 88px;
  display: grid;
  gap: 10px;
}
.summary-row, .summary-items li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.summary-row {
  padding: 6px 0;
  color: var(--muted);
}
.summary-row.total {
  border-top: 1px solid var(--line);
  margin-top: 6px;
  padding-top: 12px;
  color: var(--text);
  font-size: 1.1rem;
}
.summary-row.is-save b { color: var(--accent); }
.summary-note { font-size: 13px; }
.summary-items {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 8px;
}
.summary-items li {
  align-items: start;
}
.summary-items img {
  width: 56px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
}
.summary-items div { flex: 1; min-width: 0; }
.summary-items strong, .summary-items span { display: block; }
.choice-list { display: grid; gap: 10px; }
.choice-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  background: var(--bg-elevated);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.choice-card:hover, .choice-card:has(input:checked) {
  border-color: var(--accent);
}
.choice-card small { display: block; color: var(--muted); font-weight: 400; }
.choice-card input { accent-color: var(--accent); }
.empty-cart {
  text-align: center;
  padding: 48px 22px;
}
.empty-cart.compact { padding: 28px 16px; }
.empty-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--badge-bg);
  color: var(--accent);
}
.empty-icon svg { width: 28px; height: 28px; }
.cart-item-side {
  display: grid;
  justify-items: end;
  gap: 8px;
}
.order-success { text-align: center; }
.order-success .shop-layout { text-align: start; margin-top: 28px; }
.order-wa-actions {
  margin: 22px auto 0;
  max-width: 420px;
}
.order-wa-actions .muted {
  margin-top: 10px;
  font-size: 0.92rem;
}
.success-mark {
  width: 72px;
  height: 72px;
  margin: 8px auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--on-accent);
  animation: pop 0.5s ease;
}
.success-mark svg { width: 36px; height: 36px; }
.checkout-mobile-submit { display: none; width: 100%; margin-top: 16px; }
.checkout-mobile-bar {
  display: none;
}
@media (max-width: 760px) {
  .checkout-mobile-bar:not([hidden]) {
    display: block;
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    width: 100%;
    z-index: 90;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    background: color-mix(in srgb, var(--bg-elevated) 96%, transparent);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(12px);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
  }
  .checkout-mobile-bar-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    width: min(100%, var(--max, 1200px));
    margin: 0 auto;
  }
  .checkout-mobile-bar-meta {
    flex: 1;
    min-width: 0;
    display: grid;
    gap: 2px;
  }
  .checkout-mobile-bar-label {
    font-size: 11px;
    color: var(--muted);
    font-weight: 700;
  }
  .checkout-mobile-bar-meta strong {
    font-size: 1rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .checkout-mobile-bar-btn {
    flex: 0 0 auto;
    min-width: 136px;
    max-width: 48vw;
    padding: 12px 14px;
    font-size: 0.9rem;
  }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@keyframes pop {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .slider-track,
  .product-slider-track,
  .hero-inner > div:first-child,
  .hero-inner .spec-card,
  .mobile-nav,
  .mobile-nav-backdrop,
  .menu-bars,
  .menu-bars::before,
  .menu-bars::after {
    transition: none;
  }
  .panel, .order-summary, .cart-line, .empty-cart, .success-mark, .btn-primary {
    animation: none;
    transition: none;
  }
}
@media (max-width: 1020px) {
  .checkout-page .shop-layout,
  .checkout-page form.shop-layout,
  [data-cart-page] .shop-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .span-2 { grid-column: auto; }
  .shop-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
}

.pdp-gallery { display: grid; gap: 12px; }
.pdp-thumbs-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
}
.pdp-thumbs-viewport {
  overflow: hidden;
  min-width: 0;
  cursor: grab;
  touch-action: pan-y;
}
.pdp-thumbs-viewport.is-dragging {
  cursor: grabbing;
}
.pdp-thumbs-viewport.is-dragging .pdp-thumb {
  pointer-events: none;
}
.pdp-thumbs-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  direction: ltr;
  will-change: transform;
}
.pdp-thumbs-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}
.pdp-thumbs-btn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
}
.pdp-thumbs-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.pdp-thumb {
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0;
  background: var(--panel);
  cursor: pointer;
  overflow: hidden;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
}
.pdp-thumb.on { border-color: var(--accent); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 768px) {
  .pdp-thumbs-slider {
    grid-template-columns: 1fr;
  }
  .pdp-thumbs-btn {
    display: none;
  }
  .pdp-thumbs-viewport {
    touch-action: pan-x;
  }
}

.pdp-zoom-hint { font-size: 0.85rem; margin-top: 8px; }

.pdp-gallery .pdp-addon { margin: 4px 0 0; }
.pdp-addon {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-elevated);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.pdp-addon:has(input:checked) {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  background: color-mix(in srgb, var(--accent) 8%, var(--bg-elevated));
}
.pdp-addon input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.pdp-addon-body {
  display: grid;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.pdp-addon-body strong { font-size: 0.95rem; }
.pdp-addon-body small {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}
.pdp-addon-fee {
  flex-shrink: 0;
  font-weight: 800;
  color: var(--accent);
  font-size: 0.92rem;
  white-space: nowrap;
}
.line-addon { font-size: 0.84rem; margin-top: 4px; }

.pdp-zoom-layer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  place-items: center;
  padding: 24px;
}
.pdp-zoom-layer.open { display: grid; }
.pdp-zoom-stage {
  width: min(92vw, 1100px);
  height: min(72vh, 720px);
  overflow: hidden;
  display: grid;
  place-items: center;
  touch-action: none;
  cursor: grab;
}
.pdp-zoom-stage img {
  max-width: none;
  max-height: none;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  transform-origin: center center;
  transition: transform 0.05s linear;
  user-select: none;
}
.pdp-zoom-close {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}
.pdp-zoom-hint-layer {
  color: #cbd5e1;
  text-align: center;
  font-size: 0.85rem;
}
.pdp-back {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}
.pdp-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
}
.pdp-nav {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.pdp-nav:hover { border-color: var(--accent); color: var(--accent); }
.pdp-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pdp-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: var(--line);
  cursor: pointer;
  padding: 0;
  transition: transform 0.15s ease, background 0.15s ease;
}
.pdp-dot.on {
  background: var(--accent);
  transform: scale(1.15);
}
.pdp-carousel .pdp-media { min-width: 0; }

.slider-panel-video {
  position: relative;
  background: #000;
  overflow: hidden;
}
.slider-panel-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
/* يملأ البنر بالكامل مثل object-fit: cover */
.slider-panel-youtube iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* نسبة يوتيوب 16:9 */
  min-width: 100%;
  min-height: 100%;
  border: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1.55);
  transform-origin: center center;
}
/* يغطي أيقونة التشغيل/الإيقاف وواجهة يوتيوب أثناء الإيقاف */
.slider-panel-youtube .yt-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: var(--yt-poster, none) center / cover no-repeat #05070d;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.slider-panel-youtube.is-yt-playing .yt-poster {
  opacity: 0;
}
.slider-panel-youtube .yt-chrome-mask {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow:
    inset 0 48px 40px -20px #000,
    inset 0 -56px 48px -20px #000;
}

.cart-prompt {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: none;
  place-items: center;
  padding: 20px;
}
.cart-prompt.open { display: grid; }
.cart-prompt-backdrop {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  backdrop-filter: blur(3px);
}
.cart-prompt-box {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 22px;
  text-align: center;
  box-shadow: var(--shadow);
}
.cart-prompt-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: var(--badge-bg);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 800;
}
.cart-prompt-box h3 { margin-bottom: 8px; }
.cart-prompt-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}
body.cart-prompt-open { overflow: hidden; }

.pdp-zoom-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 3;
}
.pdp-zoom-prev { inset-inline-start: 20px; }
.pdp-zoom-next { inset-inline-end: 20px; }
.pdp-zoom-nav:hover { background: rgba(255, 255, 255, 0.24); }
.pdp-zoom-counter {
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 800;
}

@media (max-width: 760px) {
  .pdp-nav { width: 34px; height: 34px; font-size: 1.2rem; }
  .cart-prompt-actions { grid-template-columns: 1fr; }
  .pdp-zoom-nav { width: 38px; height: 38px; }
}

.maintenance-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  position: relative;
  background: var(--bg);
}

.maintenance-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.maintenance-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: maintenance-float 14s ease-in-out infinite;
}

.maintenance-orb-a {
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  top: -8%;
  inset-inline-start: 12%;
  background: rgba(59, 130, 246, 0.35);
}

.maintenance-orb-b {
  width: min(36vw, 360px);
  height: min(36vw, 360px);
  bottom: -10%;
  inset-inline-end: 8%;
  background: rgba(20, 184, 166, 0.28);
  animation-delay: -6s;
}

.maintenance-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 20%, transparent 78%);
}

.maintenance-shell {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  text-align: center;
  padding: 40px 34px 34px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: color-mix(in srgb, var(--card) 88%, transparent);
  backdrop-filter: blur(18px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: maintenance-rise 0.7s ease both;
}

.maintenance-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 22px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(234, 179, 8, 0.35);
  background: rgba(234, 179, 8, 0.1);
  color: #fbbf24;
  font-size: 0.88rem;
  font-weight: 800;
}

.maintenance-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fbbf24;
  box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.55);
  animation: maintenance-pulse 1.8s ease infinite;
}

.maintenance-brand {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.maintenance-logo {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.maintenance-name {
  margin: 0;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.maintenance-shell h1 {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 4.5vw, 2.15rem);
  line-height: 1.35;
}

.maintenance-message {
  margin: 0 auto;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.9;
}

.maintenance-actions {
  display: grid;
  gap: 12px;
  justify-items: center;
  margin-top: 28px;
}

.maintenance-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: min(100%, 320px);
  justify-content: center;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.35);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.22), rgba(20, 184, 166, 0.14));
  color: var(--text);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.maintenance-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(59, 130, 246, 0.55);
  box-shadow: 0 12px 28px rgba(59, 130, 246, 0.18);
}

.maintenance-cta-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.maintenance-cta-copy {
  display: grid;
  gap: 2px;
  text-align: start;
}

.maintenance-cta-copy small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.maintenance-phone {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  unicode-bidi: isolate;
  direction: ltr;
}

.maintenance-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.maintenance-link:hover {
  text-decoration: underline;
}

.maintenance-hours {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@keyframes maintenance-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -18px, 0) scale(1.04); }
}

@keyframes maintenance-pulse {
  0% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(251, 191, 36, 0); }
  100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

@keyframes maintenance-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 560px) {
  .maintenance-shell {
    padding: 30px 20px 24px;
    border-radius: 22px;
  }

  .maintenance-cta {
    min-width: 100%;
  }
}

/* —— Homepage effects —— */
.home-hero-fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.home-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  opacity: 0.55;
  will-change: transform;
}
.home-orb-a {
  width: min(52vw, 420px);
  height: min(52vw, 420px);
  top: -12%;
  inset-inline-end: -8%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 72%, transparent) 0%, transparent 68%);
  animation: home-orb-drift-a 14s ease-in-out infinite;
}
.home-orb-b {
  width: min(40vw, 320px);
  height: min(40vw, 320px);
  bottom: -18%;
  inset-inline-start: -6%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-2) 55%, transparent) 0%, transparent 70%);
  animation: home-orb-drift-b 18s ease-in-out infinite;
}
.home-orb-c {
  width: min(28vw, 220px);
  height: min(28vw, 220px);
  top: 38%;
  inset-inline-start: 42%;
  background: radial-gradient(circle, color-mix(in srgb, var(--gold) 40%, transparent) 0%, transparent 72%);
  animation: home-orb-drift-c 11s ease-in-out infinite;
}
.home-grid-glow {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(color-mix(in srgb, var(--accent) 10%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--accent) 10%, transparent) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, #000 20%, transparent 78%);
  animation: home-grid-pulse 6s ease-in-out infinite;
}
[data-theme="light"] .home-orb { opacity: 0.28; filter: blur(64px); }
[data-theme="light"] .home-grid-glow { opacity: 0.18; }

body[data-page="home"]:not(.home-ready) .hero-inner > div:first-child > * {
  opacity: 0;
  transform: translateY(22px);
}
body[data-page="home"].home-ready .hero-inner > div:first-child > .chips {
  animation: home-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
body[data-page="home"].home-ready .hero-inner > div:first-child > h1 {
  animation: home-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
body[data-page="home"].home-ready .hero-inner > div:first-child > .lead {
  animation: home-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
body[data-page="home"].home-ready .hero-inner > div:first-child > .muted {
  animation: home-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.38s both;
}
body[data-page="home"].home-ready .hero-inner > div:first-child > .slide-price {
  animation: home-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.44s both;
}
body[data-page="home"].home-ready .hero-inner > div:first-child > .hero-cta {
  animation: home-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.52s both;
}
body[data-page="home"]:not(.home-ready) .hero-inner .spec-card {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
}
body[data-page="home"].home-ready .hero-inner .spec-card {
  animation: home-spec-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both,
    home-spec-glow 5s ease-in-out 1.2s infinite;
}
body[data-page="home"] .home-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
body[data-page="home"] .home-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
body[data-page="home"] .home-reveal .product-card,
body[data-page="home"] .home-reveal .cat-mini {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
body[data-page="home"] .home-reveal.is-visible .product-card:hover,
body[data-page="home"] .home-reveal.is-visible .cat-mini:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 36px color-mix(in srgb, var(--accent) 14%, transparent),
    0 0 0 1px color-mix(in srgb, var(--accent) 22%, transparent);
}
body[data-page="home"] .hero-slider .chip {
  box-shadow: 0 0 18px color-mix(in srgb, var(--accent) 12%, transparent);
}
body[data-page="home"].home-ready .hero-slider .chip {
  animation: home-chip-pulse 3.2s ease-in-out infinite;
}
body[data-page="home"].home-ready .hero-slider .chip:nth-child(2) {
  animation-delay: 0.8s;
}

@keyframes home-orb-drift-a {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-18px, 14px, 0) scale(1.06); }
}
@keyframes home-orb-drift-b {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(16px, -12px, 0) scale(1.08); }
}
@keyframes home-orb-drift-c {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-10px, -16px, 0) scale(1.05); }
}
@keyframes home-grid-pulse {
  0%, 100% { opacity: 0.28; }
  50% { opacity: 0.42; }
}
@keyframes home-rise {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes home-spec-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes home-spec-glow {
  0%, 100% {
    box-shadow:
      0 0 0 1px color-mix(in srgb, var(--accent) 18%, transparent),
      0 18px 40px rgba(0, 0, 0, 0.28);
  }
  50% {
    box-shadow:
      0 0 0 1px color-mix(in srgb, var(--accent) 42%, transparent),
      0 22px 48px color-mix(in srgb, var(--accent) 16%, transparent);
  }
}
@keyframes home-chip-pulse {
  0%, 100% { box-shadow: 0 0 12px color-mix(in srgb, var(--accent) 10%, transparent); }
  50% { box-shadow: 0 0 22px color-mix(in srgb, var(--accent) 28%, transparent); }
}

@media (prefers-reduced-motion: reduce) {
  .home-orb,
  .home-grid-glow,
  body[data-page="home"] .hero-inner > div:first-child > *,
  body[data-page="home"] .hero-inner .spec-card,
  body[data-page="home"] .home-reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
