:root {
  color-scheme: dark;
  --bg: #0D1117;
  --bg-2: #111827;
  --surface: #151F2A;
  --surface-2: #1B2532;
  --input: #16212B;
  --ink: #F4F5F7;
  --ink-2: #C9D1D9;
  --ink-3: #8C99A8;
  --placeholder: #7E8793;
  --line: #2B3948;
  --line-strong: #3A4B5E;
  --accent: #2F3D4E;
  --accent-hover: #37495C;
  --accent-pressed: #263342;
  --accent-ink: #FFFFFF;
  --accent-text: #B7C3CF;
  --accent-text-hover: #D9E1EA;
  --separator: #3A4757;
  --green: #25d366;
  --success: #4FA37A;
  --danger: #A52A34;
  --danger-hover: #92242D;
  --danger-disabled: #7C2027;
  --section-bg: #111827;
  --brand-logo-bg: #F4F5F7;
  --dark-overlay: rgba(13,17,23,.72);
  --card-overlay: rgba(21,31,42,.88);
  --nav-blur: rgba(13,17,23,.90);
  --shadow-strong: rgba(0,0,0,.42);
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #F4F5F7;
  --bg-2: #ECEFF3;
  --surface: #FFFFFF;
  --surface-2: #F7F8FA;
  --input: #FFFFFF;
  --ink: #1F2937;
  --ink-2: #6B7280;
  --ink-3: #8A94A3;
  --placeholder: #9AA5B3;
  --line: #D8DEE6;
  --line-strong: #B8C2CE;
  --accent: #2F3D4E;
  --accent-hover: #37495C;
  --accent-pressed: #263342;
  --accent-ink: #FFFFFF;
  --accent-text: #2F3D4E;
  --accent-text-hover: #263342;
  --separator: #3A4757;
  --success: #2F7D5B;
  --danger: #A52A34;
  --danger-hover: #92242D;
  --danger-disabled: #7C2027;
  --section-bg: #ECEFF3;
  --brand-logo-bg: #FFFFFF;
  --dark-overlay: rgba(13,17,23,.62);
  --card-overlay: rgba(21,31,42,.76);
  --nav-blur: rgba(244,245,247,.90);
  --shadow-strong: rgba(31,41,55,.14);
}

* { box-sizing: border-box; }
html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  font-family: "Cairo", "Segoe UI", Tahoma, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0;
}
img, video, canvas, iframe { max-width: 100%; }
.checkout-grid > *,
.checkout-form > *,
.product-detail > *,
.product-grid > *,
.account-grid > * { min-width: 0; }
body,
.site-header,
.mobile-nav,
.product-card,
.brand-card,
.promo-card,
.category-tile,
.benefits-section,
.checkout-form,
.checkout-summary,
.auth-card,
.account-card,
.site-footer,
.drawer-panel,
input,
select,
textarea,
button {
  transition:
    background-color .22s ease,
    color .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    filter .2s ease;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.container-x { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.h-12 { height: 48px; }
.w-full { width: 100%; }
.py-16 { padding-top: 64px; padding-bottom: 64px; }
.text-center { text-align: center; }
.text-xs { font-size: 12px; line-height: 1.45; }
.text-2xl { font-size: 24px; line-height: 1.35; }
.font-black { font-weight: 800; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.text-accent { color: var(--danger); }
.text-ink-2 { color: var(--ink-2); }
.tracking-widest { letter-spacing: .08em; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.gap-2 { gap: 8px; }
.rounded-lg { border-radius: 8px; }
.border { border-width: 1px; border-style: solid; }
.border-line { border-color: var(--line); }
.bg-accent { background: var(--accent); }
.bg-surface-2 { background: var(--surface-2); }
.px-3 { padding-inline: 12px; }
.px-5 { padding-inline: 20px; }
.px-8 { padding-inline: 32px; }
.py-2\.5 { padding-top: 10px; padding-bottom: 10px; }
.py-3\.5 { padding-top: 14px; padding-bottom: 14px; }
.text-sm { font-size: 14px; line-height: 1.5; }
.text-ink { color: var(--ink); }
.font-bold { font-weight: 700; }
.text-accent-ink { color: var(--accent-ink); }
.outline-none { outline: 0; }
.transition { transition: filter .2s ease, color .2s ease, border-color .2s ease, background .2s ease; }
.hover\:brightness-110:hover { filter: brightness(1.08); }
.disabled\:opacity-40:disabled { opacity: .4; }
.focus\:border-accent:focus { border-color: var(--accent); }
.promo-card:hover .group-hover\:brightness-110 { filter: brightness(1.04); }
input::placeholder,
textarea::placeholder {
  color: var(--placeholder);
  opacity: 1;
}
@media (min-width: 768px) {
  .md\:py-20 { padding-top: 80px; padding-bottom: 80px; }
  .md\:text-3xl { font-size: 30px; line-height: 1.25; }
  .md\:text-4xl { font-size: 36px; line-height: 1.25; }
}
#app { min-height: calc(100svh - 128px); }
.app-loading {
  min-height: calc(100svh - 128px);
  display: grid;
  place-items: center;
  background: var(--bg);
}
.app-loading span {
  width: 42px;
  height: 42px;
  border: 3px solid var(--line);
  border-top-color: var(--accent);
  border-radius: 999px;
  animation: app-spin .75s linear infinite;
}
html.app-booting .site-footer { visibility: hidden; }
@keyframes app-spin { to { transform: rotate(360deg); } }
.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .55s ease,
    transform .55s cubic-bezier(.22, 1, .36, 1),
    border-color .2s ease,
    color .2s ease,
    background-color .2s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--line); background: var(--nav-blur); backdrop-filter: blur(14px); }
.header-inner { min-height: 64px; display: flex; align-items: center; gap: 10px; }
.brand-link { flex: 0 0 auto; display: flex; align-items: center; }
.brand-link img { width: 150px; height: 48px; object-fit: contain; object-position: right center; display: block; }
:root[data-theme="light"] .brand-link img,
:root[data-theme="light"] .footer-logo {
  content: url("/assets/images/autoobenz-logo-light.png");
}
.desktop-nav { display: flex; align-items: center; gap: 18px; margin-inline-start: -10px; color: var(--ink-2); font-size: 14px; }
.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  transition: color .18s ease;
}
.desktop-nav a::after {
  display: none;
  content: none;
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--ink); }
.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  display: none;
  content: none;
}
.header-actions { margin-inline-start: auto; display: flex; align-items: center; gap: 12px; }
.language-switcher { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; direction: ltr; font-size: 12px; color: var(--ink-2); }
.language-switcher button { appearance: none; border: 0; padding: 4px 2px; background: transparent; color: inherit; font: inherit; font-weight: 700; cursor: pointer; }
.language-switcher button[aria-pressed="true"] { color: var(--accent); }
.mobile-language-switcher { justify-content: center; padding: 10px 0 2px; }
html.lang-en p, html.lang-en h1, html.lang-en h2, html.lang-en h3, html.lang-en h4,
html.lang-en label, html.lang-en a, html.lang-en button, html.lang-en li,
html.lang-en td, html.lang-en th, html.lang-en small, html.lang-en .product-title,
html.lang-en .product-brand { unicode-bidi: plaintext; }
html.lang-en input, html.lang-en textarea, html.lang-en select { direction: ltr; text-align: left; }
html.lang-en .product-title,
html.lang-en .product-info h1,
html.lang-en .cart-item h4,
html.lang-en .summary-line b,
html.lang-en .hero-copy { text-align: left; }
html.lang-en .desktop-nav { gap: 11px; font-size: 12px; white-space: nowrap; }
html.lang-en .desktop-nav a { flex: 0 0 auto; white-space: nowrap; }
html.lang-en .header-actions { gap: 8px; }
html.lang-en .whatsapp-link { gap: 5px; font-size: 12px; white-space: nowrap; }
html.lang-en .currency-control select { width: 108px; padding-inline: 8px; font-size: 12px; }
html.lang-en .cart-button { padding-inline: 8px; font-size: 12px; }
.whatsapp-link { display: flex; align-items: center; gap: 8px; color: var(--ink-2); font-size: 14px; }
.whatsapp-link svg { fill: currentColor; stroke: none; }
.currency-control {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.currency-control span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.currency-control select {
  width: 124px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--input);
  color: var(--ink-2);
  padding: 0 12px;
  font-size: 13px;
  direction: rtl;
  text-align: center;
  text-align-last: center;
  outline: 0;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.currency-control select:hover,
.currency-control select:focus {
  border-color: var(--line-strong);
  color: var(--ink);
}
.cart-button {
  position: relative;
  flex: 0 0 auto;
  height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-2);
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 14px;
}
.cart-button svg { width: 18px; height: 18px; }
.cart-button:hover { color: var(--ink); border-color: var(--line-strong); }
.cart-button b {
  position: absolute;
  top: -9px;
  inset-inline-start: -9px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--danger);
  color: #fff;
  font-size: 12px;
}
.theme-toggle {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--ink-2);
  padding: 0;
}
.theme-toggle:hover {
  color: var(--ink);
  border-color: var(--line-strong);
}
.theme-toggle svg {
  width: 18px;
  height: 18px;
}
.theme-toggle .theme-icon-light,
:root[data-theme="light"] .theme-toggle .theme-icon-dark {
  display: none;
}
:root[data-theme="light"] .theme-toggle .theme-icon-light {
  display: block;
}
.icon-button { width: 42px; height: 42px; display: grid; place-items: center; border: 0; color: var(--ink-2); background: transparent; }
.mobile-only, .mobile-nav { display: none; }
.mobile-nav { border-top: 1px solid var(--line); background: var(--surface); }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 14px 20px; border-bottom: 1px solid color-mix(in srgb, var(--line) 60%, transparent); color: var(--ink-2); }
.mobile-currency-control {
  display: block;
  padding: 14px 20px 18px;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 60%, transparent);
  text-align: center;
}
.mobile-currency-control span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-3);
  font-size: 12px;
}
.mobile-currency-control select {
  width: 100%;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--input);
  color: var(--ink);
  padding: 0 10px;
  font-size: 12px;
  direction: rtl;
  text-align: center;
  text-align-last: center;
  outline: 0;
}
.mobile-currency-control select:focus { border-color: var(--accent); }

.hero {
  min-height: calc(100vh - 124px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13,17,23,.88) 0%, rgba(13,17,23,.54) 48%, rgba(13,17,23,.32) 100%),
    linear-gradient(0deg, var(--dark-overlay), rgba(13,17,23,.20)),
    url("/assets/images/hero.webp") center/cover no-repeat;
}
:root[data-theme="light"] .hero::before {
  background:
    linear-gradient(90deg, rgba(244,245,247,.96) 0%, rgba(244,245,247,.72) 48%, rgba(244,245,247,.26) 100%),
    linear-gradient(0deg, rgba(244,245,247,.16), rgba(244,245,247,.04)),
    url("/assets/images/hero.webp") center/cover no-repeat;
}
.hero .container { position: relative; padding: 76px 0; }
.eyebrow { color: var(--accent-text); font-size: 13px; font-weight: 800; letter-spacing: 0; }
.hero-copy {
  max-width: 680px;
  margin-inline: 0;
  text-align: right;
}
.hero-kicker {
  margin: 0 0 16px;
  color: var(--accent-text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .35em;
}
.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.2;
  font-weight: 800;
}
.hero h1 span { color: var(--danger); }
.hero-lead {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--ink-2);
  line-height: 2;
  font-size: clamp(16px, 1.5vw, 18px);
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px 32px;
  margin-top: 24px;
  color: var(--ink-2);
  font-size: 14px;
}
.hero-stats span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-stats i {
  width: 6px;
  height: 6px;
  display: inline-block;
  border-radius: 999px;
  background: var(--danger);
}
:root[data-theme="light"] .hero-lead,
:root[data-theme="light"] .hero-stats {
  color: #243141;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.primary-button, .secondary-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  border: 1px solid transparent;
}
.primary-button { background: var(--accent); color: var(--accent-ink); }
.primary-button:hover { background: var(--accent-hover); filter: none; }
.primary-button:active { background: var(--accent-pressed); }
.secondary-button { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.quote-price {
  color: var(--danger);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}
.ghost-button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--ink-2);
  padding: 0 16px;
  font-weight: 800;
}
.ghost-button:hover { color: var(--ink); border-color: var(--line-strong); }
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 14%, var(--surface));
  color: var(--accent-text);
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 800;
}
.section { padding: 56px 0; }
.brands-section {
  padding: 64px 0 48px;
  background: var(--bg);
}
.center-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  margin-bottom: 32px;
}
.center-title span {
  width: 40px;
  height: 4px;
  border-radius: 999px;
  background: var(--separator);
  margin-bottom: 8px;
}
.center-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
  font-weight: 800;
}
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.section-head h2, .page-title { margin: 0; font-size: 26px; font-weight: 800; line-height: 1.25; }
.section-head p { margin: 8px 0 0; color: var(--ink-3); }
.demand-head span {
  display: block;
  width: 40px;
  height: 4px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: var(--separator);
}
.demand-head h2 {
  font-size: clamp(24px, 3vw, 40px);
}
.demand-head a {
  flex: 0 0 auto;
  color: var(--accent-text);
  font-size: 14px;
  font-weight: 800;
}
.demand-head a:hover {
  text-decoration: underline;
}
.categories-section {
  padding: 0 0 72px;
}
.categories-head span {
  display: block;
  width: 40px;
  height: 4px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: var(--separator);
}
.categories-head h2 {
  margin: 0 0 32px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.25;
  font-weight: 800;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}
.category-tile {
  display: block;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink-2);
  padding: 18px 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  transition: border-color .2s ease, color .2s ease;
}
.category-tile:hover {
  border-color: var(--accent);
  color: var(--ink);
}
.benefits-section {
  border-block: 1px solid var(--line);
  background: var(--surface);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  padding: 48px 0;
  text-align: center;
}
.benefits-grid p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}
.benefits-grid span {
  display: block;
  margin-top: 4px;
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.6;
}
.instagram-section h2 { margin: 0; color: var(--ink); }
.instagram-section p { margin-bottom: 0; font-weight: 600; line-height: 1.7; }
.instagram-section a {
  width: fit-content;
  max-width: 100%;
  justify-content: center;
  padding-inline: 20px;
  font-size: 15px;
  white-space: nowrap;
}
.carbon-fiber-intro { max-width: 850px; color: var(--ink-2); line-height: 2; margin: 0; }
.brand-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.type-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 12px; }
.car-finder {
  width: min(780px, 100%);
  margin: 38px 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  padding: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,.46);
}
.car-finder p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}
.car-finder p svg {
  color: var(--danger);
  flex: 0 0 auto;
}
.car-finder > div {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
}
.car-finder select {
  height: 48px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  background: var(--input);
  color: var(--ink);
  font-size: 14px;
  padding: 0 12px;
}
.car-finder select:focus { border-color: var(--accent); }
.car-finder button {
  height: 48px;
  border: 0;
  border-radius: 8px;
  background: var(--danger);
  color: var(--accent-ink);
  padding: 0 32px;
  font-size: 14px;
  font-weight: 800;
  transition: filter .2s ease;
}
.car-finder button:hover:not(:disabled) { background: var(--danger-hover); filter: none; }
.car-finder button:active:not(:disabled) { background: var(--danger-disabled); }
:root[data-theme="light"] .car-finder button { background: var(--accent); }
:root[data-theme="light"] .car-finder button:hover:not(:disabled) { background: var(--accent-hover); }
:root[data-theme="light"] .car-finder button:active:not(:disabled) { background: var(--accent-pressed); }
.car-finder button:disabled {
  cursor: not-allowed;
  opacity: .4;
}
.brand-marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--bg);
  padding: 20px 0;
}
.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 56px;
  padding-inline: 28px;
  animation: marquee-slide 34s linear infinite;
  will-change: transform;
}
.marquee-track span {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: .82;
}
.marquee-track img {
  width: auto;
  max-width: 64px;
  height: 28px;
  object-fit: contain;
}
.marquee-track b {
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  white-space: nowrap;
}
@keyframes marquee-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.brand-card {
  min-height: 158px;
  display: block;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  padding: 20px;
  color: var(--ink-2);
  text-align: center;
  transition: .2s ease;
}
.brand-card:hover { border-color: var(--accent); color: var(--ink); }
.brand-logo {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: var(--brand-logo-bg);
  padding: 10px;
  transition: transform .2s ease;
}
.brand-card:hover .brand-logo {
  transform: scale(1.05);
}
.brand-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.brand-card b {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
  transition: color .2s ease;
}
.brand-card:hover b { color: var(--accent); }
.brand-card small {
  display: block;
  margin-top: 4px;
  color: var(--ink-3);
  font-size: 12px;
  direction: ltr;
}
.promo-section {
  padding: 28px 0 70px;
  background: var(--bg);
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.promo-card {
  position: relative;
  display: block;
  height: 384px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-2);
}
.promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
  will-change: transform;
}
.promo-card:hover img,
.promo-card:focus-visible img {
  transform: scale(1.05);
}
.promo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--card-overlay) 8%, rgba(21,31,42,.25) 60%, transparent 100%);
  opacity: .94;
  transition: opacity .7s ease, background .7s ease;
}
.promo-card:hover .promo-shade,
.promo-card:focus-visible .promo-shade {
  opacity: 1;
  background: linear-gradient(to top, var(--card-overlay) 10%, rgba(21,31,42,.36) 62%, transparent 100%);
}
.promo-card div {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 32px;
}
.promo-card p {
  margin: 0;
  color: var(--danger);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}
.promo-card .text-xs {
  color: var(--danger);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}
.promo-card .text-2xl {
  color: #F4F5F7;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
  text-wrap: balance;
}
.promo-card h3 {
  margin: 8px 0 0;
  color: #F4F5F7;
  font-size: clamp(24px, 2.55vw, 32px);
  line-height: 1.25;
  font-weight: 800;
}
.promo-card b {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 800;
  transition: filter .2s ease;
}
.promo-card:hover b { background: var(--accent-hover); filter: none; }
.promo-card .bg-accent {
  background: var(--danger);
  color: #fff;
}
.promo-card:hover .bg-accent {
  background: var(--danger-hover);
  filter: none;
}
.promo-card .mt-2 {
  margin-top: 8px;
}
.promo-card .mt-4 {
  margin-top: 16px;
  width: fit-content;
}
.pill-card { border: 1px solid var(--line); background: var(--surface); border-radius: 8px; padding: 16px; color: var(--ink-2); transition: .2s ease; }
.pill-card:hover { border-color: var(--line-strong); color: var(--ink); transform: translateY(-2px); }
.pill-card b { display: block; color: var(--ink); margin-bottom: 4px; }
.shop-layout { padding: 40px 0 64px; }
.filters { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 24px; }
.filters select, .filters input {
  height: 44px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  background: var(--input);
  color: var(--ink);
  padding: 0 12px;
}
.filters select:focus, .filters input:focus { border-color: var(--accent); }
.rims-design-banner {
  position: relative;
  display: block;
  overflow: hidden;
  width: min(100%, 1080px);
  margin: 24px auto 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-2);
  aspect-ratio: 5 / 1.45;
  max-height: 330px;
}
.rims-design-banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.rims-design-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: inherit;
  pointer-events: none;
}
.results-line { color: var(--ink-3); margin-top: 20px; font-size: 14px; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 28px; }
.product-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); transition: .2s ease; }
.product-card:hover { border-color: var(--line-strong); }
.product-image { position: relative; aspect-ratio: 1 / 1; background: var(--surface-2); overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: .4s ease; }
.product-card:hover .product-image img { transform: scale(1.05); }
.brand-card.reveal-item,
.promo-card.reveal-item,
.category-tile.reveal-item,
.product-card.reveal-item {
  transition:
    opacity .55s ease,
    transform .55s cubic-bezier(.22, 1, .36, 1),
    border-color .2s ease,
    color .2s ease,
    background-color .2s ease;
}
.category-tile.reveal-item:hover { transform: translateY(0); }
.product-card.reveal-item:hover { transform: translateY(0); }
.sale-badge { position: absolute; top: 12px; inset-inline-start: 12px; border-radius: 6px; background: var(--danger); color: #fff; padding: 4px 8px; font-size: 12px; font-weight: 800; }
.product-body { flex: 1; display: flex; flex-direction: column; gap: 8px; padding: 14px; }
.product-brand {
  color: #B7C3CF;
  font-size: 12px;
  font-weight: 600;
}
:root[data-theme="light"] .product-brand {
  color: #4B5563;
}
.product-title { min-height: 48px; direction: ltr; text-align: right; font-size: 14px; line-height: 1.7; font-weight: 600; }
.price-row { margin-top: auto; display: flex; align-items: baseline; gap: 8px; }
.price { color: var(--danger); font-weight: 700; }
.old-price { color: var(--ink-3); text-decoration: line-through; font-size: 12px; }
.empty-state { margin-top: 40px; border: 1px solid var(--line); background: var(--surface); border-radius: 10px; padding: 48px 20px; text-align: center; }
.product-page { padding: 40px 0 70px; }
.breadcrumbs { color: var(--ink-3); font-size: 13px; margin-bottom: 26px; }
.product-detail { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; }
.gallery-main { position: relative; width: 100%; aspect-ratio: 1 / 1; border-radius: 12px; overflow: hidden; background: var(--surface-2); border: 1px solid var(--line); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .2s ease; }
.gallery-tools {
  position: absolute;
  inset-inline-end: 14px;
  bottom: 14px;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease;
}
.gallery-main:hover .gallery-tools { opacity: 1; transform: translateY(0); }
.gallery-tools button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  background: rgba(13,17,23,.78);
  color: #fff;
  padding: 0;
}
.gallery-tools svg {
  width: 19px;
  height: 19px;
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.gallery-thumbs.single-page { grid-template-columns: minmax(0, 1fr); }
.gallery-thumbs.single-page .gallery-thumb-arrow { display: none; }
.gallery-thumb-arrow {
  width: 34px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  padding: 0 0 3px;
  font-size: 28px;
  line-height: 1;
}
.gallery-thumb-arrow:hover:not(:disabled) { border-color: var(--accent-text); color: var(--accent-text); }
.gallery-thumb-arrow:disabled { opacity: .32; cursor: default; }
.thumbs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; min-width: 0; }
.thumbs button { aspect-ratio: 1 / 1; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); padding: 0; }
.thumbs button[hidden] { display: none; }
.thumbs button.active { border-color: var(--accent); }
.thumbs img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-info h1 { margin: 4px 0 0; direction: ltr; text-align: right; font-size: 28px; line-height: 1.35; font-weight: 700; }
.product-code {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  margin-top: 10px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--ink-3);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}
.product-code span,
.product-code b {
  display: inline-block;
  flex: 0 0 auto;
  line-height: 1;
  white-space: nowrap;
}
.product-code b {
  color: var(--ink);
  direction: ltr;
  letter-spacing: .02em;
  unicode-bidi: isolate;
}
.detail-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px; margin-top: 18px; }
.detail-price .price { font-size: 32px; }
.detail-price .quote-price { font-size: 22px; }
.installment { margin-top: 12px; border-radius: 8px; background: var(--surface); color: var(--ink-2); padding: 12px 14px; }
.quote-note { color: var(--ink-2); }
.description { color: var(--ink-2); line-height: 2; margin-top: 18px; white-space: pre-line; }
.product-description .description[hidden] { display: none; }
.description-toggle {
  appearance: none;
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent-text);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.description-toggle:hover { color: var(--accent-text-hover); }
.description-toggle:focus-visible { outline: 2px solid var(--accent-text); outline-offset: 4px; border-radius: 3px; }
.chips { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 18px; }
.chip { border: 1px solid var(--line); background: var(--surface); color: var(--ink-2); border-radius: 7px; padding: 6px 10px; font-size: 12px; }
.product-actions { display: flex; gap: 10px; margin-top: 26px; }
.product-buy-box {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}
.zoom-open { overflow: hidden; }
.image-zoom {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  background: rgba(5,8,12,.88);
  padding: 24px;
  overscroll-behavior: contain;
  touch-action: none;
}
.image-zoom.open { display: grid; }
.image-zoom img {
  max-width: min(96vw, 1400px);
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0,0,0,.42);
  user-select: none;
  -webkit-user-drag: none;
}
.image-zoom-close {
  position: fixed;
  top: 18px;
  inset-inline-end: 18px;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  background: rgba(13,17,23,.78);
  color: #fff;
  font-size: 30px;
  line-height: 1;
}
.product-buy-main {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-qty-control {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.product-qty-control button {
  width: 44px;
  height: 48px;
  border: 0;
  background: transparent;
  color: var(--ink-2);
  font-size: 18px;
  transition: color .2s ease, background-color .2s ease;
}
.product-qty-control button:hover {
  color: var(--ink);
  background: var(--surface-2);
}
.product-qty-control span {
  width: 34px;
  text-align: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}
.product-buy-now,
.product-add-cart,
.product-whatsapp-order {
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-size: 14px;
  transition: filter .2s ease, background-color .2s ease, transform .12s ease;
}
.product-buy-now {
  flex: 1;
  border: 0;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 800;
}
.product-buy-now:hover { background: var(--accent-hover); filter: none; }
.product-buy-now:active { background: var(--accent-pressed); }
.product-buy-secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.product-add-cart {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  font-weight: 700;
}
.product-add-cart:hover { background: var(--surface-2); }
.product-add-cart:disabled {
  cursor: not-allowed;
  opacity: .45;
}
.product-add-cart:disabled:hover {
  background: transparent;
}
.product-whatsapp-order {
  background: color-mix(in srgb, var(--green) 15%, transparent);
  color: color-mix(in srgb, var(--green) 84%, var(--ink));
  font-weight: 700;
}
.product-whatsapp-order:hover { background: color-mix(in srgb, var(--green) 25%, transparent); }
.product-whatsapp-order svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: none;
}
.product-buy-now:active,
.product-add-cart:active,
.product-whatsapp-order:active {
  transform: scale(.98);
}
.trust-list { margin: 24px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line); color: var(--ink-2); line-height: 2.2; list-style: none; }
.product-search-panel { max-width: 850px; margin: 40px auto 80px; border: 1px solid var(--line); background: var(--surface); border-radius: 8px; padding: 24px; }
.product-search-panel label { display: block; font-weight: 800; margin-bottom: 12px; }
.product-search-row { display: flex; gap: 12px; }
.product-search-row input { flex: 1; min-width: 0; height: 48px; border: 1px solid var(--line); background: var(--input); color: var(--ink); border-radius: 8px; padding: 0 14px; text-align: left; }
.product-search-result { margin-top: 18px; color: var(--ink-2); line-height: 1.8; }
.product-search-notice { display: grid; gap: 4px; border-top: 1px solid var(--line); padding-top: 16px; }
.product-search-notice.error b { color: var(--danger); }
.product-search-match { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 22px; align-items: center; border-top: 1px solid var(--line); padding-top: 20px; }
.product-search-image { display: block; aspect-ratio: 1; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: var(--surface-2); }
.product-search-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-search-details { min-width: 0; }
.product-search-found { display: block; color: var(--success); font-size: 13px; font-weight: 800; margin-bottom: 4px; }
.product-search-details h2 { margin: 0 0 12px; font-size: 20px; overflow-wrap: anywhere; }
.product-search-actions { display: flex; margin-top: 16px; }
.site-footer { margin-top: 30px; border-top: 1px solid var(--line); background: var(--surface); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 36px; padding: 44px 0; color: var(--ink-2); line-height: 1.9; }
.footer-logo { width: 170px; height: auto; margin-bottom: 12px; }
.site-footer h3 { color: var(--ink); font-size: 14px; margin: 0 0 14px; }
.site-footer ul { padding: 0; margin: 0; list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer a:hover { color: var(--ink); }
.copyright { border-top: 1px solid var(--line); color: var(--ink-3); font-size: 12px; padding: 18px 0; }
.copyright .container { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: center; gap: 12px; }
.copyright .container > :last-child { text-align: end; }
.footer-language-switcher { justify-self: center; }
.footer-payment-strips {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}
.footer-payment-strip {
  display: none;
  width: min(300px, 100%);
  height: auto;
  border-radius: 5px;
}
.lang-ar .footer-payment-strip--ar,
.lang-en .footer-payment-strip--en {
  display: block;
}
.floating-whatsapp { position: fixed; bottom: 20px; inset-inline-start: 20px; z-index: 40; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 999px; background: var(--green); box-shadow: 0 10px 28px var(--shadow-strong); }
.floating-whatsapp svg { width: 27px; height: 27px; fill: #fff; stroke: none; }
.legal-page { padding: 38px 0 76px; }
.legal-container { max-width: 980px; }
.legal-card {
  margin-top: 18px;
  padding: clamp(22px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
}
.legal-header { padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.legal-header span { color: var(--danger); font-size: 12px; font-weight: 800; }
.legal-header h1 { margin: 6px 0 8px; color: var(--ink); font-size: clamp(28px, 5vw, 44px); line-height: 1.3; }
.legal-header time, .legal-updated { color: var(--ink-3); font-size: 13px; }
.legal-intro { padding: 24px 0 8px; color: var(--ink-2); font-weight: 600; }
.legal-intro p, .legal-section p { margin: 0 0 14px; white-space: pre-line; }
.legal-sections { display: grid; gap: 0; }
.legal-section-group {
  margin: 30px 0 0;
  padding: 16px 18px;
  border-inline-start: 4px solid var(--danger);
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--ink);
  font-size: clamp(20px, 3.5vw, 26px);
  line-height: 1.45;
}
.legal-section { padding: 26px 0 12px; border-top: 1px solid var(--line); }
.legal-section:first-child { border-top: 0; }
.legal-section h2 { margin: 0 0 14px; color: var(--ink); font-size: clamp(18px, 3vw, 22px); line-height: 1.5; }
.legal-section p, .legal-section li { color: var(--ink-2); font-size: 15px; line-height: 2; }
.legal-section ul { margin: 8px 0 18px; padding-inline-start: 24px; }
.legal-section li { margin-bottom: 6px; }
.legal-updated { margin-top: 18px; padding-top: 22px; border-top: 1px solid var(--line); font-weight: 700; }
.cart-drawer { position: fixed; inset: 0; z-index: 80; background: rgba(13,17,23,.66); opacity: 0; pointer-events: none; transition: .2s ease; }
.cart-drawer.open { opacity: 1; pointer-events: auto; }
.drawer-panel { width: min(420px, 100%); height: 100%; margin-inline-start: auto; background: var(--surface); border-inline-start: 1px solid var(--line); display: flex; flex-direction: column; transform: translateX(100%); transition: .25s ease; }
.cart-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px; border-bottom: 1px solid var(--line); }
.drawer-head h2 { margin: 0; }
.cart-items { flex: 1; overflow: auto; padding: 14px; }
.cart-item { display: grid; grid-template-columns: 74px 1fr auto; gap: 12px; align-items: center; border-bottom: 1px solid var(--line); padding: 12px 0; }
.cart-item-wheel { grid-template-columns: 74px minmax(0, 1fr); align-items: start; }
.cart-item img { width: 74px; height: 74px; object-fit: cover; border-radius: 8px; background: var(--surface-2); }
.cart-item h4 { margin: 0; font-size: 13px; direction: ltr; text-align: right; line-height: 1.5; }
.qty-row { display: flex; align-items: center; gap: 8px; margin-top: 8px; color: var(--ink-2); }
.cart-item .qty-row b { color: var(--danger); font-weight: 700; }
.qty-row button { width: 26px; height: 26px; display: inline-grid; place-items: center; border-radius: 6px; border: 1px solid var(--line); background: transparent; color: var(--ink); line-height: 1; padding: 0; }
.remove { border: 0; background: transparent; color: var(--danger); }
.cart-wheel-total { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 6px 0 8px; color: var(--ink-2); font-size: 12px; font-weight: 900; }
.cart-wheel-total b { color: var(--danger); white-space: nowrap; }
.cart-wheel-lines { display: grid; gap: 8px; margin-top: 8px; }
.cart-wheel-line { display: grid; grid-template-columns: 1fr auto; gap: 8px 10px; align-items: center; border: 1px solid var(--line); border-radius: 8px; background: var(--surface-2); padding: 8px; }
.cart-wheel-spec { grid-column: 1 / -1; }
.cart-wheel-line b { display: block; color: var(--ink); font-size: 12px; font-weight: 900; }
.cart-wheel-line small { display: block; margin-top: 3px; color: var(--ink-3); font-size: 11px; line-height: 1.45; }
.cart-wheel-line .qty-row { margin-top: 0; }
.cart-wheel-line strong { color: var(--danger); white-space: nowrap; font-size: 12px; }
.cart-wheel-line .remove { justify-self: end; }
.drawer-foot { border-top: 1px solid var(--line); padding: 16px; }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 12px; }
.checkout-page { padding: 44px 0 76px; }
.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr);
  gap: 22px;
  align-items: start;
}
.checkout-form, .checkout-summary, .success-panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 20px;
}
.checkout-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 24px;
}
.checkout-form-section {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding-top: 2px;
}
.checkout-form-section + .checkout-form-section {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.checkout-form-section-head {
  display: grid;
  gap: 4px;
}
.checkout-form-section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.45;
}
.checkout-form-section-head p {
  margin: 0;
  color: var(--ink-3);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
}
.checkout-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.checkout-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 700;
}
.checkout-form input, .checkout-form select, .checkout-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  background: var(--input);
  color: var(--ink);
  padding: 0 12px;
  font-size: 16px;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.4;
}
.checkout-form input, .checkout-form select { height: 46px; }
.checkout-form textarea { padding-block: 12px; resize: vertical; }
.checkout-form input:focus, .checkout-form select:focus, .checkout-form textarea:focus { border-color: var(--accent); }
.checkout-form .checkout-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--input);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
  cursor: pointer;
}
.checkout-form .checkout-consent input[type="checkbox"] {
  flex: 0 0 18px;
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin: 3px 0 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  display: grid;
  place-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--input);
  cursor: pointer;
}
.checkout-form .checkout-consent input[type="checkbox"]::after {
  content: "";
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: translateY(-1px) rotate(45deg) scale(.7);
  transition: opacity .15s ease, transform .15s ease;
}
.checkout-form .checkout-consent input[type="checkbox"]:checked {
  border-color: #a52a34;
  background: #a52a34;
}
.checkout-form .checkout-consent input[type="checkbox"]:checked::after {
  opacity: 1;
  transform: translateY(-1px) rotate(45deg) scale(1);
}
.checkout-form .checkout-consent input[type="checkbox"]:focus-visible {
  outline: 2px solid color-mix(in srgb, #a52a34 55%, transparent);
  outline-offset: 2px;
}
.checkout-consent span { min-width: 0; }
.checkout-consent a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--ink-3);
  text-underline-offset: 3px;
}
.checkout-consent i {
  display: inline-block;
  margin-inline: 8px;
  color: var(--ink-3);
  font-style: normal;
  font-weight: 500;
}
.checkout-consent a:hover { color: var(--danger); }
.invoice-email-input::placeholder {
  color: var(--placeholder);
  font-weight: 400;
  opacity: .68;
}
.email-verification {
  display: grid;
  gap: 10px;
  margin-top: 0;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface-2);
}
.email-verification-actions,
.email-otp-entry {
  display: flex;
  align-items: center;
  gap: 12px;
}
.email-otp-entry.hidden { display: none; }
.email-verification-actions span {
  color: var(--ink-3);
  font-size: 12px;
  line-height: 1.6;
}
.email-verification .secondary-button {
  min-height: 40px;
  padding: 8px 14px;
  white-space: nowrap;
}
.email-verification .secondary-button:disabled {
  cursor: default;
  opacity: .72;
}
.email-otp-entry input {
  width: 150px;
  max-width: 45vw;
  text-align: center;
  letter-spacing: 7px;
  font-weight: 800;
}
.email-verification p {
  min-height: 0;
  margin: 0;
  color: var(--ink-3);
  font-size: 12px;
  line-height: 1.6;
}
.email-verification p.success { color: #23855b; }
.email-verification p.error { color: var(--danger); }
.span-2 { grid-column: span 2; }
.checkout-account-note {
  margin: 0;
  border: 0;
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--ink-2);
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.7;
}
.checkout-account-note a { color: var(--accent-text); font-weight: 800; }
.payment-options {
  display: grid;
  gap: 9px;
}
.payment-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 68px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-2);
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.payment-option:hover,
.payment-option:has(input:checked) {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, var(--surface-2));
}
.payment-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}
.payment-option span {
  display: grid;
  gap: 6px;
}
.payment-option b {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}
.payment-option small {
  color: var(--ink-3);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
}
.lang-ar .payment-option {
  direction: rtl;
  text-align: right;
}
.lang-en .payment-option {
  direction: ltr;
}
.lang-en .payment-option span {
  direction: ltr;
  text-align: left;
}
.payment-option--sadad {
  position: relative;
  grid-template-columns: auto minmax(0, 1fr);
}
.lang-ar .payment-option--sadad { padding-left: 154px; }
.lang-en .payment-option--sadad { padding-right: 154px; }
.payment-option--sadad span {
  min-width: 0;
  gap: 3px;
}
.payment-option--sadad b,
.payment-option--sadad small {
  white-space: nowrap;
}
.payment-option--sadad small {
  font-size: 12px;
  line-height: 1.35;
}
.lang-en .payment-option--sadad small {
  font-size: 10px;
}
.sadad-payment-methods {
  display: block;
  position: absolute;
  top: 50%;
  width: 130px;
  height: auto;
  transform: translateY(-50%);
  border-radius: 5px;
  opacity: 1;
}
.lang-ar .sadad-payment-methods { left: 16px; }
.lang-en .sadad-payment-methods { right: 16px; }
.payment-option--deema {
  position: relative;
}
.lang-ar .payment-option--deema { padding-left: 118px; }
.lang-en .payment-option--deema { padding-right: 118px; }
.payment-option--deema span {
  min-width: 0;
  gap: 3px;
}
.payment-option--deema small {
  white-space: nowrap;
  font-size: 11px;
  line-height: 1.35;
}
.deema-payment-badge {
  display: none;
  position: absolute;
  top: 50%;
  width: 88px;
  height: auto;
  transform: translateY(-50%);
  border-radius: 5px;
}
.lang-ar .deema-payment-badge { left: 16px; }
.lang-en .deema-payment-badge { right: 16px; }
.lang-ar .deema-payment-badge--ar,
.lang-en .deema-payment-badge--en {
  display: block;
}
.payment-option--taly {
  position: relative;
}
.lang-ar .payment-option--taly { padding-left: 106px; }
.lang-en .payment-option--taly { padding-right: 106px; }
.payment-option--taly span {
  min-width: 0;
  gap: 3px;
}
.payment-option--taly small {
  white-space: nowrap;
  font-size: 11px;
  line-height: 1.35;
}
.taly-marketing-badge {
  display: none;
  position: absolute;
  top: 50%;
  width: 74px;
  height: auto;
  transform: translateY(-50%);
}
.checkout-submit-area {
  display: grid;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.checkout-submit-area > .primary-button {
  width: 100%;
  min-height: 48px;
  font-size: 16px;
}
.checkout-summary {
  position: sticky;
  top: 90px;
}
.lang-ar .taly-marketing-badge { left: 16px; }
.lang-en .taly-marketing-badge { right: 16px; }
.lang-ar .taly-marketing-badge--ar,
.lang-en .taly-marketing-badge--en {
  display: block;
}
@media (max-width: 360px) {
  .lang-ar .payment-option--sadad { padding-left: 130px; }
  .lang-en .payment-option--sadad { padding-right: 130px; }
  .payment-option--sadad b {
    font-size: 13px;
  }
  .payment-option--sadad small {
    font-size: 10.5px;
  }
  .sadad-payment-methods {
    width: 108px;
  }
  .lang-ar .payment-option--taly { padding-left: 94px; }
  .lang-en .payment-option--taly { padding-right: 94px; }
  .lang-ar .payment-option--deema { padding-left: 104px; }
  .lang-en .payment-option--deema { padding-right: 104px; }
  .payment-option--deema b {
    font-size: 13px;
  }
  .payment-option--deema small {
    font-size: 10px;
  }
  .deema-payment-badge {
    width: 76px;
  }
  .payment-option--taly b {
    font-size: 13px;
  }
  .payment-option--taly small {
    font-size: 10px;
  }
  .taly-marketing-badge {
    width: 66px;
  }
}
.checkout-message { min-height: 22px; margin: 0; color: var(--ink-3); font-size: 13px; }
.checkout-message.error { color: var(--danger); }
.checkout-summary h2 { margin: 0 0 16px; font-size: 20px; }
.summary-lines { display: grid; gap: 12px; }
.summary-line {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.summary-line img { width: 58px; height: 58px; object-fit: cover; border-radius: 8px; background: var(--surface-2); }
.summary-line b {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  direction: ltr;
  text-align: right;
  color: var(--ink);
  font-size: 13px;
}
.summary-line span { display: block; margin-top: 4px; color: var(--ink-3); font-size: 12px; }
.summary-line strong { color: var(--accent-text); white-space: nowrap; }
.summary-line-wheel { align-items: start; }
.summary-wheel-lines { display: grid; gap: 6px; margin-top: 8px; }
.summary-wheel-line { border: 1px solid var(--line); border-radius: 8px; background: var(--surface-2); padding: 7px 8px; }
.summary-wheel-line b { display: block; -webkit-line-clamp: unset; -webkit-box-orient: unset; overflow: visible; direction: inherit; text-align: inherit; color: var(--ink); font-size: 12px; font-weight: 900; }
.summary-wheel-line small { display: block; margin-top: 3px; color: var(--ink-3); font-size: 11px; line-height: 1.45; }
.coupon-box {
  display: grid;
  gap: 9px;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-2);
  padding: 14px;
}
.coupon-box label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.coupon-box > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}
.coupon-box input {
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  background: var(--input);
  color: var(--ink);
  padding: 0 12px;
  font-size: 14px;
  text-transform: uppercase;
}
.coupon-box input:focus { border-color: var(--accent); }
.coupon-box button {
  min-width: 82px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 13px;
  font-weight: 800;
}
.coupon-box button:disabled { opacity: .55; cursor: wait; }
.coupon-box p {
  min-height: 18px;
  margin: 0;
  color: var(--ink-3);
  font-size: 12px;
  line-height: 1.6;
}
.coupon-box p.success { color: var(--success); }
.coupon-box p.error { color: var(--danger); }
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  color: var(--ink-2);
  font-size: 14px;
}
.summary-row b {
  max-width: 62%;
  color: var(--ink);
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: end;
}
.summary-row.discount b { color: var(--success); }
.summary-total { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; font-size: 18px; font-weight: 800; }
.checkout-summary p { margin: 16px 0 0; color: var(--ink-3); font-size: 13px; line-height: 1.8; }
.success-panel {
  max-width: 720px;
  margin: 20px auto 60px;
  text-align: center;
}
.success-panel > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 28px;
  font-weight: 800;
}
.success-panel h1 { margin: 0 0 12px; font-size: 32px; }
.success-panel p { color: var(--ink-2); line-height: 1.9; }
.success-panel .product-actions { justify-content: center; }

.auth-page, .account-page { padding: 48px 0 78px; }
.auth-card {
  width: min(520px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 24px;
}
.auth-head span, .account-head span {
  display: block;
  width: 40px;
  height: 4px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: var(--accent);
}
.auth-head h1, .account-head h1 { margin: 0; font-size: 30px; line-height: 1.35; }
.auth-head p, .account-head p { margin: 8px 0 0; color: var(--ink-2); line-height: 1.8; }
.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 22px 0 18px;
}
.auth-tabs a {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-2);
  font-weight: 800;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.auth-tabs a:hover, .auth-tabs a.active {
  color: var(--ink);
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
}
.auth-form, .account-card {
  display: grid;
  gap: 14px;
}
.auth-form label, .account-card label {
  display: grid;
  gap: 8px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 700;
}
.auth-form input, .auth-form select, .auth-form textarea, .account-card input, .account-card select, .account-card textarea {
  width: 100%;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  background: var(--input);
  color: var(--ink);
  padding: 0 12px;
  font-size: 16px;
}
.auth-form textarea, .account-card textarea {
  height: auto;
  min-height: 92px;
  padding-block: 12px;
  resize: vertical;
}
.auth-form input:focus, .auth-form select:focus, .auth-form textarea:focus, .account-card input:focus, .account-card select:focus, .account-card textarea:focus { border-color: var(--accent); }
.auth-notice {
  margin: 0 0 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-2);
  color: var(--ink-2);
  padding: 12px 14px;
  line-height: 1.8;
}
.form-message { min-height: 20px; margin: 0; color: var(--ink-3); font-size: 13px; }
.form-message.error { color: var(--danger); }
.form-message.success { color: var(--success); }
.account-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.account-grid {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: 18px;
  align-items: start;
}
.account-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 20px;
}
.account-card h2 { margin: 0; font-size: 22px; }
.account-orders-loading { color: var(--ink-3); }
.account-order {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-2);
  padding: 14px;
}
.account-order small { color: var(--ink-3); }
.account-order h3 { margin: 4px 0 2px; font-size: 18px; }
.account-order p { margin: 0; color: var(--ink-2); font-size: 13px; }
.account-order > div:nth-child(2) {
  display: grid;
  justify-items: end;
  align-content: start;
  gap: 8px;
}
.account-order > div:nth-child(2) b { color: var(--accent-text); }
.account-order details {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.account-order summary {
  cursor: pointer;
  color: var(--ink-2);
  font-weight: 800;
}
.account-items {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}
.account-items > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink-2);
  font-size: 13px;
}
.account-items strong { color: var(--ink); white-space: nowrap; }
.empty-state.compact { padding: 28px 16px; }

.wheel-configurator {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}
.wheel-config-head { grid-column: 1 / -1; display: flex; align-items: end; justify-content: space-between; gap: 12px; }
.wheel-config-head span { color: var(--ink-3); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.wheel-config-head h2 { margin: 0; font-size: 20px; }
.wheel-option { display: grid; gap: 8px; }
.wheel-option h3 { display: flex; align-items: center; gap: 8px; margin: 0; font-size: 14px; }
.wheel-option small { color: var(--ink-3); font-size: 11px; font-weight: 800; }
.wheel-chip-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.wheel-chip-grid.compact { max-height: 112px; overflow: auto; padding-bottom: 2px; }
.wheel-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--ink);
  padding: 0 12px;
  font-weight: 900;
  cursor: pointer;
}
.wheel-chip.active {
  border-color: var(--accent);
  background: rgba(198,40,40,.12);
  box-shadow: 0 0 0 2px rgba(198,40,40,.1);
}
.wheel-chip i {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  background: var(--wheel-color);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.16);
}
.wheel-select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--ink);
  padding: 0 12px;
  font-weight: 900;
  outline: 0;
}
.wheel-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 18%, transparent);
}
.wheel-message { grid-column: 1 / -1; margin: 0; color: #e85d64; font-weight: 900; }
.cart-options { display: grid; gap: 2px; margin: 4px 0 8px; color: var(--ink-3); font-size: 12px; line-height: 1.45; }
.cart-options small:first-child { color: var(--ink); font-weight: 900; }

@media (min-width: 1121px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 10px;
  }
  .brand-link,
  .desktop-nav,
  .header-actions {
    margin-inline: 0;
  }
  .desktop-nav {
    min-width: 0;
  }
  .header-actions {
    justify-self: end;
  }
  html.lang-ar .brand-link img {
    object-position: right center;
  }
  html.lang-en .brand-link img {
    object-position: left center;
  }
}

@media (min-width: 921px) and (max-width: 1120px) {
  html.lang-en .desktop-nav,
  html.lang-en .whatsapp-link { display: none; }
  html.lang-en .mobile-only { display: grid; }
  html.lang-en .header-inner { justify-content: flex-start; }
  html.lang-en .mobile-only { order: 1; margin-inline-start: -8px; }
  html.lang-en .brand-link { order: 2; margin-left: -40px; }
  html.lang-en .header-actions { order: 3; margin-inline-start: auto; }
}

@media (max-width: 920px) {
  .desktop-nav, .whatsapp-link { display: none; }
  .mobile-only { display: grid; }
  .header-inner { min-height: 64px; gap: 10px; justify-content: flex-start; }
  .mobile-only { order: 1; margin-inline-start: -8px; }
  .brand-link { order: 2; margin-inline: 0; }
  .brand-link img { width: 120px; height: 44px; object-position: right center; }
  .header-actions { order: 3; margin-inline-start: auto; }
  .header-actions > .currency-control,
  .header-actions > .language-switcher { display: none; }
  html.lang-en .mobile-only { order: 1; margin-inline-start: -8px; }
  html.lang-en .brand-link { order: 2; margin-left: -40px; }
  .filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .car-finder > div { grid-template-columns: 1fr; }
  .brand-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .categories-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promo-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-detail, .checkout-grid, .account-grid { grid-template-columns: 1fr; }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
    padding: 32px 0;
    line-height: 1.65;
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
  .footer-grid > div:first-child {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    align-items: center;
    gap: 4px 16px;
  }
  .footer-grid > div:first-child .footer-logo {
    grid-row: 1 / 3;
    width: 130px;
    margin: 0;
  }
  .footer-grid > div:first-child p {
    margin: 0;
  }
  .footer-grid > div:last-child ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
  }
  .footer-grid > div:last-child li {
    margin: 0;
  }
}

@media (max-width: 620px) {
  .checkout-page { padding-top: 28px; }
  .checkout-form { gap: 18px; padding: 16px; }
  .checkout-fields { grid-template-columns: 1fr; gap: 14px; }
  .checkout-fields .span-2 { grid-column: span 1; }
  .checkout-form-section + .checkout-form-section { padding-top: 18px; }
  .checkout-form-section-head h2 { font-size: 17px; }
  .checkout-summary { position: static; }
  .email-verification-actions { align-items: stretch; flex-direction: column; }
  .email-verification-actions .secondary-button { width: 100%; }
  .email-otp-entry { align-items: stretch; }
  .email-otp-entry input { width: min(100%, 170px); max-width: none; }
  .email-otp-entry .secondary-button { flex: 1; }
  body :is(input:not([type="checkbox"]):not([type="radio"]), select, textarea) {
    max-width: 100%;
    font-size: 16px;
  }
  button,
  a,
  input,
  select,
  textarea { touch-action: manipulation; }
  .container { width: min(100% - 24px, 1180px); }
  .legal-page { padding: 24px 0 56px; }
  .legal-card { padding: 20px 16px; border-radius: 10px; }
  .legal-section p, .legal-section li { font-size: 14px; line-height: 1.9; }
  .copyright .container { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .copyright .container > :last-child { text-align: center; }
  .footer-payment-strips { justify-content: center; width: 100%; }
  .footer-payment-strip { width: min(290px, 100%); }
  .currency-control select {
    width: 132px;
    padding: 0 18px;
    font-size: 14px;
    appearance: none;
    -webkit-appearance: none;
    background:
      linear-gradient(45deg, transparent 50%, currentColor 50%) left 13px center / 6px 6px no-repeat,
      linear-gradient(135deg, currentColor 50%, transparent 50%) left 9px center / 6px 6px no-repeat,
      var(--surface);
    text-align: center;
    text-align-last: center;
  }
  .cart-button span { display: none; }
  .hero { min-height: 560px; }
  .hero-copy { text-align: right; }
  .hero-kicker { letter-spacing: .22em; font-size: 11px; }
  .hero h1 { font-size: 36px; line-height: 1.25; }
  .hero-lead { font-size: 15px; margin-inline: 0; }
  .hero-stats { justify-content: flex-start; gap: 8px 18px; }
  html.lang-en .hero-stats {
    flex-wrap: nowrap;
    justify-content: center;
    gap: clamp(8px, 2.4vw, 12px);
    width: 100%;
    font-size: clamp(11px, 3.2vw, 14px);
  }
  html.lang-en .hero-stats span {
    flex: 0 1 auto;
    gap: 4px;
    white-space: nowrap;
  }
  html.lang-en .hero-stats i {
    width: 5px;
    height: 5px;
    flex: 0 0 5px;
  }
  .car-finder { padding: 16px; }
  .car-finder button { width: 100%; }
  .brands-section { padding-top: 52px; }
  .brand-strip { gap: 12px; }
  .brand-card { min-height: 150px; padding: 16px 10px; }
  .brand-logo { width: 60px; height: 60px; }
  .brand-card b { font-size: 15px; }
  .brand-card small { font-size: 12px; }
  .promo-card { height: 320px; }
  .promo-card div { padding: 24px; }
  .categories-section { padding-bottom: 56px; }
  .categories-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .category-tile { padding: 18px 12px; }
  .category-tile:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 10px) / 2);
  }
  .benefits-grid { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
  .instagram-section { padding: 56px 0; }
  .section-head { display: block; }
  .filters { grid-template-columns: 1fr; }
  .rims-design-banner {
    aspect-ratio: 3 / 1;
    max-height: 170px;
  }
  .rims-design-banner img {
    object-position: center;
  }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .product-title { min-height: 72px; font-size: 13px; }
  .product-body { padding: 12px; }
  .product-info h1 { font-size: 23px; }
  .product-actions, .product-search-row { flex-direction: column; }
  .product-search-row .primary-button { width: 100%; }
  .product-search-match { grid-template-columns: 96px minmax(0, 1fr); gap: 14px; align-items: start; }
  .product-search-details h2 { font-size: 16px; }
  .product-search-actions { grid-column: 1 / -1; }
  .product-search-actions .primary-button { width: 100%; }
  .gallery-tools { opacity: 1; transform: none; }
  .image-zoom { padding: 14px; }
  .image-zoom img { max-width: 96vw; max-height: 88vh; }
  .wheel-configurator { grid-template-columns: 1fr; }
  .wheel-config-head { align-items: flex-start; flex-direction: column-reverse; gap: 4px; }
  .checkout-form { grid-template-columns: 1fr; }
  .span-2 { grid-column: span 1; }
  .account-head { align-items: stretch; flex-direction: column; }
  .account-order { grid-template-columns: 1fr; }
  .account-order > div:nth-child(2) { justify-items: start; }
  .summary-line { grid-template-columns: 52px minmax(0, 1fr); }
  .summary-line strong { grid-column: 2; }
  .cart-wheel-total { align-items: flex-start; flex-direction: column; }
  .cart-wheel-line { grid-template-columns: 1fr; }
  .cart-wheel-spec { grid-column: auto; }
  .cart-wheel-line .qty-row { justify-content: flex-start; }
  .cart-wheel-line .remove { justify-self: start; }
  .drawer-panel { width: 100%; }
}

@media (max-width: 380px) {
  .footer-grid > div:first-child {
    display: block;
  }
  .footer-grid > div:first-child .footer-logo {
    width: 120px;
    margin-bottom: 8px;
  }
  .footer-grid > div:first-child p {
    margin-bottom: 6px;
  }
}

.success-panel .product-actions {
  width: fit-content;
  max-width: 100%;
  margin: 26px auto 0;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.success-panel .product-actions .primary-button,
.success-panel .product-actions .secondary-button {
  min-width: 190px;
  justify-content: center;
}

@media (max-width: 620px) {
  .success-panel .product-actions {
    width: min(100%, 360px);
    flex-direction: column;
  }

  .success-panel .product-actions .primary-button,
  .success-panel .product-actions .secondary-button {
    width: 100%;
  }
}
