:root {
  --ink: #f6f4ef;
  --paper: #ffffff;
  --line: #e4e0d6;
  --gold: #b5893a;
  --gold-2: #8d6a28;
  --blue: #1554d1;
  --blue-2: #0d3d9a;
  --text: #161a22;
  --muted: #5d6674;
  --sand: #3d4553;
  --white: #fff;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(22, 26, 34, 0.08);
  --font: "Manrope", "IBM Plex Sans Arabic", system-ui, sans-serif;
  --display: "Syne", "IBM Plex Sans Arabic", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; min-height: 100%; overflow-x: hidden; }
body {
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(900px 420px at 100% 0%, rgba(21, 84, 209, 0.06), transparent 50%),
    radial-gradient(800px 380px at 0% 10%, rgba(181, 137, 58, 0.07), transparent 46%),
    var(--ink);
  line-height: 1.65;
}
body.is-rtl { font-family: "IBM Plex Sans Arabic", var(--font); }
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.wrap { width: min(1240px, calc(100% - 32px)); margin: 0 auto; }
.nav-cta { display: none; }
.site-header, main, .site-footer, .wa-fab { position: relative; z-index: 1; }

.topbar {
  border-bottom: 1px solid var(--line);
  background: #fff;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.topbar-inner, .nav-wrap, .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.topbar-inner { min-height: 38px; }
.topbar-meta { display: flex; gap: 10px; color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { min-height: 86px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 6px 10px;
  box-shadow: 0 6px 18px rgba(22, 26, 34, 0.05);
}
.brand img { height: 48px; width: auto; }
.brand strong { display: block; font-family: var(--display); letter-spacing: 0.18em; font-size: 15px; color: #0d3d9a; }
.brand small { color: var(--gold-2); letter-spacing: 0.08em; font-size: 10px; text-transform: uppercase; }
.nav { display: flex; gap: 6px; }
.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #2a3140;
  font-size: 14px;
  font-weight: 600;
}
.nav a.is-active, .nav a:hover { background: #eaf1ff; color: var(--blue-2); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.lang {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 12px; font-weight: 700; background: #fff;
}
.lang.is-active { border-color: var(--blue); color: var(--blue); }
.menu-btn { display: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 20px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; letter-spacing: 0.02em; transition: transform .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: linear-gradient(180deg, #f0d48a, #c9a24a); color: #2a1d05; }
.btn-blue { background: linear-gradient(180deg, #3d78e8, var(--blue)); color: #fff; }
.btn-ghost { border-color: #cfd6e2; color: var(--blue-2); background: #fff; }
.btn-sm { min-height: 40px; padding: 0 14px; font-size: 13px; }

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(700px 280px at 90% 10%, rgba(21, 84, 209, 0.08), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}
.hero-inner { padding: 72px 0 56px; display: grid; gap: 22px; max-width: 860px; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold-2); letter-spacing: 0.16em; text-transform: uppercase; font-size: 12px; font-weight: 700;
}
.kicker::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
h1, h2, .display {
  font-family: var(--display);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 0 14px;
  color: #10151f;
}
h1 { font-size: clamp(28px, 8vw, 72px); }
h2 { font-size: clamp(24px, 6vw, 48px); }
.lead { font-size: clamp(16px, 2vw, 20px); color: var(--muted); max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: 1px solid var(--line); background: #fff;
  padding: 8px 12px; border-radius: 999px; font-size: 12px; letter-spacing: 0.04em; color: var(--sand);
  box-shadow: 0 4px 14px rgba(16, 21, 31, 0.04);
  max-width: 100%;
  overflow-wrap: anywhere;
}

.section { padding: 84px 0; }
.section-head { display: grid; gap: 10px; margin-bottom: 36px; max-width: 760px; }
.muted { color: var(--muted); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.stat {
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stat b { display: block; font-family: var(--display); font-size: 34px; color: var(--blue-2); }
.stat span { color: var(--muted); font-size: 13px; }

.bento { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 18px; }
.card, .glass {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card { padding: 28px; }
.card h3 { margin: 0 0 8px; font-family: var(--display); font-size: 26px; }
.card img, .cover { width: 100%; height: 240px; object-fit: cover; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.creds { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.cred {
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: #f8f6f1;
  border-radius: 16px;
}
.cred small { display: block; color: var(--gold-2); text-transform: uppercase; letter-spacing: 0.1em; font-size: 11px; margin-bottom: 6px; }

.product-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  min-height: 100%;
  box-shadow: var(--shadow);
  transition: transform .3s ease, border-color .3s ease;
}
@media (hover: hover) {
  .product-card:hover { transform: translateY(-6px); border-color: #c9d6ee; }
}
.product-card .media {
  aspect-ratio: 1 / 1;
  background: #f3f1eb;
  display: grid;
  place-items: center;
}
.product-card .media img { width: 100%; height: 100%; object-fit: cover; }
.product-card .body { padding: 18px 18px 22px; display: grid; gap: 8px; flex: 1; }
.product-card .cat { color: var(--gold-2); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.product-card h3 { font-size: 18px; line-height: 1.3; margin: 0; }
.price { color: var(--blue-2); font-size: 15px; }
.price s { color: var(--muted); margin-inline-end: 8px; }

.page-hero {
  padding: 72px 0 28px;
  background: linear-gradient(180deg, #fff, #f4f7fb);
}
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 28px; }
.filters a, .filters button {
  border: 1px solid var(--line); background: #fff; color: var(--sand);
  border-radius: 999px; padding: 8px 14px; cursor: pointer;
}
.filters a.is-active { background: var(--blue); border-color: var(--blue); color: #fff; }
.search {
  width: min(360px, 100%);
  background: #fff; border: 1px solid var(--line); color: var(--text);
  border-radius: 999px; padding: 12px 16px; margin-bottom: 22px;
}

.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.product-detail .gallery {
  background: #fff; border: 1px solid var(--line); border-radius: 28px; overflow: hidden;
}
.product-detail .gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.desc { white-space: pre-wrap; color: #3d4553; }
.meta-list { display: grid; gap: 8px; margin: 18px 0; color: var(--muted); }

.service-card .cover {
  height: 180px;
  background-size: cover;
  background-position: center;
}
.service-card h3, .project h3 { font-family: var(--display); margin: 0 0 10px; font-size: 22px; }
.service-card ul { margin: 0; padding-inline-start: 18px; color: #3d4553; }
.project {
  position: relative; min-height: 280px; border-radius: 24px; overflow: hidden;
  background: #dfe6f1 center/cover no-repeat;
  box-shadow: var(--shadow);
}
.project figcaption {
  position: absolute; inset: auto 0 0 0; padding: 22px;
  background: linear-gradient(transparent, rgba(16, 21, 31, 0.78));
  color: #fff;
}
.clients { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.clients figure {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; min-height: 92px;
  display: grid; place-items: center; padding: 12px;
}
.clients img { max-height: 52px; width: auto; }

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 22px; }
form .field { display: grid; gap: 6px; margin-bottom: 14px; }
form label { font-size: 13px; color: var(--gold-2); }
form input, form textarea, form select {
  width: 100%; background: #fff; border: 1px solid var(--line); color: var(--text);
  border-radius: 14px; padding: 12px 14px;
}
.map-frame { min-height: min(320px, 55vw); border: 0; border-radius: 24px; width: 100%; border: 1px solid var(--line); }

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 56px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
.footer-grid h4 { font-family: var(--display); margin: 0 0 12px; color: #10151f; }
.footer-grid a, .footer-grid p { display: block; color: var(--muted); margin: 0 0 8px; overflow-wrap: anywhere; }
.footer-bottom { margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.social { display: flex; gap: 12px; }

.wa-fab {
  position: fixed; right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom)); z-index: 50;
  background: #25d366; color: #053; font-weight: 800;
  padding: 12px 16px; border-radius: 999px; box-shadow: var(--shadow);
}
body.is-rtl .wa-fab { right: auto; left: max(16px, env(safe-area-inset-left)); }
.site-footer { padding-bottom: calc(28px + env(safe-area-inset-bottom)); }

.notice {
  padding: 14px 16px; border-radius: 14px; margin-bottom: 18px;
  border: 1px solid #c9d8f5; background: #eef4ff;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 80;
  background: linear-gradient(90deg, #1554d1, #c9a24a);
  transform-origin: left;
}
.hero { isolation: isolate; }
.hero-spot {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(420px 280px at var(--spot-x, 70%) var(--spot-y, 20%), rgba(21, 84, 209, 0.14), transparent 62%);
}
.is-home .hero-spot { display: block; }
.hero-inner { position: relative; z-index: 1; }
.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  animation: wordIn .7s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-title .word:nth-child(1) { animation-delay: .05s; }
.hero-title .word:nth-child(2) { animation-delay: .14s; }
.hero-title .word:nth-child(3) { animation-delay: .23s; }
.hero-title .word:nth-child(4) { animation-delay: .32s; }
.hero-title .word:nth-child(5) { animation-delay: .41s; }
@keyframes wordIn {
  to { opacity: 1; transform: none; }
}
.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #fff;
  padding: 14px 0;
}
.ticker-track {
  display: flex;
  gap: 42px;
  width: max-content;
  animation: ticker 28s linear infinite;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #0d3d9a;
}
.ticker-track span::before {
  content: "●";
  color: var(--gold);
  margin-inline-end: 14px;
  font-size: 9px;
}
@keyframes ticker {
  to { transform: translateX(-50%); }
}
body.is-rtl .ticker-track { animation-name: tickerRtl; }
@keyframes tickerRtl {
  to { transform: translateX(50%); }
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.grid-4 .reveal:nth-child(2), .grid-3 .reveal:nth-child(2), .stats .reveal:nth-child(2) { transition-delay: .08s; }
.grid-4 .reveal:nth-child(3), .grid-3 .reveal:nth-child(3), .stats .reveal:nth-child(3) { transition-delay: .16s; }
.grid-4 .reveal:nth-child(4), .grid-3 .reveal:nth-child(4), .stats .reveal:nth-child(4) { transition-delay: .24s; }
.grid-4 .reveal:nth-child(5), .grid-3 .reveal:nth-child(5) { transition-delay: .08s; }
.grid-4 .reveal:nth-child(6), .grid-3 .reveal:nth-child(6) { transition-delay: .16s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-title .word { opacity: 1; transform: none; animation: none; transition: none; }
  .ticker-track { animation: none; }
}

@media (max-width: 1100px) {
  .stats, .grid-3, .grid-4, .bento, .product-detail, .contact-grid, .footer-grid, .creds, .clients {
    grid-template-columns: 1fr 1fr;
  }
  .nav-wrap {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    min-height: 76px;
    gap: 8px;
  }
  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    background: #fff;
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 14px;
  }
  .nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 4px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 8px;
    margin-bottom: 10px;
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 14px; }
  .nav-actions .btn { display: none; }
  .nav-cta {
    display: inline-flex;
    margin-top: 6px;
    background: linear-gradient(180deg, #f0d48a, #c9a24a);
    color: #2a1d05;
    justify-content: center;
  }
  .filters { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .filters a { flex: 0 0 auto; }
}

@media (max-width: 720px) {
  .wrap { width: min(1240px, calc(100% - 24px)); }
  .stats, .grid-2, .grid-3, .bento, .product-detail, .contact-grid, .footer-grid, .creds, .clients {
    grid-template-columns: 1fr;
  }
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 12px; }
  .topbar-tagline, .hide-sm { display: none; }
  .topbar-inner { justify-content: center; min-height: 34px; }
  .hero-inner { padding: 40px 0 36px; }
  .hero-actions .btn, .product-detail .hero-actions .btn { width: 100%; }
  .section { padding: 48px 0; }
  .page-hero { padding: 40px 0 16px; }
  .card { padding: 20px; }
  .brand img { height: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .search { width: 100%; }
  .project { min-height: 220px; }
  .wa-fab { padding: 10px 12px; font-size: 13px; }
  form input, form textarea, form select { font-size: 16px; }
  .site-footer { padding-bottom: 92px; }
}

@media (max-width: 420px) {
  .grid-4 { grid-template-columns: 1fr; }
  .brand-text { display: none; }
  .nav-wrap { grid-template-columns: 1fr auto auto; }
  .chip { font-size: 11px; }
  .stat { padding: 16px; }
  .stat b { font-size: 26px; }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.store-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 56px;
  color: #f4f7fb;
  background:
    linear-gradient(180deg, #0b1220 0%, #142033 58%, #1a2740 100%);
}
.store-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(640px 280px at 88% 12%, rgba(21, 84, 209, 0.38), transparent 58%),
    radial-gradient(520px 240px at 8% 88%, rgba(201, 162, 74, 0.22), transparent 52%);
}
.store-hero-inner { position: relative; z-index: 1; display: grid; gap: 18px; }
.store-hero h1 { color: #fff; max-width: 16ch; }
.store-hero-lead { color: #c5cddd; max-width: 680px; }
.kicker.light { color: #e6c57a; }
.kicker.light::before { background: #e6c57a; }
.store-search {
  display: flex;
  gap: 10px;
  align-items: center;
  width: min(720px, 100%);
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}
.store-search-input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 12px 16px;
  outline: none;
}
.store-search-input::placeholder { color: #9aa6bb; }
.store-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 8px;
}
.store-metrics b {
  display: block;
  font-family: var(--display);
  font-size: 28px;
  color: #fff;
}
.store-metrics span { color: #9aa6bb; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.store-section { padding-top: 48px; }
.store-toolbar { margin-bottom: 22px; }
.store-filters a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.store-filters em {
  font-style: normal;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: #eef2f8;
  color: #3d4553;
  font-size: 11px;
  display: inline-grid;
  place-items: center;
}
.store-filters a.is-active em { background: rgba(255,255,255,.2); color: #fff; }
.store-result { margin: 0 0 18px; }
.store-empty {
  padding: 48px 24px;
  text-align: center;
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 24px;
}
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.store-grid-related { grid-template-columns: repeat(4, 1fr); }
.store-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  min-height: 100%;
  box-shadow: var(--shadow);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.store-card-link { display: flex; flex-direction: column; flex: 1; color: inherit; }
@media (hover: hover) {
  .store-card:hover {
    transform: translateY(-8px);
    border-color: #c9d6ee;
    box-shadow: 0 28px 60px rgba(16, 21, 31, 0.12);
  }
  .store-card:hover .store-card-media img { transform: scale(1.05); }
  .store-card:hover .store-card-open { opacity: 1; transform: translateY(0); }
}
.store-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, #f6f4ef, #ece8de);
  overflow: hidden;
}
.store-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.store-card-badges {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.store-card-badges span {
  background: rgba(12, 18, 32, 0.78);
  color: #fff;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.store-card-open {
  position: absolute;
  inset-inline-end: 12px;
  bottom: 12px;
  background: #fff;
  color: #0d3d9a;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: .3s ease;
}
.store-card-body { padding: 18px 20px 22px; display: grid; gap: 8px; flex: 1; }
.store-card-body p { margin: 0; color: var(--muted); font-size: 14px; }
.store-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 10px;
  margin-top: auto;
}
.store-card-foot small { color: var(--muted); letter-spacing: 0.08em; }

.product-stage {
  padding: 36px 0 20px;
  background: linear-gradient(180deg, #f4f7fb, #f6f4ef);
}
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 22px;
}
.crumbs a:hover { color: var(--blue); }
.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: start;
}
.product-gallery {
  display: grid;
  gap: 12px;
}
.product-main {
  border: 0;
  padding: 0;
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.product-main img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.product-thumb {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
}
.product-thumb.is-active { border-color: var(--blue); box-shadow: 0 0 0 2px rgba(21, 84, 209, 0.2); }
.product-thumb img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-panel {
  position: sticky;
  top: 110px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.product-price { font-size: 32px; margin: 8px 0 16px; color: var(--blue-2); }
.product-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.product-chips span {
  border: 1px solid var(--line);
  background: #f7f5f0;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  color: #3d4553;
}
.brochure-card {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 16px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8f4ea, #fff);
  border: 1px solid #ead9b0;
}
.brochure-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #c0392b;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.brochure-card strong { display: block; }
.brochure-card small { color: var(--muted); }
.product-support { margin: 16px 0 0; }
.product-brief { padding-top: 12px; }
.rich-desc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.rich-desc-body { color: #3d4553; font-size: 16px; }
.rich-desc-body h2, .rich-desc-body h3, .rich-desc-body h4 {
  margin: 28px 0 10px;
  color: #10151f;
}
.rich-desc-body p { margin: 0 0 14px; }
.rich-desc-body ul, .rich-desc-body ol { margin: 0 0 16px; padding-inline-start: 20px; }
.rich-desc-body li { margin: 0 0 8px; }
.rich-desc-body table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.rich-desc-body th, .rich-desc-body td { border: 1px solid var(--line); padding: 10px 12px; text-align: start; }
.rich-desc-body a { color: var(--blue); text-decoration: underline; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(8, 12, 20, 0.92);
  display: grid;
  place-items: center;
  padding: 32px;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(1100px, 100%); max-height: 88vh; object-fit: contain; border-radius: 16px; }
.lightbox-close {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #10151f;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .store-grid, .store-grid-related, .product-layout { grid-template-columns: 1fr 1fr; }
  .product-panel { position: static; }
}
.family-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.family-card {
  display: grid;
  grid-template-rows: 92px 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  min-height: 100%;
  box-shadow: var(--shadow);
}
.family-card img { width: 100%; height: 92px; object-fit: cover; }
.family-card div { padding: 12px 14px 16px; display: grid; gap: 4px; }
.family-card strong { font-size: 14px; }
.family-card span, .family-card em { color: var(--muted); font-size: 12px; font-style: normal; }
.family-card.is-active { border-color: var(--blue); box-shadow: 0 0 0 2px rgba(21, 84, 209, 0.16); }
.compare-mini {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  z-index: 2;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #0d3d9a;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(16, 21, 31, 0.12);
}
.compare-dock {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 55;
  background: #10151f;
  color: #fff;
  padding: 12px 0;
}
.compare-dock-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.compare-slots { display: flex; gap: 10px; flex: 1; }
.compare-slot {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 6px 10px;
  min-width: 160px;
}
.compare-slot img { width: 36px; height: 36px; object-fit: cover; border-radius: 8px; }
.stars { color: #c9a24a; letter-spacing: 1px; }
.stars small { color: var(--muted); letter-spacing: 0; margin-inline-start: 6px; }
.stars.small { font-size: 13px; }
.quote-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 22px; }
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.review-list { display: grid; gap: 14px; margin: 16px 0 22px; }
.review { padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.review p { margin: 6px 0 0; color: #3d4553; }
.compare-table { background: #fff; border: 1px solid var(--line); border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); }
.compare-head, .compare-row { display: grid; grid-template-columns: 180px 1fr 1fr; gap: 0; }
.compare-head article, .compare-row > * { padding: 18px 20px; border-bottom: 1px solid var(--line); }
.compare-head img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 16px; margin-bottom: 12px; }
.compare-row strong { background: #f7f5f0; }

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.store-trust {
  background: #fff;
  border-block: 1px solid var(--line);
  padding: 22px 0;
}
.store-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.store-trust-grid strong { display: block; font-family: var(--display); color: #0d3d9a; }
.store-trust-grid span { color: var(--muted); font-size: 13px; }
.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}
.share-row a, .linkish {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--blue-2);
  font-weight: 700;
  cursor: pointer;
}
.product-sticky { display: none; }

@media (max-width: 1100px) {
  .store-trust-grid, .family-grid, .quote-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .store-hero { padding: 48px 0 36px; }
  .store-search { flex-direction: column; border-radius: 22px; }
  .store-search .btn { width: 100%; }
  .store-grid, .store-grid-related, .product-layout, .quote-grid, .compare-head, .compare-row, .family-grid { grid-template-columns: 1fr; }
  .product-panel, .rich-desc { padding: 22px; border-radius: 22px; }
  .store-trust-grid { grid-template-columns: 1fr; }
  .compare-dock { padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
  .product-sticky {
    display: flex;
    position: fixed;
    inset: auto 0 0 0;
    z-index: 45;
    gap: 8px;
    padding: 10px 12px calc(12px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
  }
  .product-sticky .btn { flex: 1; }
  body:has(.product-sticky) .wa-fab { bottom: 78px; }
}
