.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 24px;
}

.page-shell {
  padding: 40px 0 88px;
}

.maintenance-body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(59, 130, 246, 0.18), transparent 28%),
    radial-gradient(circle at 90% 0%, rgba(14, 165, 233, 0.12), transparent 24%),
    linear-gradient(180deg, #edf4ff 0%, #f7fbff 46%, #eef5fb 100%);
  overflow-x: hidden;
  overflow-y: auto;
}

html[data-theme="dark"] .maintenance-body {
  background:
    radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.24), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(6, 182, 212, 0.14), transparent 24%),
    linear-gradient(180deg, #07111f 0%, #091426 46%, #0d1a2d 100%);
}

.maintenance-orb {
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(20px);
  opacity: 0.9;
  z-index: 0;
}

.maintenance-orb--one {
  top: -120px;
  left: -90px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18), transparent 68%);
}

.maintenance-orb--two {
  right: -110px;
  bottom: -140px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.16), transparent 70%);
}

.maintenance-shell {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 42px 24px;
}

.maintenance-stage {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  display: grid;
  gap: 20px;
  justify-items: center;
}

.maintenance-brand {
  position: relative;
  z-index: 1;
}

.maintenance-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 34px 90px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(28px);
}

html[data-theme="dark"] .maintenance-card {
  background: rgba(8, 15, 28, 0.74);
  border-color: rgba(148, 163, 184, 0.16);
  box-shadow:
    0 34px 84px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.maintenance-card--hero {
  display: grid;
  gap: 28px;
  padding: clamp(28px, 5vw, 44px);
}

.maintenance-card__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.18), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(14, 165, 233, 0.12), transparent 24%);
  pointer-events: none;
}

html[data-theme="dark"] .maintenance-card__backdrop {
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.12), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(14, 165, 233, 0.1), transparent 22%);
}

.maintenance-card__topline,
.maintenance-copy,
.maintenance-chip-row,
.maintenance-access-panel {
  position: relative;
  z-index: 1;
}

.maintenance-card__topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.maintenance-copy h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.maintenance-copy p {
  margin: 0;
  max-width: 56ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.maintenance-badges {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.maintenance-badge {
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  letter-spacing: 0.12em;
}

.maintenance-chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.maintenance-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  background: rgba(255, 255, 255, 0.56);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

html[data-theme="dark"] .maintenance-chip {
  border-color: rgba(96, 165, 250, 0.16);
  background: rgba(15, 23, 42, 0.54);
}

.maintenance-access-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(243, 247, 255, 0.76));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

html[data-theme="dark"] .maintenance-access-panel {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.82), rgba(10, 18, 32, 0.78));
  border-color: rgba(148, 163, 184, 0.14);
}

.maintenance-access-panel__head strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.maintenance-access-panel__head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.maintenance-form {
  display: grid;
  gap: 14px;
  width: 100%;
}

.maintenance-form__field {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 0 10px 0 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

html[data-theme="dark"] .maintenance-form__field {
  background: rgba(7, 17, 31, 0.84);
  border-color: rgba(148, 163, 184, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.maintenance-form__field:focus-within {
  border-color: var(--ring);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.maintenance-form__field.is-error {
  border-color: rgba(220, 38, 38, 0.56);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.maintenance-form__icon {
  font-size: 16px;
  line-height: 1;
  opacity: 0.72;
}

.maintenance-form input[type="password"],
.maintenance-form input[type="text"] {
  min-height: 58px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.maintenance-form input[type="password"]:focus,
.maintenance-form input[type="text"]:focus {
  box-shadow: none;
}

.maintenance-form__toggle {
  min-width: 92px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

html[data-theme="dark"] .maintenance-form__toggle {
  background: rgba(15, 23, 42, 0.82);
}

.maintenance-form__toggle:hover {
  transform: translateY(-1px);
  border-color: var(--ring);
}

.maintenance-form__help {
  margin-top: -2px;
}

.maintenance-form__submit {
  width: 100%;
  min-height: 56px;
  border-radius: 20px;
  box-shadow: 0 20px 38px rgba(37, 99, 235, 0.2);
}

.maintenance-form__note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.02em;
}

.maintenance-brand .brand-lockup__mark,
.maintenance-brand .brand-lockup__logo {
  width: 60px;
  height: 60px;
  border-radius: 20px;
}

.maintenance-info-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.maintenance-info-card {
  display: grid;
  gap: 10px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}

html[data-theme="dark"] .maintenance-info-card {
  background: rgba(8, 15, 28, 0.58);
  border-color: rgba(148, 163, 184, 0.12);
}

.maintenance-info-card__eyebrow {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.maintenance-info-card h2 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.maintenance-info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.maintenance-technical-hint {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.section-stack {
  display: grid;
  gap: clamp(48px, 5vw, 72px);
}

.section-stack--shop-home {
  gap: clamp(28px, 4vw, 52px);
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 15px;
}

.section-heading--compact {
  gap: 8px;
  margin-bottom: 18px;
}

.section-heading--compact h2 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.panel--dense {
  padding: 24px;
}

.topbar {
  position: relative;
  z-index: 32;
  border-bottom: 1px solid rgba(37, 99, 235, 0.14);
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.06) 0%, rgba(14, 165, 233, 0.08) 50%, rgba(37, 99, 235, 0.06) 100%);
  background: rgba(248, 250, 252, 0.72);
  backdrop-filter: blur(18px);
}

html[data-theme="dark"] .topbar {
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.12) 0%, rgba(14, 165, 233, 0.10) 50%, rgba(37, 99, 235, 0.12) 100%);
  border-bottom-color: rgba(96, 165, 250, 0.18);
}

.topbar__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 44px;
  font-size: 13px;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--border);
  background: rgba(248, 251, 255, 0.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  padding-top: env(safe-area-inset-top);
}

html[data-theme="dark"] .site-header {
  background: rgba(5, 10, 20, 0.90);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 88px;
}

.site-header .header-actions {
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 10px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-lockup__mark,
.brand-lockup__logo {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  object-fit: cover;
}

.brand-lockup__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), #5ca1ff);
  color: var(--primary-contrast);
  box-shadow: 0 20px 34px rgba(37, 99, 235, 0.28);
  font-weight: 800;
}

.brand-lockup__text {
  display: grid;
  gap: 4px;
}

.brand-lockup__text strong {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.brand-lockup__text small {
  color: var(--muted);
  font-size: 13px;
}

.header-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.header-search input {
  min-width: 0;
}

.header-search__submit {
  min-width: 46px;
  width: 46px;
  padding: 0;
}

.cart-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cart-chip__icon {
  font-size: 16px;
  line-height: 1;
}

.mobile-menu-btn {
  min-width: 44px;
  width: 44px;
  padding: 0;
}

.mobile-menu-btn__icon {
  font-size: 18px;
  line-height: 1;
}

.site-nav {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.site-nav__inner {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  min-height: 56px;
}

.site-nav__inner a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav__inner a:hover {
  color: var(--text);
  background: var(--bg-soft);
}

.site-nav__inner .is-active {
  color: var(--primary);
  background: var(--primary-light);
}

.badge-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-contrast);
  font-size: 11px;
}

.account-chip {
  position: relative;
  min-width: 44px;
  width: 44px;
  min-height: 44px;
  padding: 0;
}

.account-chip__icon {
  position: relative;
  width: 14px;
  height: 14px;
  border: 1.8px solid currentColor;
  border-radius: 999px;
  transform: translateY(-4px);
}

.account-chip__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 13px;
  transform: translateX(-50%);
  width: 22px;
  height: 12px;
  border: 1.8px solid currentColor;
  border-top: 0;
  border-radius: 0 0 12px 12px;
}

.account-chip.is-logged::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 7px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  border: 1.5px solid var(--card-strong);
  box-shadow:
    0 0 0 2px var(--card-strong),
    0 0 0 5px rgba(34, 197, 94, 0.18);
}

.theme-toggle {
  min-width: 88px;
  padding: 6px;
  position: relative;
}

.theme-toggle::after {
  content: "";
  position: absolute;
  inset: 5px auto 5px 5px;
  width: calc(50% - 5px);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.16), rgba(14, 165, 233, 0.2));
  transition: transform 180ms ease;
}

html[data-theme="dark"] .theme-toggle::after {
  transform: translateX(100%);
}

.theme-toggle__slot {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
}

.mobile-only {
  display: none;
}

.drawer {
  position: fixed;
  inset: 0;
  padding: 20px;
  background: rgba(2, 6, 23, 0.48);
  backdrop-filter: blur(4px);
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drawer__panel {
  width: min(420px, 100%);
  height: 100%;
  margin-left: auto;
  padding: 28px;
  border-radius: var(--radius-2xl);
  background: var(--card-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: grid;
  align-content: start;
  gap: 18px;
  transform: translateX(24px);
  transition: transform 220ms ease;
}

.drawer.is-open .drawer__panel {
  transform: translateX(0);
}

.drawer--popover {
  inset: 0;
  padding: 0;
  background: transparent;
}

.drawer--popover .drawer__panel {
  position: absolute;
  top: 96px;
  right: 24px;
  width: min(340px, calc(100vw - 28px));
  height: auto;
  margin: 0;
  padding: 16px;
  border-radius: 14px;
  gap: 12px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.25);
  transform: translateY(-8px) scale(0.98);
}

.drawer--popover.is-open .drawer__panel {
  transform: translateY(0) scale(1);
}

.drawer--popover .drawer__panel::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 22px;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  background: var(--card-strong);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.drawer--popover .drawer__close {
  display: none;
}

.drawer__grid,
.drawer__links {
  display: grid;
  gap: 12px;
}

.drawer__account-meta {
  display: grid;
  gap: 2px;
  margin-top: -4px;
  margin-bottom: 6px;
}

.account-popover-form {
  display: grid;
  gap: 10px;
}

.account-popover-form input[type="email"],
.account-popover-form input[type="password"] {
  min-height: 44px;
  border-radius: 12px;
}

.account-popover-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
}

.account-popover-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 0;
}

.account-popover-footer {
  font-size: 14px;
  text-align: center;
  color: var(--muted);
}

.account-popover-footer a {
  color: #0f7f8e;
  font-weight: 700;
}

.drawer__close {
  justify-self: end;
}

.drawer--mobile-menu .drawer__panel {
  width: min(420px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  height: auto;
  overflow-y: auto;
}

.drawer-mobile__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.drawer-mobile__head .brand-lockup__mark,
.drawer-mobile__head .brand-lockup__logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.drawer-mobile__head .brand-lockup__text small {
  font-size: 12px;
}

.drawer-mobile__nav {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--card);
}

.drawer-mobile__quick-actions {
  display: grid;
  gap: 10px;
}

.drawer-mobile__section {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--card);
}

.drawer-mobile__section .drawer__links {
  display: grid;
  gap: 8px;
}

.drawer-mobile__link,
.drawer-mobile__section .drawer__links a {
  display: inline-grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-soft);
}

.drawer-mobile__section .drawer__links a {
  grid-template-columns: 1fr auto;
}

.drawer-mobile__link::after,
.drawer-mobile__section .drawer__links a::after {
  content: "\203A";
  font-size: 1.1rem;
  line-height: 1;
  color: var(--muted);
}

.drawer-mobile__link.is-active {
  border-color: var(--ring);
  box-shadow: var(--shadow-sm);
}

.drawer-mobile__head .drawer__close {
  min-width: 44px;
  width: 44px;
  min-height: 44px;
  padding: 0;
  border-radius: var(--radius-lg);
}

.drawer-mobile__section h4 {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.drawer-mobile__meta {
  margin: 4px 0 0;
}

.drawer-mobile__logout .chip-btn {
  width: 100%;
  justify-content: center;
}

.drawer-mobile__categories {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.drawer-mobile__category-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: 100%;
  padding: 0 12px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-soft);
  font-weight: 600;
}

.drawer-mobile__footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
}

.drawer--category-panel {
  align-items: start;
  justify-content: center;
  padding: 84px 24px 24px;
}

.drawer--category-panel .drawer__panel {
  width: min(980px, calc(100vw - 48px));
  height: min(82vh, 780px);
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border-radius: 32px;
  transform: translateY(-14px) scale(0.985);
}

.drawer--category-panel.is-open .drawer__panel {
  transform: translateY(0) scale(1);
}

.category-drawer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 0;
  height: 100%;
  min-height: 0;
}

.category-drawer__intro {
  display: grid;
  gap: 10px;
  padding: 28px 30px 18px;
}

.category-drawer__intro h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  letter-spacing: -0.05em;
}

.category-drawer__intro p {
  margin: 0;
  max-width: 52ch;
  color: var(--muted);
}

.category-drawer__close {
  margin: 22px 22px 0 0;
  width: 46px;
  min-width: 46px;
  min-height: 46px;
  padding: 0;
  border-radius: 18px;
  font-size: 28px;
  line-height: 1;
}

.category-drawer__body {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
  padding: 0 24px 24px;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.category-drawer__spotlight {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 247, 251, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

html[data-theme="dark"] .category-drawer__spotlight {
  background:
    linear-gradient(180deg, rgba(16, 27, 45, 0.96), rgba(10, 18, 31, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.category-drawer__spotlight strong {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.category-drawer__spotlight p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.category-nav {
  display: grid;
  gap: 12px;
}

.category-nav__overview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(244, 247, 251, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

html[data-theme="dark"] .category-nav__overview {
  background:
    linear-gradient(180deg, rgba(16, 27, 45, 0.96), rgba(10, 18, 31, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.category-nav__overview:hover {
  transform: translateY(-1px);
}

.category-nav__overview.is-active {
  border-color: rgba(15, 127, 142, 0.34);
  box-shadow:
    0 14px 24px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

html[data-theme="dark"] .category-nav__overview.is-active {
  box-shadow:
    0 16px 28px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.category-nav__overview-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.category-nav__overview-copy strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.category-nav__overview-copy small {
  color: var(--muted);
  line-height: 1.4;
}

.category-nav__list {
  display: grid;
  gap: 10px;
}

.category-nav__group {
  display: grid;
  gap: 10px;
}

.category-nav__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 10px;
}

.category-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 60px;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease;
}

.category-nav__link:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 127, 142, 0.26);
}

.category-nav__group.is-active-branch > .category-nav__row .category-nav__link {
  background: var(--card-strong);
}

.category-nav__link.is-active {
  border-color: rgba(15, 127, 142, 0.38);
  background:
    linear-gradient(180deg, rgba(240, 251, 252, 0.98), rgba(229, 247, 249, 0.98));
  box-shadow:
    0 16px 26px rgba(15, 23, 42, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

html[data-theme="dark"] .category-nav__link.is-active {
  background:
    linear-gradient(180deg, rgba(11, 33, 42, 0.98), rgba(8, 28, 37, 0.98));
  box-shadow:
    0 18px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.category-nav__content {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.category-nav__titleline {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.category-nav__label {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.category-nav__hint {
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-nav__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.category-nav__pill--count {
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--muted);
}

.category-nav__pill--badge {
  background: rgba(15, 127, 142, 0.12);
  color: #0f7f8e;
}

html[data-theme="dark"] .category-nav__pill--badge {
  background: rgba(45, 212, 191, 0.16);
  color: #7ee7da;
}

.category-nav__toggle {
  width: 52px;
  min-width: 52px;
  min-height: 60px;
  padding: 0;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text);
  transition: border-color 200ms ease, transform 200ms ease, background 200ms ease;
}

.category-nav__toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 127, 142, 0.28);
}

.category-nav__chevron {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 220ms ease;
}

.category-nav__group.is-expanded > .category-nav__row .category-nav__chevron {
  transform: rotate(225deg);
}

.category-nav__children {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 220ms ease, opacity 220ms ease;
}

.category-nav__children.is-expanded {
  grid-template-rows: 1fr;
  opacity: 1;
}

.category-nav__children-inner {
  overflow: hidden;
  display: grid;
  gap: 8px;
  margin-left: 12px;
  padding-left: 14px;
  border-left: 1px solid rgba(148, 163, 184, 0.26);
}

.category-nav__row--depth-1 .category-nav__link,
.category-nav__row--depth-2 .category-nav__link,
.category-nav__row--depth-3 .category-nav__link {
  min-height: 52px;
  padding: 12px 14px;
  border-radius: 18px;
  background: var(--bg-soft);
  box-shadow: none;
}

.category-nav__row--depth-1 .category-nav__toggle,
.category-nav__row--depth-2 .category-nav__toggle,
.category-nav__row--depth-3 .category-nav__toggle {
  width: 46px;
  min-width: 46px;
  min-height: 52px;
  border-radius: 18px;
}

.category-nav__row--depth-1 .category-nav__label,
.category-nav__row--depth-2 .category-nav__label,
.category-nav__row--depth-3 .category-nav__label {
  font-size: 14px;
}

.category-nav__row--depth-1 .category-nav__hint,
.category-nav__row--depth-2 .category-nav__hint,
.category-nav__row--depth-3 .category-nav__hint {
  display: none;
}

.category-nav--header .category-nav__list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
  align-items: start;
}

.category-nav--header .category-nav__overview {
  border-radius: 24px;
}

.category-nav--drawer .category-nav__overview,
.category-nav--mobile-menu .category-nav__overview {
  border-radius: 20px;
}

.category-nav--drawer .category-nav__link,
.category-nav--mobile-menu .category-nav__link {
  min-height: 58px;
  padding: 14px 15px;
  border-radius: 20px;
}

.category-nav--drawer .category-nav__toggle,
.category-nav--mobile-menu .category-nav__toggle {
  min-height: 58px;
  border-radius: 20px;
}

.drawer-mobile__theme-switch {
  width: 100%;
  min-height: 56px;
  justify-content: flex-start;
  padding: 10px 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(234, 240, 247, 0.96));
}

html[data-theme="dark"] .drawer-mobile__theme-switch {
  background: linear-gradient(180deg, rgba(16, 27, 45, 0.96), rgba(11, 19, 34, 0.98));
}

.drawer-mobile__theme-icons {
  position: relative;
  display: inline-grid;
  grid-template-columns: repeat(2, 34px);
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  background: var(--bg-soft);
}

.drawer-mobile__theme-icons::after {
  content: "";
  position: absolute;
  inset: 4px auto 4px 4px;
  width: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(14, 165, 233, 0.22));
  transition: transform 180ms ease;
}

html[data-theme="dark"] .drawer-mobile__theme-icons::after {
  transform: translateX(34px);
}

.drawer-mobile__theme-copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.drawer-mobile__theme-copy strong,
.drawer-mobile__theme-copy small {
  display: block;
}

.drawer-mobile__theme-copy strong {
  font-size: 14px;
  letter-spacing: -0.01em;
}

.drawer-mobile__theme-copy small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.drawer-mobile__theme-switch .theme-toggle__slot {
  width: 34px;
  height: 34px;
}

.drawer-mobile__footer .chip-btn {
  width: 100%;
}

.drawer--sheet {
  align-items: end;
  justify-content: center;
  padding: 0;
}

.drawer--filter-sheet {
  background: transparent;
  backdrop-filter: none;
}

.drawer--filter-sheet .drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.52);
  backdrop-filter: blur(10px);
}

.drawer--filter-sheet .drawer__panel {
  position: fixed;
  left: max(10px, env(safe-area-inset-left));
  right: max(10px, env(safe-area-inset-right));
  bottom: 0;
  z-index: 1;
  width: min(560px, calc(100vw - 20px));
  height: min(92dvh, 760px);
  min-height: 0;
  margin: 0 auto;
  border-radius: 30px 30px 0 0;
  padding: 10px 0 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  align-content: stretch;
  gap: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 251, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow:
    0 28px 56px rgba(15, 23, 42, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transform: translateY(calc(100% + 24px));
  will-change: transform;
}

html[data-theme="dark"] .drawer--filter-sheet .drawer__panel {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(8, 17, 30, 0.99));
  border-color: rgba(148, 163, 184, 0.2);
  box-shadow:
    0 32px 60px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.drawer--filter-sheet.is-open .drawer__panel {
  transform: translateY(0);
}

.drawer-sheet__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 14px;
  padding: 0 18px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--card-strong);
  position: relative;
  z-index: 2;
}

.drawer-sheet__head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 5vw, 1.8rem);
  letter-spacing: -0.04em;
}

.drawer-sheet__handle {
  width: 52px;
  height: 5px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.5);
}

.drawer-sheet__titleblock {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.drawer-sheet__titleblock p {
  margin: 0;
  max-width: 30ch;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.drawer-sheet__close {
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  align-self: start;
  padding: 0;
  border-radius: 16px;
  font-size: 28px;
  line-height: 1;
}

.drawer-sheet__form {
  display: block;
  height: 100%;
  min-height: 0;
  align-self: stretch;
  align-items: stretch;
  justify-items: stretch;
  flex-wrap: nowrap;
  overflow: hidden;
}

.drawer-sheet__body {
  display: grid;
  align-content: start;
  height: 100%;
  gap: 16px;
  min-height: 0;
  max-height: 100%;
  overflow-y: scroll;
  padding: 18px 18px 24px;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.drawer-sheet__footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 14px 18px calc(16px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  background: var(--card-strong);
  box-shadow: 0 -14px 30px rgba(15, 23, 42, 0.08);
  position: relative;
  z-index: 2;
}

html[data-theme="dark"] .drawer-sheet__footer {
  box-shadow: 0 -14px 30px rgba(0, 0, 0, 0.26);
}

.drawer-sheet__footer .btn,
.drawer-sheet__footer .btn--ghost {
  width: 100%;
  min-height: 52px;
  border-radius: 18px;
}

.drawer-sheet__footer .btn--ghost {
  background: rgba(255, 255, 255, 0.68);
}

html[data-theme="dark"] .drawer-sheet__footer .btn--ghost {
  background: rgba(16, 27, 45, 0.92);
}

@media (min-width: 921px) {
  .drawer--shop-control {
    align-items: start;
    padding: 112px 24px 28px;
  }

  .drawer--shop-control .drawer__panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(760px, calc(100vw - 48px));
    height: min(78dvh, 760px);
    border-radius: 32px;
    padding-top: 18px;
    transform: translateY(24px) scale(0.98);
  }

  .drawer--shop-control.is-open .drawer__panel {
    transform: translateY(0) scale(1);
  }

  .drawer--shop-control .drawer-sheet__handle {
    display: none;
  }
}

.drawer-filter-group {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(244, 247, 251, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

html[data-theme="dark"] .drawer-filter-group {
  background:
    linear-gradient(180deg, rgba(16, 27, 45, 0.96), rgba(11, 19, 34, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.drawer-filter-group__meta {
  display: grid;
  gap: 4px;
}

.drawer-filter-group__eyebrow,
.drawer-filter-group__hint {
  margin: 0;
}

.drawer-filter-group__eyebrow {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.drawer-filter-group__hint {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.drawer-filter-group__fields {
  display: grid;
  gap: 12px;
}

.drawer-filter-group label {
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.drawer-filter-group input,
.drawer-filter-group select {
  min-height: 50px;
  border-radius: 18px;
  background: var(--card-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

html[data-theme="dark"] .drawer-filter-group input,
html[data-theme="dark"] .drawer-filter-group select {
  background: rgba(7, 17, 31, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.drawer-filter-price-grid {
  display: grid;
  gap: 12px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--muted);
  transition: color 160ms ease;
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.breadcrumbs span:not(:last-child) {
  opacity: 0.5;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(340px, 1fr);
  gap: 24px;
}

.hero-actions {
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hero-grid--home {
  align-items: start;
}

.home-quick-entry {
  display: grid;
  gap: 18px;
  align-content: start;
}

.home-quick-entry__group {
  display: grid;
  gap: 12px;
}

.home-quick-entry__label {
  font-size: 0.88rem;
  letter-spacing: -0.02em;
}

.home-quick-entry__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.home-quick-entry__card,
.home-quick-entry__chip {
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text);
  text-decoration: none;
}

.home-quick-entry__card {
  display: grid;
  gap: 4px;
  min-height: 86px;
  padding: 14px;
  border-radius: 20px;
}

.home-quick-entry__card span {
  font-weight: 700;
  line-height: 1.2;
}

.home-quick-entry__card small {
  color: var(--muted);
  font-size: 12px;
}

.home-quick-entry__chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.home-quick-entry__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 700;
}

.home-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.home-trust-strip__item {
  display: grid;
  gap: 4px;
  padding: 16px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--card);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.home-trust-strip__item strong {
  font-size: 0.9rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.home-trust-strip__item p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.4;
}

.stat-card {
  display: grid;
  gap: 5px;
  align-content: center;
  padding: 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.15);
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

html[data-theme="dark"] .stat-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.stat-card strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--primary);
}

.stat-card .muted {
  font-size: 11.5px;
  line-height: 1.35;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.brand-strip__row,
.cards-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.brand-pill {
  justify-content: center;
  min-height: 52px;
  padding: 0 16px;
}

.model-grid,
.shop-grid,
.mosaic-grid {
  display: grid;
  gap: 20px;
}

.model-grid,
.shop-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mosaic-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.marketing-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: stretch;
}

.marketing-panel__list {
  display: grid;
  gap: 12px;
}

.marketing-panel__cta {
  display: grid;
  gap: 16px;
  align-content: space-between;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.12), rgba(14, 165, 233, 0.08));
}

.marketing-panel__cta p,
.marketing-panel__list span {
  color: var(--muted);
}

.category-panel {
  display: grid;
  gap: 20px;
}

.category-panel__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.category-panel__card span {
  color: var(--muted);
  font-size: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-panel__footer {
  display: grid;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(59, 130, 246, 0.16);
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.08), rgba(14, 165, 233, 0.05));
}

.category-panel__footer p {
  margin: 0;
  color: var(--muted);
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.shop-sidebar {
  display: none;
}

.shop-control-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(220px, 240px);
  gap: 14px;
  align-items: stretch;
}

.shop-control-pill {
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 26px;
  font: inherit;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 251, 0.98));
  box-shadow:
    0 14px 28px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.shop-control-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 127, 142, 0.28);
}

.shop-control-pill--active {
  border-color: rgba(15, 127, 142, 0.34);
  box-shadow:
    0 18px 30px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.shop-control-pill__eyebrow {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shop-control-pill strong {
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.shop-control-pill small {
  color: var(--muted);
  line-height: 1.45;
}

html[data-theme="dark"] .shop-control-pill {
  background:
    linear-gradient(180deg, rgba(16, 27, 45, 0.96), rgba(10, 18, 31, 0.99));
  box-shadow:
    0 18px 30px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.shop-control-sort {
  display: grid;
  gap: 8px;
  align-content: center;
  padding: 16px 18px;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: var(--card-strong);
}

.shop-control-sort label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shop-control-sort select {
  width: 100%;
  min-height: 48px;
  border-radius: 18px;
}

.shop-side-section {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.shop-side-section__toggle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.shop-side-section__copy {
  display: grid;
  gap: 4px;
}

.shop-side-section__copy strong {
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.shop-side-section__copy small {
  color: var(--muted);
  line-height: 1.45;
}

.shop-side-section__chevron {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 220ms ease;
}

.shop-side-section.is-expanded .shop-side-section__chevron {
  transform: rotate(225deg);
}

.shop-side-section__body {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 20px;
  opacity: 0;
  transition: grid-template-rows 220ms ease, opacity 220ms ease, padding-bottom 220ms ease;
}

.shop-side-section__body.is-expanded {
  grid-template-rows: 1fr;
  padding-bottom: 20px;
  opacity: 1;
}

.shop-side-section__inner {
  overflow: hidden;
  display: grid;
  gap: 18px;
}

.shop-category-panel {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 144px;
}

.shop-category-panel__intro {
  display: grid;
  gap: 8px;
}

.shop-category-panel__intro h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  letter-spacing: -0.04em;
}

.shop-category-panel__intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.filter-card--shop {
  position: static;
}

.filter-form {
  display: grid;
  gap: 16px;
}

.shop-filter-state {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
}

.shop-filter-state span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-filter-state strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.shop-results {
  display: grid;
  gap: 20px;
}

.shop-mobile-filterbar {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}

html[data-theme="dark"] .shop-mobile-filterbar {
  background: rgba(10, 18, 32, 0.88);
}

.shop-mobile-filterbar__trigger {
  min-height: 46px;
  width: 100%;
  justify-content: center;
}

.shop-mobile-filterbar__sort {
  margin: 0;
  grid-column: 1 / 2;
}

.shop-mobile-filterbar__sort select {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  border-radius: var(--radius-lg);
}

.shop-mobile-filterbar__count {
  grid-column: 2 / 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0 10px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.shop-toolbar {
  display: grid;
  gap: 14px;
}

.shop-toolbar__chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-chip--muted {
  opacity: 0.72;
}

.filter-chip--removable,
.filter-chip--ghost {
  text-decoration: none;
}

.filter-chip--removable {
  gap: 6px;
}

.filter-chip--removable span:last-child {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  font-size: 14px;
  line-height: 1;
}

.filter-chip--ghost {
  background: transparent;
}

.summary-row {
  justify-content: space-between;
}

.checkout-summary-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.checkout-summary-item__image {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border);
  background: var(--card);
}

.detail-layout,
.cart-layout,
.checkout-layout,
.contact-grid,
.about-grid {
  display: grid;
  gap: 24px;
}

.product-page {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 32px;
  align-items: start;
}

.product-page__gallery {
  display: grid;
  gap: 14px;
}

.product-page__gallery-main-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  background: var(--card);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.product-page__gallery-main {
  appearance: none;
  width: 100%;
  border: 0;
  background: transparent;
  padding: clamp(18px, 4vw, 34px);
  cursor: zoom-in;
}

.product-page__gallery-main img {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 640px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  transition: transform 220ms ease;
}

.product-page__gallery-main:hover img {
  transform: scale(1.01);
}

.product-page__thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 6px;
  scrollbar-width: none;
}

.product-page__thumbs::-webkit-scrollbar {
  display: none;
}

.product-page__thumb {
  appearance: none;
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  padding: 4px;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-page__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.product-page__thumb:hover {
  transform: translateY(-1px);
}

.product-page__thumb.is-active {
  border-color: var(--ring);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.14);
}

.product-page__info-card {
  position: sticky;
  top: 24px;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--card);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  display: grid;
  gap: 14px;
}

.product-page__title {
  margin: 0;
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.product-page__price-row {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.product-page__price {
  font-size: 2.1rem;
  letter-spacing: -0.03em;
}

.product-page__price-old {
  color: var(--muted);
  text-decoration: line-through;
}

.product-page__availability {
  margin: 0;
  font-weight: 600;
}

.product-page__meta {
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.product-page__group {
  display: grid;
  gap: 10px;
}

.product-page__group-label {
  color: var(--muted);
  font-size: 0.95rem;
}

.swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.swatch {
  appearance: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0.12);
  background: var(--swatch, #cbd5e1);
  cursor: pointer;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.swatch:hover {
  transform: translateY(-1px);
}

.swatch.is-active {
  border-color: #0b7280;
  box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.2);
}

.swatch.is-active::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.product-page__description {
  margin: 0;
  color: var(--muted);
}

.product-page__buy-form {
  display: grid;
  gap: 12px;
}

.qty-stepper {
  width: fit-content;
  display: inline-grid;
  grid-template-columns: 40px 64px 40px;
  align-items: center;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.qty-stepper__btn {
  appearance: none;
  border: 0;
  background: #fff;
  min-height: 44px;
  font-weight: 700;
  cursor: pointer;
}

.qty-stepper__input {
  min-height: 44px;
  border: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
  border-radius: 0;
  box-shadow: none;
}

.product-page__cta {
  appearance: none;
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary), #4b8dff);
  color: var(--primary-contrast);
  font-weight: 700;
  cursor: pointer;
  transition: filter 180ms ease, transform 180ms ease;
}

.product-page__cta:hover {
  filter: brightness(0.96);
  transform: translateY(-1px);
}

.product-page__subtle-link {
  color: var(--muted);
  text-decoration: none;
  width: fit-content;
}

.product-page__lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.product-page__lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 11, 24, 0.84);
  cursor: zoom-out;
}

.product-page__lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 1240px);
  height: min(90vh, 920px);
  margin: 5vh auto;
  display: grid;
  place-items: center;
}

.product-page__lightbox-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-page__lightbox-close {
  appearance: none;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(10, 14, 28, 0.6);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

.product-page__lightbox-hit {
  appearance: none;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 50%;
  border: 0;
  background: transparent;
  opacity: 0;
}

.product-page__lightbox-hit--prev {
  left: 0;
  cursor: w-resize;
}

.product-page__lightbox-hit--next {
  right: 0;
  cursor: e-resize;
}

.product-page__gallery-main:focus-visible,
.product-page__thumb:focus-visible,
.swatch:focus-visible,
.qty-stepper__btn:focus-visible,
.product-page__cta:focus-visible,
.product-page__lightbox-close:focus-visible,
.product-page__lightbox-hit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

@media (max-width: 760px) {
  .product-page {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-page__info-card {
    position: static;
  }
}

.cart-layout,
.checkout-layout {
  grid-template-columns: minmax(0, 1.2fr) 360px;
}

.cart-items-shell {
  display: grid;
  gap: 14px;
}

.cart-empty-state {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.cart-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--card);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.cart-item:hover {
  border-color: rgba(37, 99, 235, 0.16);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.07);
}

.cart-item__media {
  display: inline-flex;
  width: 88px;
  height: 88px;
  padding: 8px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-soft);
}

.cart-item__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-item__body {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.cart-item__body h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.cart-item__meta {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.cart-item__price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.cart-item__price-row strong {
  font-size: 1.05rem;
}

.cart-item__price-row span {
  color: var(--muted);
  font-size: 13px;
}

.cart-item__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cart-item__qty-form {
  display: inline-grid;
  grid-template-columns: 44px 62px 44px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-soft);
}

.cart-stepper__btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text);
  min-height: 44px;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.cart-stepper__input {
  min-height: 44px;
  border: 0;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
  text-align: center;
  background: transparent;
  padding: 0 8px;
}

.cart-item__remove-form {
  margin: 0;
}

.cart-item__remove-btn {
  min-width: 44px;
  width: 44px;
  min-height: 44px;
  padding: 0;
}

.cart-item__update-fallback {
  margin-left: 8px;
}

.cart-summary-card {
  position: sticky;
  top: 120px;
  align-self: start;
}

.cart-checkout-box {
  margin-top: 14px;
}

.cart-mobile-sticky-cta {
  display: none;
}

.checkout-choice-grid,
.checkout-auth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.checkout-option {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  background: var(--card);
  display: grid;
  gap: 12px;
}

.checkout-option__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.checkout-option__head h2,
.checkout-option__head h3 {
  margin: 0;
}

.checkout-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(18, 119, 242, 0.24);
  background: rgba(18, 119, 242, 0.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
}

.checkout-badge--warn {
  border-color: rgba(220, 38, 38, 0.28);
  background: rgba(220, 38, 38, 0.1);
  color: #b91c1c;
}

.checkout-segmented {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
}

.checkout-segmented a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid #0f7f8e;
  color: #0f7f8e;
  font-weight: 700;
}

.checkout-segmented a.is-active {
  background: #0f7f8e;
  color: #fff;
}

.form-help {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.form-help--error {
  color: #b91c1c;
}

.field-error {
  border-color: rgba(220, 38, 38, 0.7) !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12) !important;
}

button[disabled],
.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  filter: grayscale(0.15);
}

.checkout-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.checkout-auth-form,
.checkout-order-form {
  display: grid;
  gap: 12px;
}

.checkout-logged-in {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-soft);
}

.account-shell,
.account-auth-shell {
  display: grid;
  gap: 18px;
}

.account-shell__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.account-profile {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-soft);
}

.account-orders {
  display: grid;
  gap: 10px;
}

.account-order {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card);
  padding: 14px 16px;
  display: grid;
  gap: 8px;
}

.account-order__head,
.account-order__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.account-order__meta {
  color: var(--muted);
  font-size: 14px;
}

.account-auth-shell {
  max-width: 860px;
  margin: 0 auto;
}

.account-auth-toggle {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.account-auth-toggle a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 10px;
  border: 1px solid #0f7f8e;
  color: #0f7f8e;
  background: transparent;
  font-weight: 700;
}

.account-auth-toggle a.is-active {
  color: #fff;
  background: #0f7f8e;
}

.account-auth-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card);
  padding: 24px;
  display: grid;
  gap: 12px;
}

.account-auth-card h2,
.account-auth-card h3 {
  margin: 0;
}

.account-auth-form {
  display: grid;
  gap: 12px;
}

.account-register-form h3 {
  margin-top: 8px;
  font-size: 18px;
}

.account-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.account-checkbox-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.account-checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 0;
}

.contact-grid,
.about-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-footer {
  position: relative;
  border-top: 1px solid var(--border);
  background: rgba(250, 252, 255, 0.8);
  padding-bottom: env(safe-area-inset-bottom);
}

html[data-theme="dark"] .site-footer {
  background: rgba(7, 12, 22, 0.82);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 40px 24px 40px;
}

.site-footer__grid section {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer__grid h3,
.site-footer__grid h4 {
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 4px;
}

.site-footer__grid a,
.site-footer__grid p,
.site-footer__grid li {
  color: var(--muted);
}

.site-footer__grid a {
  transition: color 160ms ease;
}

.site-footer__grid a:hover {
  color: var(--primary);
}

.site-footer__bottom {
  padding: 16px 24px calc(20px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

@media (max-width: 1180px) {
  .hero-grid,
  .marketing-panel,
  .shop-layout,
  .detail-layout,
  .cart-layout,
  .checkout-layout,
  .contact-grid,
  .about-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .home-trust-strip,
  .category-panel__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-control-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-control-sort {
    grid-column: 1 / -1;
  }

  .shop-side-section__toggle {
    padding: 16px 18px;
  }

  .shop-side-section__body {
    padding: 0 18px;
  }

  .shop-side-section__body.is-expanded {
    padding-bottom: 18px;
  }

  .filter-card--shop {
    position: static;
  }

  .cart-summary-card {
    position: static;
  }

  .brand-strip__row,
  .cards-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .topbar__points {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    padding: 12px 0;
    min-height: 76px;
  }

  .brand-lockup__mark,
  .brand-lockup__logo {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .brand-lockup__text small {
    display: none;
  }

  .header-search input {
    min-height: 44px;
  }

  .header-search__submit {
    min-width: 44px;
    width: 44px;
    min-height: 44px;
  }

  .shop-control-bar {
    display: none;
  }

  .site-header .header-actions {
    gap: 8px;
  }

  .model-grid,
  .shop-grid,
  .mosaic-grid,
  .promo-grid,
  .hero-stats,
  .form-grid,
  .brand-strip__row,
  .cards-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-only {
    display: inline-flex;
  }

  .site-nav {
    display: none;
  }

  .drawer--popover {
    padding: 20px;
    background: rgba(2, 6, 23, 0.48);
  }

  .drawer--popover .drawer__panel {
    position: static;
    width: min(420px, 100%);
    margin-left: auto;
  }

  .drawer--popover .drawer__panel::before {
    display: none;
  }

  .shop-sidebar {
    display: none;
  }

  .shop-mobile-filterbar {
    display: flex;
  }

  .drawer--category-panel {
    padding: 82px 20px 20px;
  }

  .drawer--category-panel .drawer__panel {
    width: min(860px, calc(100vw - 40px));
  }

  .category-drawer__body {
    grid-template-columns: 1fr;
  }

  .category-nav--header .category-nav__list {
    grid-template-columns: 1fr;
  }

  .shop-mobile-filterbar {
    display: grid;
    position: sticky;
    top: calc(env(safe-area-inset-top) + 78px);
    z-index: 24;
  }

  .shop-mobile-filterbar__sort {
    grid-column: 1 / -1;
  }

  .shop-mobile-filterbar__sort select {
    width: 100%;
    min-width: 0;
  }

  .shop-toolbar__chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .shop-toolbar__chips::-webkit-scrollbar {
    display: none;
  }

  .shop-toolbar__chips .filter-chip {
    white-space: nowrap;
  }

  .shop-results .shop-toolbar.panel {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .category-panel__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .checkout-choice-grid,
  .checkout-auth-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 14px;
  }

  .maintenance-shell {
    padding: 18px 14px;
  }

  .maintenance-stage {
    gap: 18px;
  }

  .maintenance-card {
    border-radius: 28px;
  }

  .maintenance-card--hero {
    gap: 22px;
    padding: 22px 18px;
  }

  .maintenance-card__topline {
    gap: 14px;
  }

  .maintenance-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.15rem, 10vw, 2.95rem);
  }

  .maintenance-copy p {
    font-size: 14px;
  }

  .maintenance-chip-row {
    gap: 8px;
  }

  .maintenance-chip {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .maintenance-access-panel {
    gap: 16px;
    padding: 16px;
    border-radius: 24px;
  }

  .maintenance-form__field {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 58px;
    padding: 0 12px;
  }

  .maintenance-form__toggle {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 42px;
    border-radius: 14px;
  }

  .maintenance-form input[type="password"],
  .maintenance-form input[type="text"] {
    min-height: 46px;
  }

  .maintenance-form__submit {
    min-height: 52px;
    border-radius: 18px;
  }

  .maintenance-brand .brand-lockup__mark,
  .maintenance-brand .brand-lockup__logo {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .maintenance-info-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .maintenance-info-card {
    padding: 16px;
    border-radius: 20px;
  }

  .page-shell {
    padding: 22px 0 64px;
  }

  .topbar {
    display: none;
  }

  .topbar__inner,
  .hero-grid,
  .form-grid,
  .cards-row {
    grid-template-columns: 1fr;
  }

  .section-stack {
    gap: 24px;
  }

  .section-heading {
    gap: 7px;
    margin-bottom: 16px;
  }

  .section-heading h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    letter-spacing: -0.035em;
  }

  .section-heading p {
    font-size: 13px;
  }

  .site-header__inner {
    gap: 8px;
    min-height: 58px;
    padding: 8px 0;
  }

  .brand-lockup {
    gap: 10px;
  }

  .brand-lockup__mark,
  .brand-lockup__logo {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .brand-lockup__text {
    display: none;
  }

  .header-search {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px;
  }

  .header-search input {
    min-height: 42px;
    border-radius: 16px;
    padding: 9px 13px;
    font-size: 14px;
  }

  .header-search__submit {
    min-width: 42px;
    width: 42px;
    min-height: 42px;
  }

  .site-header .header-actions {
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--card);
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.07);
    backdrop-filter: blur(12px);
  }

  .site-header .header-actions .chip-btn {
    min-width: 42px;
    width: 42px;
    min-height: 42px;
    padding: 0;
    border-radius: 14px;
    border-color: transparent;
    box-shadow: none;
    background: transparent;
  }

  .header-search__submit {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--card) !important;
    color: var(--text) !important;
    box-shadow: none !important;
  }

  .header-action--category,
  .account-chip,
  .theme-toggle {
    display: none;
  }

  .cart-chip {
    position: relative;
    min-width: 44px;
    width: 44px;
    padding: 0;
  }

  .cart-chip__label {
    display: none;
  }

  .cart-chip .badge-count {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    font-size: 10px;
    padding: 0 4px;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  .shop-mobile-filterbar {
    top: calc(env(safe-area-inset-top) + 62px);
    padding: 8px 10px;
    gap: 8px;
    border-radius: 20px;
  }

  .shop-mobile-filterbar__trigger {
    min-height: 42px;
    padding: 0 12px;
    border-radius: 15px;
  }

  .shop-mobile-filterbar__sort {
    grid-column: 1 / -1;
  }

  .shop-mobile-filterbar__sort select,
  .shop-mobile-filterbar__count {
    min-height: 42px;
    border-radius: 15px;
  }

  .shop-hero--compact {
    padding: 18px 20px;
    border-radius: 24px;
  }

  .shop-hero--compact h1 {
    margin-bottom: 6px;
    font-size: clamp(1.8rem, 8vw, 2.2rem);
  }

  .shop-hero--compact p {
    font-size: 14px;
  }

  .home-quick-entry {
    gap: 14px;
    padding: 18px;
  }

  .home-quick-entry__grid,
  .home-quick-entry__chips,
  .model-grid,
  .shop-grid,
  .mosaic-grid,
  .promo-grid,
  .brand-strip__row,
  .category-panel__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid--home {
    gap: 14px;
  }

  .hero-card--home {
    padding: 20px;
  }

  .hero-card--home h1 {
    max-width: 12ch;
    margin-bottom: 12px;
    font-size: clamp(2.1rem, 8vw, 2.6rem);
    line-height: 1.0;
  }

  .hero-card--home p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--muted);
  }

  .hero-actions {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-actions .btn,
  .hero-actions .btn--ghost {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 800;
  }

  .hero-actions .btn {
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .stat-card {
    padding: 12px 10px;
    border-radius: 18px;
  }

  .stat-card strong {
    font-size: 1.2rem;
  }

  .stat-card .muted {
    font-size: 10.5px;
    line-height: 1.3;
  }

  .home-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .home-trust-strip__item {
    padding: 12px;
    border-radius: 18px;
  }

  .home-trust-strip__item strong {
    font-size: 0.82rem;
  }

  .home-trust-strip__item p {
    font-size: 11px;
  }

  .panel--dense,
  .category-panel {
    padding: 18px;
  }

  .category-panel__footer {
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
  }

  .category-panel__footer .hero-actions {
    grid-template-columns: 1fr;
  }

  .brand-strip.panel,
  .home-promo-section {
    padding: 18px;
  }

  .shop-results {
    gap: 12px;
  }

  .shop-toolbar {
    gap: 10px;
  }

  .summary-row {
    font-size: 13px;
  }

  .shop-toolbar__chips {
    gap: 8px;
    margin-top: 0;
  }

  .shop-toolbar__chips .filter-chip {
    min-height: 30px;
    padding: 0 10px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .shop-grid--listing,
  .shop-grid--featured {
    gap: 12px;
  }

  .drawer {
    padding: 10px;
  }

  .drawer__panel {
    padding: 18px;
    border-radius: 20px;
  }

  .drawer--mobile-menu .drawer__panel {
    width: min(420px, 100%);
    max-height: calc(100vh - 10px);
  }

  .drawer--filter-sheet .drawer__panel {
    width: calc(100vw - 20px);
    height: min(90dvh, calc(100dvh - 10px));
    border-radius: 28px 28px 0 0;
  }

  .drawer-sheet__head {
    gap: 12px;
    padding: 0 14px 14px;
  }

  .drawer-sheet__head .drawer__close {
    min-height: 44px;
  }

  .drawer-sheet__body {
    padding: 16px 14px 22px;
  }

  .drawer-filter-group {
    padding: 14px;
    border-radius: 22px;
  }

  .drawer-sheet__footer {
    padding: 12px 14px calc(14px + env(safe-area-inset-bottom));
  }

  .drawer--category-panel {
    padding: 10px;
  }

  .drawer--category-panel .drawer__panel {
    width: min(100%, 100vw - 20px);
    max-height: calc(100vh - 10px);
    border-radius: 26px;
  }

  .category-drawer__intro {
    padding: 20px 20px 14px;
  }

  .category-drawer__close {
    margin: 16px 16px 0 0;
  }

  .category-drawer__body {
    gap: 14px;
    padding: 0 16px 16px;
  }

  .category-drawer__spotlight {
    padding: 18px;
    border-radius: 22px;
  }

  .category-nav__overview,
  .category-nav__link {
    border-radius: 20px;
  }

  .category-nav__toggle {
    border-radius: 20px;
  }

  .category-nav__hint {
    white-space: normal;
  }

  .drawer-mobile__nav {
    padding: 10px;
    border-radius: var(--radius-xl);
  }

  .drawer-mobile__section {
    padding: 10px;
    border-radius: var(--radius-xl);
  }

  .drawer-mobile__categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .cart-item {
    grid-template-columns: 72px minmax(0, 1fr);
    padding: 12px;
    border-radius: var(--radius-lg);
  }

  .cart-item__media {
    width: 72px;
    height: 72px;
    padding: 6px;
    border-radius: var(--radius-md);
  }

  .cart-item__qty-form {
    grid-template-columns: 44px 56px 44px;
  }

  .cart-summary-card {
    padding-bottom: 86px;
  }

  .cart-mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 46;
    display: block;
    padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, transparent, var(--bg) 36%);
  }

  .cart-mobile-sticky-cta .btn {
    width: 100%;
    min-height: 52px;
    border-radius: var(--radius-xl);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.28);
  }

  .checkout-choice-grid,
  .checkout-auth-grid {
    grid-template-columns: 1fr;
  }

  .account-grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .filter-card,
  .detail-card,
  .summary-card,
  .contact-card,
  .about-card,
  .admin-surface,
  .panel {
    padding: 20px 18px;
  }
}

/* ─── Footer Trust-Card ─── */

.footer-trust-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px !important;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0.04)) !important;
  border-color: rgba(37, 99, 235, 0.14) !important;
}

.footer-trust-card .footer-trust-icon {
  font-size: 18px;
  color: #f59e0b;
  flex-shrink: 0;
  line-height: 1.2;
}

.footer-trust-card strong {
  display: block;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.footer-trust-card p {
  margin: 3px 0 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}

/* ─── Input & Form Verfeinerungen ─── */

::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="number"]),
select,
textarea {
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

/* ─── Globale UX-Verfeinerungen ─── */

/* Checkout-Abschnitt: klare Option-Box */
.checkout-option {
  transition: border-color 180ms ease;
}

.checkout-option:focus-within {
  border-color: rgba(37, 99, 235, 0.22);
}

/* Chip-Button: subtiler Hover-Übergang */
.chip-btn {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}

/* Product-Page CTA Mobile */
@media (max-width: 760px) {
  .product-page__info-card {
    border-radius: 22px;
    padding: 20px;
  }

  .product-page__title {
    font-size: clamp(1.55rem, 5vw, 1.95rem);
  }

  .product-page__price {
    font-size: 1.75rem;
  }

  .product-page__cta {
    min-height: 52px;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 16px 32px rgba(37, 99, 235, 0.24);
  }

  .qty-stepper {
    grid-template-columns: 46px 68px 46px;
  }

  .qty-stepper__btn,
  .qty-stepper__input {
    min-height: 48px;
  }
}

/* Cart-Summary: Trennlinien zwischen Zeilen */
.summary-row {
  padding: 11px 0;
}

.summary-row ~ .summary-row {
  border-top: 1px solid var(--border);
}

/* Footer: 2 Spalten zwischen 640px und 1180px */
@media (min-width: 641px) and (max-width: 1180px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 28px;
  }
}

/* Footer: 1 Spalte auf kleinen Mobil-Screens */
@media (max-width: 640px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 26px 16px 26px;
  }

  .site-footer__bottom {
    padding: 14px 16px calc(16px + env(safe-area-inset-bottom));
  }
}


@media (min-width: 390px) and (max-width: 640px) {
  .drawer-filter-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .drawer-sheet__footer {
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  }
}

/* ─── Topbar Ticker ─────────────────────────────────────── */
.topbar-ticker {
  overflow: hidden;
  min-height: 46px;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}

.topbar-ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  animation: topbar-scroll 44s linear infinite;
}

.topbar-ticker:hover .topbar-ticker__track {
  animation-play-state: paused;
}

.topbar-ticker__item {
  padding: 4px 18px;
  border-radius: 99px;
  letter-spacing: 0.01em;
  transition: background 200ms ease, color 200ms ease;
}

.topbar-ticker__item:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  cursor: default;
}

html[data-theme="dark"] .topbar-ticker__item:hover {
  background: rgba(96, 165, 250, 0.12);
}

.topbar-ticker__sep {
  flex-shrink: 0;
  font-size: 9px;
  color: var(--primary);
  opacity: 0.5;
  padding: 0 2px;
}

@keyframes topbar-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Hero Entrance ─────────────────────────────────────── */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.hero-card--home > * {
  animation: hero-fade-up 560ms ease both;
}
.hero-card--home > *:nth-child(1) { animation-delay: 0ms; }
.hero-card--home > *:nth-child(2) { animation-delay: 80ms; }
.hero-card--home > *:nth-child(3) { animation-delay: 160ms; }
.hero-card--home > *:nth-child(4) { animation-delay: 240ms; }
.hero-card--home > *:nth-child(5) { animation-delay: 320ms; }

/* ─── Trust Strip Hover ─────────────────────────────────── */
.home-trust-strip__item {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.home-trust-strip__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ─── Stat Cards Hover ──────────────────────────────────── */
.stat-card {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

a.stat-card {
  text-decoration: none;
  color: inherit;
}

/* ─── Scroll Reveal (per JS aktiviert, damit ohne JS alles sichtbar bleibt) ── */
[data-reveal].will-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 580ms ease, transform 580ms ease;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
  transition: opacity 580ms ease, transform 580ms ease;
}

/* ─── Kategorie-Karten Icon ─────────────────────────────── */
.category-panel__card {
  grid-template-rows: auto auto 1fr;
  align-items: start;
  height: 100%;
}

.category-panel__icon {
  display: block;
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 2px;
}

/* ─── Hero Deko-Element ──────────────────────────────────── */
.hero-card__deco {
  display: block;
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  line-height: 1;
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
  filter: saturate(0.8);
}

/* ─── Trust-Strip Icon ───────────────────────────────────── */
.trust-icon {
  font-size: 1.4rem;
  vertical-align: middle;
  line-height: 1;
}

/* ─── Dark Mode: Kategorie-Karten Hover-Glow ─────────────── */
html[data-theme="dark"] .category-panel__card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

html[data-theme="dark"] .category-panel__card:hover {
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.35), 0 18px 36px rgba(0, 0, 0, 0.24);
  border-color: rgba(99, 102, 241, 0.4);
}

/* ─── Mobile Search Toggle ───────────────────────────────── */
.header-search-toggle { display: none; }

@media (max-width: 768px) {
  /* Hero: immer sichtbar, Animationsverzögerung entfernen */
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card--home > * {
    animation-duration: 0ms;
    animation-delay: 0ms;
  }

  /* Trust-Strip: 2×2 Grid auf Mobile */
  .home-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Kategorie-Icon: mindestens 2.5rem auf Mobile */
  .category-panel__icon {
    font-size: 2.5rem;
  }

  /* Header */
  .header-search-toggle {
    display: inline-flex;
  }

  .site-header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-search {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    padding: 8px 16px 12px;
    background: rgba(248, 251, 255, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.10);
    z-index: 1;
  }

  html[data-theme="dark"] .header-search {
    background: rgba(5, 10, 20, 0.96);
  }

  .header-search.is-open {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .header-search.is-open input {
    min-height: 44px;
    border-radius: 16px;
    font-size: 14px;
  }

  .header-search.is-open .header-search__submit {
    min-width: 44px;
    width: 44px;
    min-height: 44px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--card) !important;
    color: var(--text) !important;
    box-shadow: none !important;
  }
}

/* ─── prefers-reduced-motion ────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .topbar-ticker__track              { animation: none; }
  .hero-card--home > *               { animation: none; }
  [data-reveal].will-reveal,
  [data-reveal].is-revealed          { opacity: 1; transform: none; transition: none; }
  .home-trust-strip__item,
  .stat-card                         { transition: none; }
}
