/* Spotçu Pro storefront — dependency-free, mobile-first UI */
:root {
  color-scheme: light;
  --color-primary: #f7c600;
  --color-primary-strong: #e4b300;
  --color-primary-soft: #fff5bf;
  --color-navy: #101d3d;
  --color-navy-2: #192a51;
  --color-ink: #182033;
  --color-muted: #667085;
  --color-cream: #fffaf0;
  --color-surface: #ffffff;
  --color-surface-2: #f7f8fb;
  --color-border: #e5e7ec;
  --color-success: #14804a;
  --color-danger: #c93434;
  --color-info: #2463a9;
  --shadow-xs: 0 1px 2px rgb(16 29 61 / 6%);
  --shadow-sm: 0 6px 18px rgb(16 29 61 / 9%);
  --shadow-md: 0 16px 40px rgb(16 29 61 / 14%);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1240px;
  --header-height: 68px;
  --focus-ring: 0 0 0 3px rgb(247 198 0 / 35%);
  --transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--color-surface-2);
  color: var(--color-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button {
  border: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--color-info);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid var(--color-navy);
  outline-offset: 2px;
}

::selection {
  background: var(--color-primary);
  color: var(--color-navy);
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--color-navy);
  color: #fff;
  transform: translateY(-160%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

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

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

.text-muted { color: var(--color-muted); }
.muted { color: var(--color-muted); }
.text-success { color: var(--color-success); }
.text-danger { color: var(--color-danger); }
.text-center { text-align: center; }
.w-full { width: 100%; }
.hidden { display: none !important; }

.top-strip {
  display: none;
  background: var(--color-navy);
  color: rgb(255 255 255 / 78%);
  font-size: 12px;
}

.top-strip__inner {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-strip a { color: #fff; }

.site-header {
  position: sticky;
  z-index: 900;
  top: 0;
  border-bottom: 1px solid var(--color-border);
  background: rgb(255 255 255 / 94%);
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--color-navy);
  font-size: 19px;
  font-weight: 850;
  letter-spacing: -.6px;
  white-space: nowrap;
}

.brand:hover { text-decoration: none; }

.brand__mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px 12px 5px 12px;
  background: var(--color-primary);
  color: var(--color-navy);
  box-shadow: inset 0 -3px 0 rgb(16 29 61 / 10%);
}

.brand__mark svg { width: 22px; height: 22px; }
.brand__accent { color: #c39800; }

.header-search {
  display: none;
  position: relative;
  max-width: 620px;
  justify-self: center;
  width: 100%;
}

.header-search input {
  width: 100%;
  height: 44px;
  padding: 0 48px 0 16px;
  border: 1px solid #ccd1dc;
  border-radius: 12px;
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.header-search input:focus {
  border-color: var(--color-primary-strong);
  outline: 0;
  box-shadow: var(--focus-ring);
}

.header-search button {
  position: absolute;
  top: 4px;
  right: 4px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 9px;
  background: var(--color-primary);
  color: var(--color-navy);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

.icon-btn,
.mobile-menu-toggle {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 11px;
  background: transparent;
  color: var(--color-navy);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.icon-btn:hover,
.mobile-menu-toggle:hover {
  border-color: var(--color-border);
  background: var(--color-surface-2);
}

.icon-btn:active { transform: scale(.96); }
.icon-btn svg, .mobile-menu-toggle svg { width: 21px; height: 21px; }

.icon-btn__count,
[data-favorite-count],
[data-compare-count] {
  position: absolute;
  top: -2px;
  right: -2px;
  display: grid;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 20px;
  background: var(--color-danger);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.main-nav {
  display: none;
  border-top: 1px solid var(--color-border);
  background: #fff;
}

.main-nav.is-open { display: block; }

.main-nav__inner {
  display: flex;
  flex-direction: column;
  padding-block: 8px 16px;
}

.main-nav a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 4px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-ink);
  font-weight: 650;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: #9a7500;
  text-decoration: none;
}

.mobile-search {
  padding: 10px 0 14px;
  background: #fff;
}

.mobile-search .header-search { display: block; }

.breadcrumb {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 7px;
  overflow-x: auto;
  color: var(--color-muted);
  font-size: 13px;
  scrollbar-width: none;
  white-space: nowrap;
}

.breadcrumb::-webkit-scrollbar { display: none; }
.breadcrumb a { color: var(--color-muted); }
.breadcrumb__separator { color: #aeb4c0; }
.breadcrumb [aria-current="page"] { color: var(--color-ink); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 36px 0;
  background:
    radial-gradient(circle at 82% 12%, rgb(247 198 0 / 28%) 0 12%, transparent 13%),
    linear-gradient(135deg, var(--color-navy), #203766);
  color: #fff;
}

.hero::after {
  position: absolute;
  right: -80px;
  bottom: -130px;
  width: 300px;
  height: 300px;
  border: 46px solid rgb(255 255 255 / 5%);
  border-radius: 50%;
  content: "";
}

.hero__content { position: relative; z-index: 1; max-width: 660px; }
.hero__eyebrow { color: var(--color-primary); font-size: 12px; font-weight: 800; letter-spacing: 1.3px; text-transform: uppercase; }
.hero h1 { margin: 8px 0 12px; font-size: clamp(28px, 7vw, 54px); line-height: 1.08; letter-spacing: -1.5px; }
.hero p { max-width: 580px; margin: 0; color: rgb(255 255 255 / 78%); font-size: 16px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

.section {
  padding-block: 30px;
}

.section--white { background: var(--color-surface); }
.section--cream { background: var(--color-cream); }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-heading h1,
.section-heading h2,
.section-heading h3 {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(21px, 4vw, 29px);
  line-height: 1.2;
  letter-spacing: -.65px;
}

.section-heading p { margin: 5px 0 0; color: var(--color-muted); }

.btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled, .btn.is-disabled { cursor: not-allowed; opacity: .55; transform: none; }
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--color-primary); color: var(--color-navy); box-shadow: 0 5px 14px rgb(247 198 0 / 25%); }
.btn--primary:hover { background: var(--color-primary-strong); }
.btn--navy { background: var(--color-navy); color: #fff; }
.btn--navy:hover { background: var(--color-navy-2); }
.btn--light { border-color: var(--color-border); background: #fff; color: var(--color-ink); }
.btn--light:hover { border-color: #bdc3ce; background: var(--color-surface-2); }
.btn--danger { background: var(--color-danger); color: #fff; }
.btn--ghost { background: transparent; color: var(--color-navy); }
.btn--sm { min-height: 34px; padding: 6px 10px; border-radius: 8px; font-size: 13px; }
.btn--lg { min-height: 50px; padding-inline: 22px; }

.badge {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #eef1f6;
  color: #526077;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2px;
}

.badge--primary { background: var(--color-primary); color: var(--color-navy); }
.badge--success { background: #dff6e9; color: var(--color-success); }
.badge--danger { background: #fde8e8; color: var(--color-danger); }
.badge--navy { background: var(--color-navy); color: #fff; }

.category-strip {
  display: grid;
  grid-auto-columns: minmax(132px, 1fr);
  grid-auto-flow: column;
  gap: 10px;
  overflow-x: auto;
  padding: 3px 1px 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.category-card {
  display: grid;
  min-height: 118px;
  place-items: center;
  gap: 8px;
  padding: 15px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--color-navy);
  scroll-snap-align: start;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.category-card:hover {
  border-color: var(--color-primary-strong);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transform: translateY(-2px);
}

.category-card__icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 15px;
  background: var(--color-primary-soft);
  color: var(--color-navy);
}

.category-card__icon svg { width: 27px; height: 27px; }
.category-card__title { font-size: 13px; font-weight: 800; }
.category-card__count { color: var(--color-muted); font-size: 11px; }

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.catalog-toolbar__result { color: var(--color-muted); font-size: 13px; }
.catalog-toolbar__actions { display: flex; align-items: center; gap: 8px; }
.catalog-toolbar select { max-width: 170px; }
.filter-toggle { display: inline-flex; }

.catalog-layout { display: grid; gap: 20px; }

.filter-drawer {
  position: fixed;
  z-index: 1100;
  inset: auto 0 0;
  max-height: 88dvh;
  overflow: auto;
  padding: 0 18px 24px;
  border-radius: 22px 22px 0 0;
  background: #fff;
  box-shadow: 0 -20px 60px rgb(16 29 61 / 24%);
  transform: translateY(105%);
  visibility: hidden;
  transition: transform 240ms ease, visibility 240ms;
}

.filter-drawer.is-open { transform: translateY(0); visibility: visible; }

.filter-drawer__header {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
  background: #fff;
}

.filter-drawer__header h2,
.filter-drawer__header h3 { margin: 0; color: var(--color-navy); font-size: 18px; }

.drawer-backdrop {
  position: fixed;
  z-index: 1090;
  inset: 0;
  background: rgb(8 15 31 / 56%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

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

.filter-group { padding: 17px 0; border-bottom: 1px solid var(--color-border); }
.filter-group:last-child { border-bottom: 0; }
.filter-group__title { display: block; margin-bottom: 10px; color: var(--color-navy); font-size: 13px; font-weight: 850; }
.filter-list { display: grid; gap: 9px; }
.filter-option { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: #354056; }
.filter-option__control { display: inline-flex; align-items: center; gap: 9px; }
.filter-option__count { color: #98a0ae; font-size: 12px; }

input[type="checkbox"],
input[type="radio"] {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  accent-color: var(--color-primary-strong);
}

.price-range { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 7px; }

.form-control,
.form-select,
textarea,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="search"],
select {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid #ccd1dc;
  border-radius: 9px;
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

textarea { min-height: 110px; resize: vertical; }

.form-control:focus,
.form-select:focus,
textarea:focus,
input:focus,
select:focus {
  border-color: var(--color-primary-strong);
  outline: 0;
  box-shadow: var(--focus-ring);
}

.form-label { display: inline-block; margin-bottom: 6px; color: #344056; font-size: 13px; font-weight: 750; }
.form-hint { margin: 5px 0 0; color: var(--color-muted); font-size: 12px; }
.form-error { margin: 5px 0 0; color: var(--color-danger); font-size: 12px; font-weight: 650; }
.has-error .form-control, .has-error input, .has-error select, .has-error textarea { border-color: var(--color-danger); }
.field { min-width: 0; }
.input-group { display: flex; }
.input-group > * { border-radius: 0; }
.input-group > *:first-child { border-radius: 9px 0 0 9px; }
.input-group > *:last-child { border-radius: 0 9px 9px 0; }

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

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.product-card:hover {
  border-color: #d1b23f;
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f0f2f5;
}

.product-card__media > a { display: block; width: 100%; height: 100%; }

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.product-card:hover .product-card__image { transform: scale(1.035); }

.product-card__badges {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 8px;
  display: flex;
  max-width: calc(100% - 48px);
  flex-wrap: wrap;
  gap: 4px;
}

.product-card__actions {
  position: absolute;
  z-index: 3;
  top: 7px;
  right: 7px;
  display: grid;
  gap: 5px;
}

.favorite-btn,
.compare-btn {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgb(16 29 61 / 10%);
  border-radius: 50%;
  background: rgb(255 255 255 / 92%);
  color: var(--color-navy);
  box-shadow: 0 3px 12px rgb(16 29 61 / 13%);
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.favorite-btn:hover,
.compare-btn:hover { transform: scale(1.06); }
.favorite-btn.is-active { background: #fff0f0; color: #d62f45; }
.compare-btn.is-active { background: var(--color-primary); color: var(--color-navy); }
.favorite-btn svg, .compare-btn svg { width: 17px; height: 17px; pointer-events: none; }
.favorite-btn.is-active svg { fill: currentColor; }

.product-card__body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  padding: 11px;
}

.product-card__category {
  overflow: hidden;
  margin-bottom: 3px;
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .35px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-card__title {
  display: -webkit-box;
  min-height: 38px;
  margin: 0;
  overflow: hidden;
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card__title a { color: inherit; }
.product-card__title a:hover { color: #8c6b00; text-decoration: none; }

.product-card__meta {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 7px;
  color: var(--color-muted);
  font-size: 11px;
}

.product-card__meta svg { width: 13px; height: 13px; }

.product-card__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 6px;
  margin-top: auto;
  padding-top: 10px;
}

.product-card__price { color: var(--color-navy); font-size: clamp(15px, 4.2vw, 20px); font-weight: 900; letter-spacing: -.5px; }
.product-card__old-price { display: block; color: #9ba2af; font-size: 11px; font-weight: 500; text-decoration: line-through; }
.product-card__condition { color: var(--color-success); font-size: 10px; font-weight: 750; text-align: right; }

.catalog-empty,
.empty-state {
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 34px 20px;
  border: 1px dashed #c9ced8;
  border-radius: var(--radius-md);
  background: #fff;
  text-align: center;
}

.empty-state__icon { display: grid; width: 66px; height: 66px; margin-inline: auto; place-items: center; border-radius: 50%; background: var(--color-primary-soft); color: var(--color-navy); }
.empty-state h2, .empty-state h3 { margin: 14px 0 5px; color: var(--color-navy); }
.empty-state p { max-width: 430px; margin: 0 auto 16px; color: var(--color-muted); }

.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 28px 0 0;
}

.pagination a,
.pagination span {
  display: grid;
  min-width: 38px;
  height: 38px;
  place-items: center;
  padding-inline: 8px;
  border: 1px solid var(--color-border);
  border-radius: 9px;
  background: #fff;
  color: var(--color-ink);
  font-weight: 700;
}

.pagination a:hover,
.pagination [aria-current="page"] { border-color: var(--color-primary); background: var(--color-primary); color: var(--color-navy); text-decoration: none; }

.detail-layout { display: grid; gap: 20px; }

.gallery {
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
}

.gallery__stage {
  position: relative;
  display: grid;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  place-items: center;
  border-radius: 15px;
  background: #f1f3f6;
}

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

.gallery__zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: rgb(255 255 255 / 92%);
  color: var(--color-navy);
  box-shadow: var(--shadow-sm);
}

.gallery__thumbs {
  display: grid;
  grid-auto-columns: 70px;
  grid-auto-flow: column;
  gap: 8px;
  overflow-x: auto;
  padding-top: 9px;
}

.gallery__thumb {
  overflow: hidden;
  aspect-ratio: 1;
  padding: 2px;
  border: 2px solid transparent;
  border-radius: 10px;
  background: #f1f3f6;
}

.gallery__thumb img { width: 100%; height: 100%; border-radius: 7px; object-fit: cover; }
.gallery__thumb.is-active, .gallery__thumb[aria-current="true"] { border-color: var(--color-primary-strong); }

.product-summary {
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
}

.product-summary__code { color: var(--color-muted); font-size: 12px; }
.product-code { color: var(--color-muted); font-size: 10px; }
.product-summary h1 { margin: 7px 0 12px; color: var(--color-navy); font-size: clamp(23px, 5vw, 34px); line-height: 1.2; letter-spacing: -.8px; }
.product-summary__rating { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: var(--color-muted); font-size: 13px; }
.stars { display: inline-flex; gap: 1px; color: #eeae00; }
.stars svg { width: 16px; height: 16px; fill: currentColor; }

.price-box {
  margin: 18px 0;
  padding: 16px;
  border-radius: 14px;
  background: var(--color-cream);
}

.price-box__main { color: var(--color-navy); font-size: clamp(27px, 7vw, 40px); font-weight: 900; letter-spacing: -1.2px; }
.price-box__old { margin-left: 7px; color: var(--color-muted); text-decoration: line-through; }
.price-box__note { margin-top: 3px; color: var(--color-success); font-size: 12px; font-weight: 700; }

.quick-specs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin: 18px 0; }
.quick-spec { padding: 10px; border: 1px solid var(--color-border); border-radius: 10px; background: var(--color-surface-2); }
.quick-spec__label { display: block; color: var(--color-muted); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.quick-spec__value { display: block; overflow: hidden; margin-top: 2px; font-size: 13px; font-weight: 750; text-overflow: ellipsis; white-space: nowrap; }

.product-summary__actions { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.trust-list { display: grid; gap: 9px; margin: 18px 0 0; padding: 14px 0 0; border-top: 1px solid var(--color-border); color: #465166; font-size: 13px; }
.trust-list__item { display: flex; align-items: center; gap: 9px; }
.trust-list__item svg { width: 18px; height: 18px; color: var(--color-success); }

.content-card {
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-xs);
}

.content-card + .content-card { margin-top: 16px; }
.content-card__title { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 0 0 15px; color: var(--color-navy); font-size: 19px; }

.detail-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  margin-bottom: 16px;
  padding: 4px;
  border-radius: 11px;
  background: #eef0f4;
  scrollbar-width: none;
}

.detail-tabs::-webkit-scrollbar { display: none; }
.detail-tabs button, .detail-tabs a { min-height: 38px; padding: 8px 13px; border-radius: 8px; background: transparent; color: var(--color-muted); font-weight: 750; white-space: nowrap; }
.detail-tabs button.is-active, .detail-tabs [aria-selected="true"], .detail-tabs a[aria-current="page"] { background: #fff; color: var(--color-navy); box-shadow: var(--shadow-xs); text-decoration: none; }
.tab-panel[hidden] { display: none; }

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { padding: 11px 10px; border-bottom: 1px solid var(--color-border); text-align: left; vertical-align: top; }
.spec-table th { width: 42%; color: var(--color-muted); font-size: 13px; font-weight: 650; }
.spec-table td { color: var(--color-ink); font-weight: 700; }
.spec-table tr:last-child > * { border-bottom: 0; }
.spec-table tr:nth-child(odd) { background: #fafbfc; }

.rating-summary { display: grid; gap: 20px; }
.rating-score { text-align: center; }
.rating-score__number { display: block; color: var(--color-navy); font-size: 54px; font-weight: 900; letter-spacing: -2px; line-height: 1; }
.rating-score__count { color: var(--color-muted); font-size: 12px; }
.rating-bars { display: grid; gap: 7px; }
.rating-bar { display: grid; grid-template-columns: 35px 1fr 34px; align-items: center; gap: 8px; color: var(--color-muted); font-size: 12px; }
.rating-bar__track { height: 8px; overflow: hidden; border-radius: 9px; background: #e9ecf1; }
.rating-bar__fill { display: block; width: var(--value, 0%); height: 100%; border-radius: inherit; background: var(--color-primary); }

.comment-list,
.qa-list { display: grid; gap: 12px; }

.comment,
.qa-item {
  padding: 15px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #fff;
}

.comment__header,
.qa-item__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.comment__author, .qa-item__author { color: var(--color-navy); font-weight: 800; }
.comment__date, .qa-item__date { color: var(--color-muted); font-size: 11px; }
.comment__body, .qa-item__question { margin: 10px 0 0; color: #3f4a5f; }
.qa-item__answer { position: relative; margin: 12px 0 0 12px; padding: 12px 12px 12px 16px; border-left: 3px solid var(--color-primary); border-radius: 0 9px 9px 0; background: var(--color-cream); }
.qa-item__answer-label { display: block; margin-bottom: 3px; color: var(--color-navy); font-size: 11px; font-weight: 850; text-transform: uppercase; }

.notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #b8d4f1;
  border-radius: 10px;
  background: #edf6ff;
  color: #24517d;
}

.notice--success { border-color: #a8dfc1; background: #eaf9f0; color: #116d3f; }
.notice--warning { border-color: #ead37b; background: #fff9dc; color: #715b05; }
.notice--danger { border-color: #f0b5b5; background: #fff0f0; color: #9c2d2d; }
.notice svg { width: 20px; height: 20px; flex: 0 0 auto; }

.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:last-child { border-bottom: 0; }
.faq-item__trigger { display: flex; width: 100%; min-height: 54px; align-items: center; justify-content: space-between; gap: 15px; padding: 12px 0; background: transparent; color: var(--color-navy); font-weight: 800; text-align: left; }
.faq-item__content { padding: 0 0 15px; color: var(--color-muted); }
.faq-item__content[hidden] { display: none; }

.compare-bar {
  position: fixed;
  z-index: 850;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 14px;
  background: var(--color-navy);
  color: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(calc(100% + 30px));
  visibility: hidden;
  transition: transform 220ms ease, visibility 220ms;
}

.compare-bar.is-visible { transform: translateY(0); visibility: visible; }
.compare-bar__text { font-size: 12px; }
.compare-bar__text strong { display: block; color: var(--color-primary); font-size: 14px; }
.compare-bar__actions { display: flex; gap: 6px; }

.toast-region {
  position: fixed;
  z-index: 2000;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: min(370px, calc(100% - 28px));
  gap: 8px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-left: 4px solid var(--color-primary);
  border-radius: 11px;
  background: var(--color-navy);
  color: #fff;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: auto;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible { opacity: 1; transform: translateY(0); }
.toast--success { border-left-color: #3bd17f; }
.toast--danger { border-left-color: #ff6b6b; }
.toast__message { flex: 1; }
.toast__close { padding: 1px; background: transparent; color: rgb(255 255 255 / 70%); }

.modal {
  position: fixed;
  z-index: 1300;
  inset: 0;
  display: grid;
  padding: 18px;
  place-items: center;
  background: rgb(8 15 31 / 65%);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal.is-open { opacity: 1; visibility: visible; }
.modal__dialog { width: min(100%, 600px); max-height: 90dvh; overflow: auto; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-md); transform: scale(.97); transition: transform var(--transition); }
.modal.is-open .modal__dialog { transform: scale(1); }
.modal__header, .modal__footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 16px 18px; border-bottom: 1px solid var(--color-border); }
.modal__footer { justify-content: flex-end; border-top: 1px solid var(--color-border); border-bottom: 0; }
.modal__title { margin: 0; color: var(--color-navy); font-size: 19px; }
.modal__body { padding: 18px; }

.auth-shell {
  display: grid;
  min-height: calc(100dvh - var(--header-height));
  place-items: center;
  padding: 30px 16px;
  background: linear-gradient(145deg, var(--color-cream), #eef2f8);
}

.auth-card { width: min(100%, 460px); padding: clamp(20px, 5vw, 34px); border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-md); }
.auth-card__header { margin-bottom: 22px; text-align: center; }
.auth-card__header .brand { justify-content: center; margin-bottom: 18px; }
.auth-card__header h1 { margin: 0; color: var(--color-navy); font-size: 25px; }
.auth-card__header p { margin: 6px 0 0; color: var(--color-muted); }
.auth-card form { display: grid; gap: 14px; }

.site-footer { margin-top: 36px; background: var(--color-navy); color: rgb(255 255 255 / 72%); }
.footer-main { display: grid; gap: 24px; padding-block: 36px; }
.footer-brand p { max-width: 400px; margin: 12px 0 0; }
.footer-title { margin: 0 0 11px; color: #fff; font-size: 14px; }
.footer-links { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.footer-links a { color: rgb(255 255 255 / 70%); }
.footer-links a:hover { color: var(--color-primary); }
.footer-bottom { display: flex; flex-direction: column; gap: 8px; padding-block: 16px; border-top: 1px solid rgb(255 255 255 / 10%); font-size: 12px; }

.back-to-top {
  position: fixed;
  z-index: 800;
  right: 15px;
  bottom: 15px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-navy);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition);
}

.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

html[data-theme="dark"] {
  color-scheme: dark;
  --color-ink: #edf0f7;
  --color-muted: #aeb7c8;
  --color-cream: #20263a;
  --color-surface: #171d2c;
  --color-surface-2: #101522;
  --color-border: #30384c;
}

html[data-theme="dark"] .site-header,
html[data-theme="dark"] .main-nav,
html[data-theme="dark"] .mobile-search,
html[data-theme="dark"] .product-card,
html[data-theme="dark"] .content-card,
html[data-theme="dark"] .product-summary,
html[data-theme="dark"] .gallery,
html[data-theme="dark"] .category-card,
html[data-theme="dark"] .filter-drawer,
html[data-theme="dark"] .filter-drawer__header,
html[data-theme="dark"] .comment,
html[data-theme="dark"] .qa-item,
html[data-theme="dark"] .auth-card,
html[data-theme="dark"] .modal__dialog,
html[data-theme="dark"] .pagination a,
html[data-theme="dark"] .pagination span { background: var(--color-surface); }

html[data-theme="dark"] input,
html[data-theme="dark"] select,
html[data-theme="dark"] textarea,
html[data-theme="dark"] .header-search input { border-color: var(--color-border); background: #111827; }
html[data-theme="dark"] .quick-spec, html[data-theme="dark"] .spec-table tr:nth-child(odd) { background: #1c2334; }

@media (min-width: 560px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .product-card__body { padding: 13px; }
  .product-card__title { min-height: 42px; font-size: 14px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .rating-summary { grid-template-columns: 150px 1fr; align-items: center; }
}

@media (min-width: 768px) {
  .top-strip { display: block; }
  .header-search { display: block; }
  .mobile-search { display: none; }
  .brand { font-size: 22px; }
  .brand__mark { width: 42px; height: 42px; }
  .hero { padding: 58px 0; }
  .section { padding-block: 44px; }
  .category-strip { grid-auto-columns: minmax(150px, 1fr); }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
  .product-card__price { font-size: 20px; }
  .detail-layout { grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr); align-items: start; }
  .product-summary { position: sticky; top: calc(var(--header-height) + 14px); }
  .content-card { padding: 24px; }
  .quick-specs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-main { grid-template-columns: 1.6fr repeat(3, 1fr); }
  .compare-bar { right: 24px; bottom: 20px; left: auto; width: min(440px, calc(100% - 48px)); }
  .toast-region { right: 22px; bottom: 22px; }
}

@media (min-width: 1024px) {
  .mobile-menu-toggle { display: none; }
  .main-nav { display: block; }
  .main-nav__inner { min-height: 46px; flex-direction: row; align-items: center; gap: 27px; padding-block: 0; }
  .main-nav a { min-height: 46px; padding: 0; border-bottom: 0; font-size: 13px; }
  .catalog-layout { grid-template-columns: 248px minmax(0, 1fr); align-items: start; }
  .filter-toggle { display: none; }
  .filter-drawer {
    position: sticky;
    z-index: auto;
    top: calc(var(--header-height) + 62px);
    max-height: calc(100dvh - var(--header-height) - 78px);
    padding: 0 16px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: none;
    transform: none;
    visibility: visible;
  }
  .filter-drawer__header { min-height: 55px; }
  .filter-drawer__header [data-filter-close] { display: none; }
  .drawer-backdrop { display: none; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-card__actions { opacity: 0; transform: translateX(6px); transition: opacity var(--transition), transform var(--transition); }
  .product-card:hover .product-card__actions, .product-card:focus-within .product-card__actions { opacity: 1; transform: translateX(0); }
}

@media (min-width: 1200px) {
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .catalog-layout .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  .site-header, .site-footer, .product-summary__actions, .filter-drawer, .catalog-toolbar, .favorite-btn, .compare-btn, .back-to-top, .toast-region { display: none !important; }
  body { background: #fff; color: #000; }
  .container { width: 100%; }
  .content-card, .gallery, .product-summary { border-color: #bbb; box-shadow: none; }
}

/* PHP view integration ----------------------------------------------------- */
.brand > span:last-child { display: flex; min-width: 0; flex-direction: column; }
.brand > span:last-child strong { line-height: 1.05; }
.brand > span:last-child small { margin-top: 3px; color: var(--color-muted); font-size: 9px; font-weight: 650; letter-spacing: .1px; }
.brand__mark { position: relative; overflow: hidden; }
.brand__mark i { position: absolute; display: block; border-radius: 10px; background: currentColor; }
.brand__mark i:first-child { width: 19px; height: 15px; border: 2px solid currentColor; background: transparent; transform: translateY(-4px); }
.brand__mark i:last-child { width: 19px; height: 3px; transform: translateY(8px); }

.header-action {
  position: relative;
  display: grid;
  min-width: 43px;
  height: 44px;
  place-items: center;
  border-radius: 10px;
  color: var(--color-navy);
  font-weight: 750;
  line-height: 1;
}
.header-action:hover { background: var(--color-surface-2); text-decoration: none; }
.header-action > span { font-size: 20px; }
.header-action > small { display: none; font-size: 10px; }
.header-action > b { position: absolute; top: 1px; right: 1px; display: grid; min-width: 18px; height: 18px; place-items: center; padding: 0 4px; border: 2px solid #fff; border-radius: 20px; background: var(--color-danger); color: #fff; font-size: 9px; }
.mobile-menu-toggle { align-content: center; gap: 4px; }
.mobile-menu-toggle span { display: block; width: 21px; height: 2px; border-radius: 3px; background: currentColor; transition: transform var(--transition), opacity var(--transition); }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-wrap { border-top: 1px solid var(--color-border); background: #fff; }
.nav-categories { color: var(--color-navy) !important; }
.nav-admin { margin-left: auto; color: #8b6a00 !important; }
.header-search button span { display: none; }

.flash-stack, .admin-flashes { position: fixed; z-index: 1900; top: 82px; right: 14px; display: grid; width: min(390px, calc(100% - 28px)); gap: 8px; }
.flash { display: flex; align-items: flex-start; gap: 10px; padding: 13px 14px; border-left: 4px solid var(--color-info); border-radius: 11px; background: var(--color-navy); color: #fff; box-shadow: var(--shadow-md); }
.flash--success { border-left-color: #37ce7c; }
.flash--error, .flash--danger { border-left-color: #ff6868; }
.flash--warning { border-left-color: var(--color-primary); }
.flash button { margin-left: auto; padding: 0 2px; background: transparent; color: rgb(255 255 255 / 70%); font-size: 21px; line-height: 1; }

.button { display: inline-flex; min-height: 42px; align-items: center; justify-content: center; gap: 8px; padding: 9px 16px; border: 1px solid transparent; border-radius: 10px; font-weight: 800; line-height: 1.2; text-align: center; transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition); }
.button:hover { text-decoration: none; transform: translateY(-1px); }
.button--primary { background: var(--color-primary); color: var(--color-navy); box-shadow: 0 6px 16px rgb(247 198 0 / 22%); }
.button--primary:hover { background: var(--color-primary-strong); }
.button--outline { border-color: #cbd0da; background: #fff; color: var(--color-navy); }
.button--outline:hover { border-color: var(--color-primary-strong); background: var(--color-cream); }
.button--light { background: #fff; color: var(--color-navy); }
.button--text { background: transparent; color: var(--color-info); }
.button--large { min-height: 50px; padding-inline: 21px; }
.button--block { width: 100%; }
.button--disabled { cursor: not-allowed; background: #e5e7ec; color: #858d9a; }

.section--soft { background: #f0f3f7; }
.section-kicker, .hero__kicker { display: inline-block; margin-bottom: 6px; color: #a57d00; font-size: 11px; font-weight: 900; letter-spacing: 1.15px; text-transform: uppercase; }
.section-heading > a { flex: 0 0 auto; color: var(--color-navy); font-size: 13px; font-weight: 800; }
.section-heading > a span { color: #b58b00; }
.section-heading--center { justify-content: center; text-align: center; }
.section-heading--center p { max-width: 620px; }

.hero__grid { display: grid; align-items: center; gap: 32px; }
.hero__content { max-width: 700px; }
.hero__content em { color: var(--color-primary); font-style: normal; }
.hero-search { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 8px; max-width: 650px; margin-top: 24px; padding: 5px; border-radius: 14px; background: #fff; box-shadow: 0 15px 35px rgb(0 0 0 / 17%); }
.hero-search > span { padding-left: 10px; color: var(--color-muted); font-size: 22px; }
.hero-search input { min-width: 0; border: 0; box-shadow: none; }
.hero-search input:focus { box-shadow: none; }
.hero-search button { min-height: 43px; padding: 8px 13px; border-radius: 10px; background: var(--color-primary); color: var(--color-navy); font-weight: 850; }
.popular-searches { display: flex; flex-wrap: wrap; gap: 6px 10px; margin-top: 11px; color: rgb(255 255 255 / 55%); font-size: 11px; }
.popular-searches a { color: rgb(255 255 255 / 80%); text-decoration: underline; text-underline-offset: 3px; }
.hero__trust { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-top: 25px; padding-top: 18px; border-top: 1px solid rgb(255 255 255 / 13%); }
.hero__trust span { color: rgb(255 255 255 / 57%); font-size: 9px; }
.hero__trust b { display: block; color: #fff; font-size: 15px; }
.hero__visual { display: none; }
.hero-product { position: relative; max-width: 520px; margin-inline: auto; padding: 20px; }
.hero-product::before { position: absolute; inset: 7% 0 9%; border-radius: 48% 52% 45% 55%; background: rgb(247 198 0 / 18%); content: ""; transform: rotate(-5deg); }
.hero-product > a, .hero-product > img { position: relative; display: block; }
.hero-product img { width: 100%; max-height: 430px; object-fit: contain; filter: drop-shadow(0 24px 25px rgb(0 0 0 / 28%)); }
.hero-product__label { position: absolute; z-index: 2; top: 2px; left: 4px; display: grid; padding: 8px 11px; border-radius: 10px; background: var(--color-primary); color: var(--color-navy); box-shadow: var(--shadow-sm); }
.hero-product__label span { font-size: 11px; font-weight: 900; text-transform: uppercase; }
.hero-product__label small { font-size: 9px; }
.hero-product__card { position: absolute; z-index: 2; right: 2px; bottom: 6px; left: 2px; display: grid; padding: 13px 15px; border: 1px solid rgb(255 255 255 / 36%); border-radius: 13px; background: rgb(255 255 255 / 92%); color: var(--color-navy); box-shadow: var(--shadow-md); backdrop-filter: blur(12px); }
.hero-product__card small { color: var(--color-muted); }
.hero-product__card strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hero-product__card span { color: #9a7500; font-size: 18px; font-weight: 900; }
.score-bubble { position: absolute; z-index: 3; top: 24%; right: -5px; display: flex; width: 72px; height: 72px; align-items: center; justify-content: center; gap: 4px; border: 4px solid rgb(255 255 255 / 20%); border-radius: 50%; background: var(--color-navy); color: #fff; box-shadow: var(--shadow-md); }
.score-bubble b { color: var(--color-primary); font-size: 22px; }
.score-bubble small { font-size: 8px; line-height: 1.15; text-transform: uppercase; }

.category-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.category-grid .category-card { display: grid; min-height: 116px; grid-template-columns: 1fr; align-items: center; justify-items: center; gap: 8px; }
.category-grid .category-card > span:nth-child(2) { display: grid; min-width: 0; text-align: center; }
.category-grid .category-card strong { overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.category-grid .category-card small { color: var(--color-muted); font-size: 10px; }
.category-grid .category-card em { display: none; margin-top: 5px; color: var(--color-muted); font-size: 11px; font-style: normal; line-height: 1.4; }
.category-grid .category-card > i { display: none; color: #af8500; font-style: normal; }

.process-grid { display: grid; gap: 11px; counter-reset: process; }
.process-grid article { position: relative; min-height: 190px; overflow: hidden; padding: 21px; border: 1px solid var(--color-border); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-xs); }
.process-grid article > span { position: absolute; top: 10px; right: 14px; color: #e7eaf0; font-size: 42px; font-weight: 950; line-height: 1; }
.process-grid article > i { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 13px; background: var(--color-primary-soft); color: var(--color-navy); font-size: 21px; font-style: normal; font-weight: 850; }
.process-grid h3 { margin: 17px 0 6px; color: var(--color-navy); }
.process-grid p { margin: 0; color: var(--color-muted); font-size: 13px; }

.expert-banner { padding-block: 34px; background: var(--color-primary); color: var(--color-navy); }
.expert-banner__inner { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.expert-banner span { font-size: 11px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; }
.expert-banner h2 { max-width: 750px; margin: 5px 0; font-size: clamp(23px, 4vw, 35px); line-height: 1.15; }
.expert-banner p { margin: 0; opacity: .72; }
.brand-cloud { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.brand-cloud a { display: flex; min-width: 0; align-items: center; justify-content: space-between; gap: 8px; padding: 13px; border: 1px solid var(--color-border); border-radius: 10px; background: #fff; color: var(--color-navy); font-weight: 850; }
.brand-cloud a:hover { border-color: var(--color-primary-strong); text-decoration: none; }
.brand-cloud small { display: grid; min-width: 25px; height: 25px; place-items: center; border-radius: 20px; background: var(--color-surface-2); color: var(--color-muted); font-size: 9px; }

.product-card__eyebrow { overflow: hidden; margin: 0 0 3px; color: var(--color-muted); font-size: 10px; font-weight: 800; letter-spacing: .3px; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.product-card__body > h3 { display: -webkit-box; min-height: 38px; margin: 0; overflow: hidden; font-size: 13px; line-height: 1.42; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.product-card__body > h3 a { color: var(--color-ink); }
.product-card__body > h3 a:hover { color: #8c6b00; text-decoration: none; }
.product-card__rating { display: flex; align-items: center; gap: 5px; margin-top: 7px; }
.product-card__rating small { color: var(--color-muted); font-size: 10px; }
.stars { position: relative; display: inline-block; width: 78px; height: 16px; overflow: hidden; color: #d6dae1; font-size: 15px; letter-spacing: 1px; line-height: 16px; }
.stars::before, .stars::after { position: absolute; inset: 0 auto auto 0; content: "★★★★★"; white-space: nowrap; }
.stars::after { width: calc((var(--rating, 0) / 5) * 100%); overflow: hidden; color: #edae00; }
.stars--large { width: 97px; height: 20px; font-size: 19px; line-height: 20px; }
.product-card__meta { justify-content: space-between; }
.product-card__meta span + span { padding-left: 7px; border-left: 1px solid var(--color-border); }
.product-card__footer > div { min-width: 0; }
.product-card__footer strong { display: block; color: var(--color-navy); font-size: clamp(15px, 4.2vw, 20px); font-weight: 900; letter-spacing: -.5px; }
.product-card__footer del { display: block; color: #9ba2af; font-size: 10px; }
.product-card__media > .favorite-btn { position: absolute; z-index: 3; top: 7px; right: 7px; }
.product-card__footer > .compare-btn { position: static; width: 34px; height: 34px; flex: 0 0 34px; }
.badge--featured { background: var(--color-primary); color: var(--color-navy); }
.badge--warning { background: #fff0ba; color: #775e00; }

.page-hero { padding: 38px 0; background: linear-gradient(135deg, var(--color-navy), #213966); color: #fff; }
.page-hero--compact { padding-block: 28px; }
.page-hero h1 { max-width: 820px; margin: 5px 0 8px; font-size: clamp(27px, 6vw, 44px); line-height: 1.1; letter-spacing: -1px; }
.page-hero p { max-width: 720px; margin: 0; color: rgb(255 255 255 / 65%); }
.breadcrumbs { display: flex; align-items: center; gap: 7px; overflow-x: auto; color: rgb(255 255 255 / 48%); font-size: 11px; white-space: nowrap; scrollbar-width: none; }
.breadcrumbs::-webkit-scrollbar { display: none; }
.breadcrumbs a { color: rgb(255 255 255 / 67%); }

.listing-layout { display: grid; gap: 17px; padding-block: 22px 45px; }
.listing-results { min-width: 0; }
.listing-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 9px; margin-bottom: 13px; padding: 10px 12px; border: 1px solid var(--color-border); border-radius: 11px; background: #fff; color: var(--color-muted); font-size: 12px; }
.listing-toolbar strong { color: var(--color-navy); }
.listing-toolbar form { display: flex; align-items: center; gap: 6px; }
.listing-toolbar select { width: auto; min-height: 37px; padding-block: 6px; }
.filter-header { position: sticky; z-index: 2; top: 0; display: flex; min-height: 59px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--color-border); background: #fff; }
.filter-header h2 { margin: 0; color: var(--color-navy); font-size: 17px; }
.filter-header button { width: 36px; height: 36px; border-radius: 9px; background: var(--color-surface-2); font-size: 21px; }
.filter-form { display: grid; gap: 0; }
.filter-form fieldset { display: grid; gap: 8px; margin: 0; padding: 15px 0; border: 0; border-bottom: 1px solid var(--color-border); }
.filter-form legend { margin-bottom: 8px; color: var(--color-navy); font-size: 12px; font-weight: 850; }
.filter-form label { display: flex; align-items: center; gap: 7px; color: #455064; font-size: 12px; }
.filter-clear { padding: 10px; color: var(--color-muted); font-size: 11px; font-weight: 750; text-align: center; }
.price-fields { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 6px; }
.product-grid--listing { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.product-top { padding: 0 0 28px; }
.product-top .breadcrumbs { min-height: 48px; color: var(--color-muted); }
.product-top .breadcrumbs a { color: var(--color-muted); }
.product-detail-grid { display: grid; gap: 18px; }
.gallery__main { position: relative; display: grid; overflow: hidden; aspect-ratio: 4 / 3; place-items: center; border-radius: 15px; background: #f1f3f6; }
.gallery__main > img { width: 100%; height: 100%; object-fit: contain; }
.gallery__main > .badge { position: absolute; top: 12px; left: 12px; }
.gallery__thumbs button { overflow: hidden; aspect-ratio: 1; padding: 2px; border: 2px solid transparent; border-radius: 9px; background: #eef0f4; }
.gallery__thumbs button.is-active { border-color: var(--color-primary-strong); }
.gallery__thumbs button img { width: 100%; height: 100%; border-radius: 6px; object-fit: cover; }
.product-summary__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.product-summary__top .eyebrow { margin: 0; color: #927000; font-size: 11px; font-weight: 850; text-transform: uppercase; }
.product-summary__top h1 { margin: 5px 0 7px; }
.favorite-btn--summary { width: 41px; height: 41px; flex: 0 0 41px; font-size: 22px; }
.summary-rating { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; padding: 13px 0; border-block: 1px solid var(--color-border); color: var(--color-muted); font-size: 11px; }
.summary-rating > b { color: var(--color-navy); }
.verified-label { display: inline-flex; align-items: center; min-height: 24px; padding: 3px 7px; border-radius: 20px; background: #e5f7ed; color: var(--color-success); font-weight: 750; }
.summary-lead { color: #556074; }
.quick-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; margin: 15px 0; }
.quick-facts > div { padding: 9px; border: 1px solid var(--color-border); border-radius: 9px; background: var(--color-surface-2); }
.quick-facts span { display: block; color: var(--color-muted); font-size: 9px; text-transform: uppercase; }
.quick-facts strong { display: block; overflow: hidden; margin-top: 2px; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.stock--in_stock { color: var(--color-success); }
.stock--reserved { color: #977400; }
.stock--sold { color: var(--color-danger); }
.summary-price { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 15px 0; padding: 14px; border-radius: 12px; background: var(--color-cream); }
.summary-price > div:first-child { display: flex; min-width: 0; flex-wrap: wrap; align-items: baseline; gap: 4px 8px; }
.summary-price del { color: var(--color-muted); font-size: 11px; }
.summary-price > div:first-child > span { color: var(--color-success); font-size: 10px; font-weight: 800; }
.summary-price > div:first-child > strong { width: 100%; color: var(--color-navy); font-size: clamp(26px, 7vw, 38px); font-weight: 950; letter-spacing: -1px; line-height: 1; }
.summary-price small { color: var(--color-muted); font-size: 9px; }
.expert-score { display: flex; flex: 0 0 auto; align-items: center; gap: 5px; padding-left: 11px; border-left: 1px solid #e8dca8; }
.expert-score b { color: #9b7600; font-size: 27px; }
.expert-score span { color: var(--color-muted); font-size: 8px; line-height: 1.2; text-transform: uppercase; }
.summary-actions { display: grid; gap: 7px; }
.summary-actions .compare-btn { width: auto; height: auto; border-radius: 10px; box-shadow: none; }
.summary-services { display: grid; grid-template-columns: 1fr; gap: 7px; margin-top: 14px; padding-top: 13px; border-top: 1px solid var(--color-border); color: var(--color-muted); font-size: 10px; }

.product-tabs { position: sticky; z-index: 700; top: var(--header-height); border-block: 1px solid var(--color-border); background: rgb(255 255 255 / 95%); backdrop-filter: blur(12px); }
.product-tabs .container { display: flex; overflow-x: auto; scrollbar-width: none; }
.product-tabs .container::-webkit-scrollbar { display: none; }
.product-tabs a { min-height: 48px; padding: 14px 12px; color: var(--color-muted); font-size: 11px; font-weight: 800; white-space: nowrap; }
.product-tabs a:hover { color: var(--color-navy); text-decoration: none; }
.product-tabs a span { display: inline-grid; min-width: 18px; height: 18px; place-items: center; border-radius: 20px; background: var(--color-primary-soft); color: #7b6000; font-size: 8px; }
.content-with-aside { display: grid; gap: 18px; align-items: start; }
.product-article { min-width: 0; }
.product-article h2 { margin: 0 0 15px; color: var(--color-navy); font-size: clamp(24px, 5vw, 34px); }
.inspection-note { display: flex; align-items: flex-start; gap: 10px; margin: 0 0 18px; padding: 14px; border-left: 4px solid var(--color-primary); border-radius: 0 10px 10px 0; background: var(--color-cream); }
.inspection-note > span { color: #987400; font-size: 22px; }
.inspection-note p { margin: 0; }
.prose { color: #465166; font-size: 15px; line-height: 1.8; }
.prose h2, .prose h3 { color: var(--color-navy); line-height: 1.25; }
.prose img { height: auto; border-radius: var(--radius-md); }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.pros-cons { display: grid; gap: 11px; margin-top: 22px; }
.pros, .cons { padding: 16px; border: 1px solid var(--color-border); border-radius: 12px; background: #fff; }
.pros h3, .cons h3 { margin: 0 0 10px; color: var(--color-navy); font-size: 15px; }
.pros h3 span, .cons h3 span { display: inline-grid; width: 25px; height: 25px; place-items: center; border-radius: 50%; background: #dff6e9; color: var(--color-success); }
.cons h3 span { background: #fff0d4; color: #956c00; }
.pros ul, .cons ul { display: grid; gap: 7px; margin: 0; padding-left: 19px; color: var(--color-muted); }
.score-card, .form-card, .contact-card { padding: 18px; border: 1px solid var(--color-border); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.score-card > span { color: #967200; font-size: 10px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; }
.score-card__total { margin: 7px 0; color: var(--color-navy); }
.score-card__total b { font-size: 49px; font-weight: 950; letter-spacing: -2px; }
.score-card__total small { color: var(--color-muted); }
.score-card > p { color: var(--color-muted); font-size: 12px; }
.rating-bars > div { display: grid; gap: 4px; }
.rating-bars > div > span { display: flex; justify-content: space-between; color: var(--color-muted); font-size: 10px; }
.rating-bars > div > i { height: 7px; overflow: hidden; border-radius: 8px; background: #e9ecf1; }
.rating-bars > div > i::after { display: block; width: var(--value, 0%); height: 100%; border-radius: inherit; background: var(--color-primary); content: ""; }
.score-card__date { display: block; margin-top: 13px; color: var(--color-muted); }
.spec-groups { display: grid; gap: 12px; }
.spec-group { overflow: hidden; border: 1px solid var(--color-border); border-radius: 12px; background: #fff; }
.spec-group h3 { margin: 0; padding: 12px 15px; border-bottom: 1px solid var(--color-border); background: var(--color-navy); color: #fff; font-size: 13px; }
.spec-group dl { margin: 0; }
.spec-group dl > div { display: grid; grid-template-columns: minmax(110px, 42%) 1fr; }
.spec-group dl > div:nth-child(even) { background: var(--color-surface-2); }
.spec-group dt, .spec-group dd { margin: 0; padding: 10px 12px; border-bottom: 1px solid var(--color-border); font-size: 12px; }
.spec-group dt { color: var(--color-muted); }
.spec-group dd { font-weight: 750; }
.qa-question, .qa-answer { display: grid; grid-template-columns: 32px 1fr; gap: 9px; }
.qa-question > span, .qa-answer > span { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 50%; background: var(--color-navy); color: #fff; font-weight: 900; }
.qa-answer { margin: 13px 0 0 14px; padding: 12px; border-radius: 10px; background: var(--color-cream); }
.qa-answer > span { background: var(--color-primary); color: var(--color-navy); }
.qa-question strong, .qa-answer strong { display: block; color: var(--color-navy); font-size: 12px; }
.qa-question small, .qa-answer small { color: var(--color-muted); font-size: 9px; }
.qa-question p, .qa-answer p { margin: 6px 0 0; color: #465166; }
.qa-answer i { padding: 2px 5px; border-radius: 10px; background: var(--color-navy); color: #fff; font-size: 8px; font-style: normal; }
.form-card { position: sticky; top: calc(var(--header-height) + 64px); }
.form-card h3 { margin: 0 0 7px; color: var(--color-navy); }
.form-card p, .form-card > small { color: var(--color-muted); }
.form-card form { display: grid; gap: 9px; }
.form-card label { color: #394459; font-size: 12px; font-weight: 750; }
.comment-summary { display: flex; flex-direction: column; gap: 13px; margin-bottom: 15px; padding: 15px; border-radius: 12px; background: var(--color-navy); color: #fff; }
.comment-summary > div { display: grid; }
.comment-summary > div > b { color: var(--color-primary); font-size: 36px; line-height: 1; }
.comment-summary small, .comment-summary p { margin: 0; color: rgb(255 255 255 / 60%); font-size: 11px; }
.comment-item { padding: 15px; border: 1px solid var(--color-border); border-radius: 12px; background: #fff; }
.comment-item header { display: flex; align-items: center; gap: 9px; }
.comment-item header > div { display: grid; }
.comment-item header > small { margin-left: auto; color: var(--color-muted); font-size: 9px; }
.avatar { display: grid; width: 37px; height: 37px; place-items: center; border-radius: 50%; background: var(--color-primary); color: var(--color-navy); font-weight: 900; }
.comment-item h3 { margin: 10px 0 4px; color: var(--color-navy); font-size: 14px; }
.comment-item p { margin: 0; color: #515c70; }
.empty-inline { padding: 20px; border: 1px dashed #cbd0da; border-radius: 10px; background: #fff; color: var(--color-muted); text-align: center; }

.auth-page { min-height: calc(100dvh - 100px); padding: 28px 0; background: linear-gradient(145deg, #101d3d, #203866); }
.auth-page .auth-shell { width: min(calc(100% - 32px), 1050px); min-height: 0; margin-inline: auto; padding: 0; place-items: stretch; background: transparent; }
.auth-info { display: none; padding: clamp(25px, 5vw, 55px); color: #fff; }
.auth-info h1 { margin: 16px 0; font-size: clamp(28px, 5vw, 48px); line-height: 1.1; letter-spacing: -1.4px; }
.auth-info ul { display: grid; gap: 12px; margin: 24px 0; padding: 0; list-style: none; }
.auth-info li { display: flex; align-items: center; gap: 10px; color: rgb(255 255 255 / 75%); }
.auth-info li span { display: grid; width: 35px; height: 35px; place-items: center; border-radius: 9px; background: rgb(247 198 0 / 15%); color: var(--color-primary); }
.auth-info > p { color: rgb(255 255 255 / 55%); font-size: 12px; }
.auth-page .auth-card { align-self: center; margin-inline: auto; }
.auth-card h2 { margin: 5px 0; color: var(--color-navy); font-size: 25px; }
.auth-card > p { margin: 0 0 18px; color: var(--color-muted); }
.auth-card form { display: grid; gap: 9px; }
.auth-card form > label:not(.check-row) { margin-top: 4px; color: #3b465a; font-size: 12px; font-weight: 750; }
.check-row { display: flex !important; align-items: flex-start; gap: 8px; color: var(--color-muted); font-size: 11px; font-weight: 500 !important; }
.check-row input { margin-top: 2px; }
.auth-link { justify-self: center; margin-top: 4px; font-size: 12px; }

.account-layout { display: grid; gap: 18px; align-items: start; }
.account-nav { overflow: hidden; border: 1px solid var(--color-border); border-radius: var(--radius-md); background: #fff; }
.account-person { display: grid; grid-template-columns: 46px 1fr; padding: 16px; border-bottom: 1px solid var(--color-border); }
.account-person > span { display: grid; width: 42px; height: 42px; grid-row: span 2; place-items: center; border-radius: 50%; background: var(--color-primary); color: var(--color-navy); font-weight: 900; }
.account-person strong, .account-person small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.account-person small { color: var(--color-muted); font-size: 10px; }
.account-nav > a { display: flex; min-height: 42px; align-items: center; justify-content: space-between; padding: 9px 15px; border-bottom: 1px solid var(--color-border); color: #465166; font-size: 12px; font-weight: 750; }
.account-nav > a:hover { background: var(--color-cream); text-decoration: none; }
.account-nav > a b { display: grid; min-width: 22px; height: 22px; place-items: center; border-radius: 20px; background: var(--color-primary-soft); color: #7b6000; font-size: 9px; }
.account-content { display: grid; gap: 18px; }
.account-content > section { padding: 18px; border: 1px solid var(--color-border); border-radius: var(--radius-md); background: #fff; }
.account-content h2 { margin: 0 0 13px; color: var(--color-navy); }
.account-items { display: grid; gap: 9px; }
.account-items article { display: grid; grid-template-columns: 1fr auto; gap: 5px 10px; padding: 12px; border: 1px solid var(--color-border); border-radius: 9px; }
.account-items article > a { color: var(--color-navy); font-weight: 800; }
.account-items article p { grid-column: 1 / -1; margin: 0; color: var(--color-muted); }
.account-items article small { color: var(--color-muted); font-size: 9px; text-align: right; }
.status { display: inline-flex; width: max-content; min-height: 23px; align-items: center; padding: 3px 8px; border-radius: 20px; background: #edf0f4; color: #5f697a; font-size: 9px; font-weight: 850; }
.status--approved, .status--answered { background: #e3f7ec; color: var(--color-success); }
.status--rejected { background: #fde9e9; color: var(--color-danger); }

.contact-layout { display: grid; gap: 20px; align-items: start; }
.contact-details h2 { margin: 4px 0 10px; color: var(--color-navy); font-size: clamp(25px, 5vw, 38px); line-height: 1.15; }
.contact-details > p { color: var(--color-muted); }
.contact-box { display: flex; align-items: flex-start; gap: 11px; margin-top: 10px; padding: 12px; border: 1px solid var(--color-border); border-radius: 10px; background: #fff; }
.contact-box > span { display: grid; width: 37px; height: 37px; flex: 0 0 37px; place-items: center; border-radius: 9px; background: var(--color-primary-soft); color: #806300; }
.contact-box div { display: grid; }
.contact-box small { color: var(--color-muted); font-size: 9px; text-transform: uppercase; }
.contact-box a { color: var(--color-navy); font-weight: 800; }
.contact-box p { margin: 0; }
.working-hours { display: flex; flex-direction: column; margin-top: 12px; padding: 12px; border-radius: 10px; background: var(--color-navy); color: #fff; }
.working-hours span { color: rgb(255 255 255 / 65%); font-size: 11px; }
.contact-form-card { padding: clamp(18px, 4vw, 29px); border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.contact-form-card h2 { margin: 0 0 17px; color: var(--color-navy); }
.contact-form-card form { display: grid; gap: 12px; }
.contact-form-card label { display: grid; gap: 5px; color: #3b465a; font-size: 12px; font-weight: 750; }
.contact-form-card .form-grid { grid-template-columns: 1fr; }
.selected-product { display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: 10px; background: var(--color-cream); }
.selected-product img { width: 58px; height: 50px; border-radius: 7px; object-fit: cover; }
.selected-product span { display: grid; }
.selected-product small { color: var(--color-muted); }
.prose-layout { display: grid; gap: 20px; align-items: start; }
.contact-card { position: sticky; top: calc(var(--header-height) + 20px); }
.contact-card > span { color: #987400; font-size: 10px; font-weight: 850; text-transform: uppercase; }
.contact-card h2 { margin: 5px 0; color: var(--color-navy); }
.contact-card p { color: var(--color-muted); }
.error-page { display: grid; min-height: 65dvh; place-items: center; padding: 45px 0; text-align: center; }
.error-page .container > span { display: block; color: var(--color-primary); font-size: clamp(75px, 18vw, 170px); font-weight: 950; letter-spacing: -8px; line-height: .8; text-shadow: 5px 5px 0 var(--color-navy); }
.error-page h1 { margin: 26px 0 7px; color: var(--color-navy); }
.error-page p { margin: 0 0 17px; color: var(--color-muted); }
.error-page .container > div { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }

.footer-grid { display: grid; gap: 24px; padding-block: 36px; }
.footer-grid h2 { margin: 0 0 11px; color: #fff; font-size: 13px; }
.footer-grid section { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.footer-grid section > p { margin: 0; font-size: 12px; }
.footer-grid a { color: rgb(255 255 255 / 68%); font-size: 12px; }
.footer-grid .brand { color: #fff; font-size: 20px; }
.brand--footer .brand__mark { color: var(--color-navy); }
.brand--footer > span:last-child small { color: rgb(255 255 255 / 50%); }
.footer-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.footer-badges span { padding: 4px 8px; border: 1px solid rgb(255 255 255 / 14%); border-radius: 20px; font-size: 9px; }
.newsletter { display: flex; width: 100%; }
.newsletter input { min-width: 0; border-radius: 9px 0 0 9px; }
.newsletter button { padding: 0 12px; border-radius: 0 9px 9px 0; background: var(--color-primary); color: var(--color-navy); font-weight: 850; }
.contact-mini { margin-top: 5px !important; color: rgb(255 255 255 / 48%); }

.compare-root { overflow-x: auto; }
.compare-table { width: 100%; min-width: 720px; overflow: hidden; border: 1px solid var(--color-border); border-radius: 13px; border-collapse: separate; border-spacing: 0; background: #fff; }
.compare-table th, .compare-table td { min-width: 165px; padding: 11px; border-right: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); text-align: center; }
.compare-table th:first-child, .compare-table td:first-child { position: sticky; z-index: 2; left: 0; min-width: 125px; background: #f8f9fb; color: var(--color-muted); text-align: left; }
.compare-table tr:last-child > * { border-bottom: 0; }
.compare-table tr > *:last-child { border-right: 0; }
.compare-product { display: grid; gap: 6px; justify-items: center; }
.compare-product img { width: 115px; height: 90px; border-radius: 9px; object-fit: cover; }
.compare-product a { color: var(--color-navy); font-size: 12px; font-weight: 850; }
.compare-remove { padding: 4px 7px; border-radius: 7px; background: #fff0f0; color: var(--color-danger); font-size: 10px; }

@media (min-width: 560px) {
  .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-cloud { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .summary-actions { grid-template-columns: 1fr auto; }
  .summary-services { grid-template-columns: repeat(3, 1fr); }
  .pros-cons { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .comment-summary { flex-direction: row; align-items: center; }
  .comment-summary > p { flex: 1; }
  .contact-form-card .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .header-action { min-width: 66px; }
  .header-action > small { display: block; }
  .header-action > span { font-size: 18px; }
  .header-action > b { right: 7px; }
  .header-search button { width: auto; padding-inline: 13px; }
  .header-search button span { display: inline; }
  .hero__grid { grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); }
  .hero__visual { display: block; }
  .hero__trust span { font-size: 10px; }
  .hero__trust b { font-size: 18px; }
  .category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .category-grid--large .category-card { grid-template-columns: auto 1fr auto; justify-items: stretch; text-align: left; }
  .category-grid--large .category-card > span:nth-child(2) { text-align: left; }
  .category-grid--large .category-card em, .category-grid--large .category-card > i { display: block; }
  .expert-banner__inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .brand-cloud { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .product-detail-grid { grid-template-columns: minmax(0, 1.12fr) minmax(350px, .88fr); align-items: start; }
  .product-summary { position: sticky; top: calc(var(--header-height) + 14px); }
  .content-with-aside { grid-template-columns: minmax(0, 1fr) 300px; }
  .spec-groups { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .auth-page .auth-shell { grid-template-columns: minmax(0, 1.1fr) minmax(390px, .9fr); }
  .auth-info { display: block; }
  .auth-page .auth-card { margin: 20px; }
  .account-layout { grid-template-columns: 235px minmax(0, 1fr); }
  .contact-layout { grid-template-columns: minmax(270px, .75fr) minmax(0, 1.25fr); }
  .prose-layout { grid-template-columns: minmax(0, 1fr) 300px; }
  .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .nav-wrap .main-nav { display: flex; min-height: 46px; flex-direction: row; align-items: center; gap: 25px; }
  .nav-wrap .main-nav a { min-height: 46px; padding: 0; border: 0; font-size: 12px; }
  .listing-layout { grid-template-columns: 245px minmax(0, 1fr); align-items: start; }
  .listing-layout > .filter-toggle { display: none; }
  .listing-layout .filter-drawer { position: sticky; z-index: 1; top: calc(var(--header-height) + 60px); max-height: calc(100dvh - 145px); grid-column: 1; grid-row: 1; padding: 0 15px 15px; transform: none; visibility: visible; }
  .listing-layout .listing-results { grid-column: 2; grid-row: 1; }
  .filter-header > button { display: none; }
  .product-grid--listing { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1250px) {
  .category-grid { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .category-grid--large { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .brand-cloud { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .product-grid--listing { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
