/* ==========================================================================
   Лиам — фурни и съдомиялни, Перник
   Design: white + ink with brand red (#C8102E). Conversion-first commerce UI.
   ========================================================================== */

/* --- Tokens ------------------------------------------------------------- */
:root {
  --white: #ffffff;
  --ink: #0b0d12;
  --ink-soft: #3c434f;
  --muted: #6b7280;
  --line: #e7e9ee;
  --line-strong: #cfd4dd;
  --surface: #f6f7f9;
  --surface-2: #eef0f4;

  --red: #c8102e;
  --red-dark: #a60c26;
  --red-deep: #7a091c;
  --red-tint: #fff5f7;
  --red-soft: #ffdfe5;
  --red-mid: #e8536a;

  --ok: #0f7a4a;
  --ok-tint: #eaf7f0;

  --font-display: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1240px;
  --gutter: clamp(1.15rem, 4vw, 3rem);
  --section-y: clamp(3rem, 6vw, 5.5rem);

  --r-xs: 6px;
  --r-sm: 10px;
  --r: 14px;
  --r-lg: 22px;
  --r-pill: 999px;
  --radius: var(--r-sm); /* legacy alias */

  --sh-1: 0 1px 2px rgb(11 13 18 / 6%), 0 1px 3px rgb(11 13 18 / 4%);
  --sh-2: 0 4px 14px -6px rgb(11 13 18 / 12%), 0 2px 6px -3px rgb(11 13 18 / 8%);
  --sh-3: 0 24px 48px -28px rgb(11 13 18 / 28%), 0 8px 20px -12px rgb(11 13 18 / 12%);
  --sh-red: 0 18px 34px -20px rgb(200 16 46 / 45%);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

* {
  margin: 0;
}

[hidden] {
  display: none !important;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

img {
  height: auto;
}

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

ul,
ol {
  list-style: none;
  padding: 0;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
}

h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  font-weight: 700;
}

strong {
  font-weight: 700;
}

/* --- Accessibility helpers ---------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  border-radius: var(--r-sm);
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

/* --- Layout ------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.narrow {
  max-width: 780px;
  margin-inline: auto;
}

.section {
  padding-block: var(--section-y);
}

.section--tight {
  padding-block: clamp(2rem, 4vw, 3rem);
}

.section--alt {
  background: var(--surface);
}

.section--dark {
  background: var(--ink);
  color: var(--white);
}

.section__head {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
}

.section__title {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.eyebrow--light,
.section--dark .eyebrow {
  color: var(--red-mid);
}

.lead {
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.section--dark .lead,
.lead--light {
  color: rgb(255 255 255 / 76%);
}

h1 + .lead,
h2 + .lead,
h3 + .lead,
.section__title + .lead,
.lead + .lead {
  margin-top: 0.9rem;
}

.note {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.muted {
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.85rem;
}

.actions--secondary {
  margin-top: 1.1rem;
}

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border: 1.5px solid transparent;
  border-radius: var(--r-pill);
  background: none;
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease),
    border-color 0.18s var(--ease), box-shadow 0.18s var(--ease),
    transform 0.18s var(--ease);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn--primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: var(--sh-red);
}

.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
}

.btn--dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-1px);
}

.btn--light {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.btn--light:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.btn--ghost {
  border-color: var(--line-strong);
  background: var(--white);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.btn--ghost-light,
.section--dark .btn--ghost {
  border-color: rgb(255 255 255 / 40%);
  background: transparent;
  color: var(--white);
}

.btn--ghost-light:hover,
.section--dark .btn--ghost:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.btn--soft {
  background: var(--red-tint);
  border-color: var(--red-soft);
  color: var(--red-dark);
}

.btn--soft:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.btn--lg {
  padding: 1.05rem 1.9rem;
  font-size: 1rem;
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn--block {
  width: 100%;
}

.btn[disabled] {
  opacity: 0.45;
  box-shadow: none;
  cursor: not-allowed;
}

.link-underline {
  position: relative;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.link-underline::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -3px;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.link-underline:hover::after,
.link-underline:focus-visible::after {
  transform: scaleX(1);
}

/* --- Announcement strip -------------------------------------------------- */
.topbar {
  background: var(--ink);
  color: rgb(255 255 255 / 88%);
  font-size: 0.82rem;
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding-block: 0.4rem;
  text-align: center;
}

.topbar strong {
  color: var(--white);
}

.topbar__dot {
  color: var(--red-mid);
}

.topbar a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgb(255 255 255 / 35%);
}

/* --- Header ------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgb(255 255 255 / 92%);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header__bar {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 3vw, 2.5rem);
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(140deg, var(--red) 0%, var(--red-deep) 100%);
  box-shadow: var(--sh-red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
}

.brand__text {
  display: grid;
  gap: 0.1rem;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--ink);
}

.brand__sub {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand--footer .brand__name {
  color: var(--white);
  font-size: 1.35rem;
}

.brand--footer .brand__sub {
  color: rgb(255 255 255 / 55%);
}

.brand__name--footer {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}

.nav {
  display: flex;
  gap: clamp(0.5rem, 1.6vw, 1.4rem);
  margin-right: auto;
}

.nav__link {
  position: relative;
  padding: 0.5rem 0.75rem;
  border-radius: var(--r-pill);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease);
}

.nav__link:hover {
  background: var(--surface-2);
}

.nav__link.is-active {
  background: var(--red-tint);
  color: var(--red-dark);
}

.header__side {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.7rem;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: background-color 0.18s var(--ease);
}

.header__phone:hover {
  background: var(--surface-2);
}

.header__phone svg {
  width: 18px;
  height: 18px;
  color: var(--red);
}

.header__phone-text {
  display: grid;
  gap: 0.05rem;
  line-height: 1.15;
}

.header__phone-label {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header__phone-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
}

.header__cart {
  position: relative;
  display: inline-flex;
  padding: 0.5rem;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease);
}

.header__cart svg {
  width: 22px;
  height: 22px;
}

.header__cart:hover {
  background: var(--surface-2);
}

.header__cart.is-active {
  color: var(--red);
}

.header__cart-count {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  padding-inline: 5px;
  border: 2px solid var(--white);
  border-radius: var(--r-pill);
  background: var(--red);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
}

.header__mobile {
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.burger {
  display: grid;
  gap: 5px;
  width: 42px;
  padding: 9px 7px;
  border: 0;
  border-radius: var(--r-sm);
  background: none;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}

.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.mobile-nav__inner {
  display: grid;
  padding-block: 0.75rem 1.75rem;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
}

.mobile-nav__link.is-active {
  color: var(--red);
}

.mobile-nav__num {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.mobile-nav__actions {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.35rem;
}

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(2.25rem, 6vw, 4rem);
  background:
    radial-gradient(75% 120% at 88% -10%, var(--red-tint) 0%, transparent 62%),
    linear-gradient(180deg, var(--white) 0%, var(--surface) 100%);
  overflow: hidden;
}

.hero--compact {
  padding-block: clamp(2rem, 5vw, 3.25rem);
}

.hero::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -8%;
  width: min(44vw, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(200 16 46 / 12%) 0%, transparent 68%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 0.9rem;
  border: 1px solid var(--red-soft);
  border-radius: var(--r-pill);
  background: var(--white);
  box-shadow: var(--sh-1);
  color: var(--red-dark);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero__eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgb(200 16 46 / 16%);
}

.hero__title {
  max-width: 20ch;
  margin-top: 1.1rem;
  font-size: clamp(2.15rem, 6vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero__title em {
  font-style: normal;
  color: var(--red);
}

.hero__lead {
  max-width: 52ch;
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: clamp(1.35rem, 3vw, 1.9rem);
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.35rem;
  margin-top: 1.5rem;
}

.hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero__chips svg {
  width: 17px;
  height: 17px;
  color: var(--red);
}

/* Legacy hero brand lockup (kept for any page still using it) */
.hero__brand {
  margin-block: 0.2em 0.05em;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 9vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--red);
}

.hero__headline {
  max-width: 24ch;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.hero__rule {
  display: none;
}

/* Motion: hero fade-in */
.has-js .hero__eyebrow,
.has-js .hero__title,
.has-js .hero__lead,
.has-js .hero__actions,
.has-js .hero__chips {
  animation: hero-fade 0.8s var(--ease) both;
}

.has-js .hero__title {
  animation-delay: 0.05s;
}

.has-js .hero__lead {
  animation-delay: 0.12s;
}

.has-js .hero__actions {
  animation-delay: 0.18s;
}

.has-js .hero__chips {
  animation-delay: 0.24s;
}

@keyframes hero-fade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* --- Page hero / page head ---------------------------------------------- */
.page-hero,
.page-head {
  padding-block: clamp(2rem, 4.5vw, 3.5rem) clamp(1.5rem, 3vw, 2.25rem);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(70% 130% at 92% -20%, var(--red-tint) 0%, transparent 60%),
    linear-gradient(180deg, var(--white) 0%, var(--surface) 100%);
}

.page-hero h1,
.page-head h1 {
  margin-block: 0.35rem 0.9rem;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.crumbs a {
  text-decoration: none;
}

.crumbs a:hover {
  color: var(--red);
}

/* --- Trust bar ----------------------------------------------------------- */
.trust-bar {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-bar__grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  padding-block: clamp(1.1rem, 2.5vw, 1.6rem);
}

.trust-item {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.trust-item__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--red-tint);
  color: var(--red);
}

.trust-item__icon svg {
  width: 19px;
  height: 19px;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.85rem;
}

/* --- Category chips ------------------------------------------------------ */
.section--listings {
  padding-top: clamp(2rem, 4.5vw, 3.25rem);
  background: var(--white);
}

.section__head--listings {
  align-items: end;
  margin-bottom: 1rem;
}

.cat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.35rem, 3vw, 2rem);
}

.cat-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.05rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  background: var(--white);
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease),
    border-color 0.18s var(--ease), transform 0.18s var(--ease);
}

.cat-chip:hover,
.cat-chip:focus-visible {
  border-color: var(--ink);
  color: var(--ink);
  transform: translateY(-1px);
}

.cat-chip--all {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.cat-chip--all:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.listings-more {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
}

/* --- Product grid + cards ------------------------------------------------ */
.grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.6rem);
}

.grid--products {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 245px), 1fr));
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease),
    transform 0.22s var(--ease);
}

.card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--sh-3);
  transform: translateY(-3px);
}

.card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--surface);
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.card:hover .card__media img {
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.badge--sale {
  background: var(--red);
  color: var(--white);
}

.card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.1rem 1.15rem;
}

.card__eyebrow {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card__title {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
}

.card__title a {
  text-decoration: none;
}

.card__title a:hover {
  color: var(--red);
}

.card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.78rem;
}

.card__specs li {
  padding: 0.2rem 0.55rem;
  border-radius: var(--r-xs);
  background: var(--surface-2);
  color: var(--ink-soft);
  font-weight: 600;
}

.card__assure {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--ok);
  font-size: 0.8rem;
  font-weight: 600;
}

.card__assure svg {
  width: 15px;
  height: 15px;
}

.card__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.price {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.price__was {
  color: var(--muted);
  font-size: 0.8rem;
  text-decoration: line-through;
}

.price__now {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.price__note {
  color: var(--muted);
  font-size: 0.76rem;
}

/* --- Value props / USP --------------------------------------------------- */
.usp {
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}

.usp__item {
  padding: clamp(1.25rem, 2.5vw, 1.6rem);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
  box-shadow: var(--sh-1);
}

.usp__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 0.9rem;
  border-radius: 12px;
  background: var(--red-tint);
  color: var(--red);
}

.usp__icon svg {
  width: 21px;
  height: 21px;
}

.usp__item h3 {
  margin-bottom: 0.4rem;
}

.usp__item p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* --- Steps --------------------------------------------------------------- */
.steps {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  margin-top: 2.25rem;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding-top: 1.1rem;
  border-top: 2px solid var(--red);
}

.steps--light li {
  border-color: var(--red-mid);
}

.steps__num {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 0.6rem;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
}

.steps h3 {
  margin-bottom: 0.3rem;
}

.steps p {
  color: var(--muted);
  font-size: 0.94rem;
}

.steps--light p {
  color: rgb(255 255 255 / 70%);
}

/* --- Checklist ----------------------------------------------------------- */
.checklist {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.checklist li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  top: 0.28em;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red-tint)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8102e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")
    center / 13px no-repeat;
}

.checklist--light li {
  color: rgb(255 255 255 / 78%);
}

.checklist--light li::before {
  background-color: rgb(255 255 255 / 12%);
}

/* --- Split sections ------------------------------------------------------ */
.split {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }
}

.split__list {
  display: grid;
  border-top: 1px solid var(--line);
}

.split__list li {
  padding-block: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.split__list h3 {
  margin-bottom: 0.25rem;
}

.split__list p {
  color: var(--muted);
  font-size: 0.94rem;
}

.split__list--light,
.split__list--light li {
  border-color: rgb(255 255 255 / 16%);
}

.split__list--light p {
  color: rgb(255 255 255 / 68%);
}

.split__aside {
  display: grid;
  gap: 0.85rem;
}

.aside-block {
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
  box-shadow: var(--sh-1);
}

.aside-block h3 {
  margin-bottom: 0.3rem;
}

.aside-block p {
  color: var(--muted);
  font-size: 0.93rem;
}

.section--alt .aside-block {
  background: var(--white);
}

/* --- Service cards ------------------------------------------------------- */
.service-grid {
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
  box-shadow: var(--sh-1);
}

.service-card__tag {
  align-self: flex-start;
  padding: 0.25rem 0.7rem;
  border-radius: var(--r-pill);
  background: var(--red-tint);
  color: var(--red-dark);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.service-card .checklist {
  margin-top: 0.5rem;
}

/* --- Service strip (dark CTA band) --------------------------------------- */
.section--service-strip {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(60% 130% at 100% 0%, rgb(200 16 46 / 42%) 0%, transparent 60%),
    var(--ink);
  color: var(--white);
}

.service-strip {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .service-strip {
    grid-template-columns: 1.4fr auto;
  }
}

.service-strip .section__title {
  margin-top: 0.25rem;
  color: var(--white);
}

.service-strip .lead {
  max-width: 52ch;
  margin-top: 0.7rem;
}

.service-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* --- FAQ ----------------------------------------------------------------- */
.faq {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
  overflow: hidden;
}

.faq__item[open] {
  border-color: var(--red-soft);
  box-shadow: var(--sh-1);
}

.faq__item summary {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.05rem 1.25rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  color: var(--red);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.faq__item[open] summary::after {
  content: "–";
}

.faq__item p {
  padding: 0 1.25rem 1.2rem;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

/* --- Callout / CTA band --------------------------------------------------- */
.callout {
  margin-top: clamp(2.25rem, 4.5vw, 3.5rem);
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--red-soft);
  border-radius: var(--r);
  background: var(--red-tint);
}

.section--alt .callout {
  background: var(--white);
}

.callout h3 {
  margin-bottom: 0.4rem;
}

.callout p {
  max-width: 60ch;
  color: var(--ink-soft);
}

.callout .btn {
  margin-top: 1.15rem;
}

.cta-band__inner {
  max-width: 760px;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: var(--r-lg);
  background: var(--surface);
}

/* --- Prose --------------------------------------------------------------- */
.prose {
  max-width: 72ch;
}

.prose h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 1.6rem;
  margin-bottom: 0.4rem;
}

.prose p,
.prose li {
  margin-bottom: 0.85rem;
  color: var(--ink-soft);
}

.prose ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.prose a {
  color: var(--red-dark);
  text-decoration: underline;
  text-decoration-color: var(--red-soft);
  text-underline-offset: 3px;
}

.prose a:hover {
  text-decoration-color: var(--red);
}

/* --- Catalog + filters --------------------------------------------------- */
.catalog {
  display: grid;
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
}

@media (min-width: 940px) {
  .catalog {
    grid-template-columns: 268px 1fr;
    align-items: start;
  }
}

.filters {
  display: grid;
  gap: 1.5rem;
  align-content: start;
  padding: clamp(1.1rem, 2.2vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
  box-shadow: var(--sh-1);
}

@media (min-width: 940px) {
  .filters {
    position: sticky;
    top: 96px;
  }
}

.filters__group {
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--line);
}

.filters__title {
  margin-bottom: 0.8rem;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.filters__list {
  display: grid;
  gap: 0.5rem;
}

.filters__range {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.filters__actions {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
}

.catalog__count {
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.catalog__intro {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-bottom: 1.25rem;
}

.empty {
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  text-align: center;
}

.empty h2,
.empty h3 {
  margin-bottom: 0.5rem;
  font-size: 1.35rem;
}

.empty p {
  max-width: 46ch;
  margin-inline: auto;
  color: var(--muted);
}

.empty .actions {
  justify-content: center;
}

.empty--listings {
  border-color: var(--red-soft);
  background: var(--red-tint);
}

.empty--listings h3 {
  color: var(--red-dark);
}

.empty--listings p {
  margin-bottom: 1.15rem;
  color: var(--ink-soft);
}

/* --- Product detail ------------------------------------------------------ */
.product {
  padding-block: clamp(1.25rem, 3vw, 2rem) var(--section-y);
}

.product__layout {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  margin-top: 1.25rem;
}

@media (min-width: 940px) {
  .product__layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
    align-items: start;
  }
}

.gallery__stage {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  overflow: hidden;
}

.gallery__stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), opacity 0.3s var(--ease);
}

.gallery__stage:hover img {
  transform: scale(1.03);
}

.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.gallery__thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: none;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.gallery__thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery__thumb:hover,
.gallery__thumb.is-active {
  border-color: var(--red);
  box-shadow: 0 0 0 2px var(--red-soft);
}

.product__info h1 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
}

.buybox {
  padding: clamp(1.1rem, 2.4vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
  box-shadow: var(--sh-2);
}

.product__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.7rem;
}

.product__price .price__now {
  font-size: clamp(1.75rem, 3.2vw, 2.3rem);
  color: var(--ink);
}

.product__price-note {
  width: 100%;
  color: var(--muted);
  font-size: 0.85rem;
}

.product__stock {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-pill);
  background: var(--ok-tint);
  color: var(--ok);
  font-size: 0.85rem;
  font-weight: 700;
}

.product__stock::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.product__buy {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  margin-top: 1.15rem;
}

.product__buy .btn--primary {
  flex: 1 1 190px;
}

.product__buy-note {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.assure {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.assure li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.92rem;
}

.assure svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  color: var(--red);
}

.assure strong {
  font-weight: 700;
}

.assure span {
  color: var(--muted);
}

.product__subtitle {
  margin-top: 2.25rem;
  margin-bottom: 0.9rem;
  font-size: 1.1rem;
}

.qty {
  display: inline-flex;
  align-items: stretch;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-pill);
  overflow: hidden;
}

.qty button {
  width: 42px;
  border: 0;
  background: none;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.18s var(--ease);
}

.qty button:hover {
  background: var(--surface-2);
}

.qty input {
  width: 52px;
  border: 0;
  text-align: center;
  background: none;
  -moz-appearance: textfield;
}

.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.specs {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}

.specs > div {
  display: grid;
  grid-template-columns: minmax(120px, 38%) 1fr;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line);
}

.specs > div:nth-child(odd) {
  background: var(--surface);
}

.specs > div:last-child {
  border-bottom: 0;
}

.specs dt {
  color: var(--muted);
  font-size: 0.89rem;
}

.specs dd {
  margin: 0;
  font-weight: 600;
}

/* --- Contact ------------------------------------------------------------- */
.contact {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.25rem);
}

@media (min-width: 900px) {
  .contact {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: start;
  }
}

.contact__form .section__title {
  margin-bottom: 1.5rem;
}

.contact__side {
  padding: clamp(1.35rem, 3vw, 1.85rem);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
  box-shadow: var(--sh-2);
}

.contact__side-title {
  margin-bottom: 1.1rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact__list {
  display: grid;
  margin-bottom: 1.35rem;
}

.contact__list > div {
  padding-block: 0.7rem;
  border-bottom: 1px solid var(--line);
}

.contact__list dt {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact__list dd {
  margin: 0;
  font-weight: 600;
}

.contact__list a {
  text-decoration: none;
}

.contact__list a:hover {
  color: var(--red);
}

.contact__note {
  margin-top: 1.35rem;
  padding: 1rem 1.1rem;
  border-radius: var(--r-sm);
  background: var(--red-tint);
}

.contact__note + .contact__note {
  margin-top: 0.75rem;
}

.contact__note h3 {
  margin-bottom: 0.3rem;
  color: var(--red-dark);
}

.contact__note p {
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.contact__photo {
  margin: 0 0 1.1rem;
  overflow: hidden;
  border-radius: var(--r-sm);
}

.contact__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hours {
  display: grid;
  gap: 0.2rem;
}

/* --- Finance / leasing --------------------------------------------------- */
.finance {
  background: var(--ink);
  color: var(--white);
  padding-block: clamp(2.1rem, 4.5vw, 3.4rem);
}

.finance .eyebrow {
  color: var(--red-mid);
}

.finance .section__title {
  color: var(--white);
  margin-top: 0.35rem;
}

.finance p {
  max-width: 54ch;
  margin-top: 0.75rem;
  color: rgb(255 255 255 / 78%);
}

.finance__inner {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 860px) {
  .finance__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 2.5rem;
  }
}

.finance__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* --- Store photos -------------------------------------------------------- */
.store-lead {
  max-width: 58ch;
  margin-bottom: clamp(1.25rem, 3vw, 1.85rem);
}

.store-gallery {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .store-gallery {
    grid-template-columns: 1.12fr 0.94fr 0.94fr;
    align-items: stretch;
  }
}

.store-shot {
  margin: 0;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--sh-1);
}

.store-shot img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.store-shot figcaption {
  padding: 0.7rem 0.9rem 0.95rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.map iframe {
  width: 100%;
  height: clamp(320px, 45vh, 460px);
  border: 0;
  filter: grayscale(0.85) contrast(1.03);
}

/* --- Forms --------------------------------------------------------------- */
.form {
  display: grid;
  gap: 1.15rem;
}

.form__row {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 600px) {
  .form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.form__block {
  display: grid;
  gap: 1.15rem;
  padding: clamp(1.15rem, 3vw, 1.6rem);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
}

.form__block legend {
  padding-inline: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-size: 0.86rem;
  font-weight: 600;
}

.field label span[aria-hidden] {
  color: var(--red);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--white);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--ink-soft);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-soft);
  outline: none;
}

.field input[disabled],
.field select[disabled] {
  background: var(--surface);
  color: var(--muted);
  cursor: not-allowed;
}

.field textarea {
  resize: vertical;
}

.field__hint {
  color: var(--muted);
  font-size: 0.83rem;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea,
input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: var(--red);
  background: var(--red-tint);
}

.field-alert {
  color: var(--red-dark);
  font-size: 0.82rem;
}

.checkbox {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.92rem;
  cursor: pointer;
}

.checkbox input {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  accent-color: var(--red);
}

.checkbox a {
  color: inherit;
  text-decoration-color: var(--red);
}

.form__result {
  padding: 0.85rem 1rem;
  border-radius: var(--r-sm);
  background: var(--surface);
  font-size: 0.92rem;
}

.form__result.is-ok {
  background: var(--ok-tint);
  color: var(--ok);
}

.form__result.is-error {
  background: var(--red-tint);
  color: var(--red-dark);
}

.alert {
  padding: 0.9rem 1.1rem;
  border-radius: var(--r-sm);
  background: var(--red-tint);
  color: var(--red-dark);
  font-size: 0.92rem;
}

/* --- Cart ---------------------------------------------------------------- */
.cart {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
}

@media (min-width: 900px) {
  .cart {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
    align-items: start;
  }
}

.cart-lines {
  display: grid;
  gap: 0.75rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
}

@media (min-width: 620px) {
  .cart-line {
    grid-template-columns: 110px 1fr auto;
    align-items: center;
  }
}

.cart-line__media {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-sm);
  background: var(--surface);
  overflow: hidden;
}

.cart-line__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-line__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.cart-line__title a {
  text-decoration: none;
}

.cart-line__title a:hover {
  color: var(--red);
}

.cart-line__unit {
  color: var(--muted);
  font-size: 0.86rem;
}

.cart-line__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  margin-top: 0.55rem;
}

.cart-line__total {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  white-space: nowrap;
}

.cart-line__remove {
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.cart-line__remove:hover {
  color: var(--red);
}

.cart__summary {
  display: grid;
  gap: 0.9rem;
  justify-items: start;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
  box-shadow: var(--sh-2);
}

@media (min-width: 900px) {
  .cart__summary {
    position: sticky;
    top: 96px;
  }
}

.cart__summary-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cart__summary .link-underline {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
}

.cart__note {
  color: var(--muted);
  font-size: 0.84rem;
}

.summary {
  display: grid;
  width: 100%;
}

.summary > div {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding-block: 0.55rem;
  border-bottom: 1px solid var(--line);
}

.summary dt {
  color: var(--muted);
  font-size: 0.9rem;
}

.summary dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
}

.summary__total {
  margin-top: 0.3rem;
  padding-top: 0.8rem;
  border-top: 2px solid var(--ink);
  border-bottom: 0;
}

.summary__total dt,
.summary__total dd {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
}

/* --- Checkout ------------------------------------------------------------ */
.checkout {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
}

@media (min-width: 960px) {
  .checkout {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
    align-items: start;
  }

  .checkout .alert {
    grid-column: 1 / -1;
  }
}

.checkout__aside {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 960px) {
  .checkout__aside {
    position: sticky;
    top: 96px;
  }
}

.checkout__panel,
.checkout__totals {
  padding: clamp(1.15rem, 3vw, 1.6rem);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
  box-shadow: var(--sh-1);
}

.checkout__panel h2 {
  margin-bottom: 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.checkout-items {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.checkout-items li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.75rem;
  align-items: center;
}

.checkout-items img {
  width: 56px;
  height: 42px;
  border-radius: var(--r-xs);
  object-fit: cover;
  background: var(--surface);
}

.checkout-items strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}

.checkout-items span {
  color: var(--muted);
  font-size: 0.82rem;
}

.checkout__status {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.87rem;
}

.checkout__quote-note {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: lowercase;
}

.checkout__legal {
  color: var(--muted);
  font-size: 0.82rem;
}

.checkout__legal a {
  color: inherit;
  text-decoration-color: var(--red);
}

.checkout__assure {
  display: grid;
  gap: 0.5rem;
  font-size: 0.86rem;
}

.checkout__assure li {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--ink-soft);
}

.checkout__assure svg {
  width: 16px;
  height: 16px;
  color: var(--red);
}

.delivery-options {
  display: grid;
  gap: 0.8rem;
}

@media (min-width: 620px) {
  .delivery-options {
    grid-template-columns: 1fr 1fr;
  }
}

.delivery-options.is-invalid .radio-tile {
  border-color: var(--red);
}

.radio-tile {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 1rem;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: border-color 0.18s var(--ease), background-color 0.18s var(--ease),
    box-shadow 0.18s var(--ease);
}

.radio-tile:hover {
  border-color: var(--ink-soft);
}

.radio-tile input {
  margin-top: 0.25rem;
  accent-color: var(--red);
}

.radio-tile:has(input:checked) {
  border-color: var(--red);
  background: var(--red-tint);
  box-shadow: 0 0 0 3px var(--red-soft);
}

.radio-tile strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.97rem;
}

.radio-tile small {
  color: var(--muted);
  font-size: 0.82rem;
}

.combo {
  position: relative;
}

.combo__list {
  position: absolute;
  z-index: 20;
  top: calc(100% + 4px);
  inset-inline: 0;
  max-height: 260px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--white);
  box-shadow: var(--sh-3);
  overflow: hidden auto;
}

.combo__list li {
  padding: 0.6rem 0.9rem;
  font-size: 0.92rem;
  cursor: pointer;
}

.combo__list li:hover,
.combo__list li[aria-selected="true"] {
  background: var(--red-tint);
  color: var(--red-dark);
}

/* --- Success / 404 ------------------------------------------------------- */
.success__inner,
.notfound__inner {
  max-width: 680px;
  padding-block: clamp(2rem, 6vw, 4rem);
}

.success__badge {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: var(--ok-tint);
  color: var(--ok);
}

.success__badge svg {
  width: 28px;
  height: 28px;
}

.success__ref {
  margin-top: 1.15rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--r-sm);
  background: var(--surface);
}

.notfound__code {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  color: var(--red);
}

.notfound__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
  margin-top: 2.25rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
}

/* --- Footer -------------------------------------------------------------- */
.footer {
  padding-top: clamp(2.75rem, 5.5vw, 4.5rem);
  background: var(--ink);
  color: rgb(255 255 255 / 70%);
}

.footer__grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  padding-bottom: clamp(2.25rem, 5vw, 3.5rem);
}

@media (min-width: 760px) {
  .footer__grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
}

.footer__pitch {
  max-width: 34ch;
  margin-top: 0.9rem;
  font-size: 0.91rem;
}

.footer__social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.15rem;
}

.footer__social a {
  padding: 0.4rem 0.85rem;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: var(--r-pill);
  font-size: 0.82rem;
}

.footer__social a:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.footer__col {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  font-size: 0.91rem;
}

.footer__title {
  margin-bottom: 0.35rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer a {
  text-decoration: none;
  transition: color 0.18s var(--ease);
}

.footer__col a:hover {
  color: var(--white);
}

.footer__muted {
  color: rgb(255 255 255 / 50%);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.35rem;
  border-top: 1px solid rgb(255 255 255 / 12%);
  font-size: 0.82rem;
}

.footer__legal {
  display: flex;
  gap: 1.15rem;
}

/* --- Mobile CTA bar ------------------------------------------------------ */
.mobile-cta {
  position: fixed;
  bottom: 0;
  inset-inline: 0;
  z-index: 90;
  display: none;
  border-top: 1px solid var(--line);
  background: rgb(255 255 255 / 97%);
  backdrop-filter: blur(12px);
  box-shadow: 0 -8px 24px -18px rgb(11 13 18 / 40%);
  padding-bottom: env(safe-area-inset-bottom);
}

.mobile-cta a {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding-block: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
}

.mobile-cta svg {
  width: 19px;
  height: 19px;
}

.mobile-cta__call {
  color: var(--red);
}

.mobile-cta__msg {
  background: var(--red);
  color: var(--white);
}

/* --- Responsive ---------------------------------------------------------- */
@media (max-width: 1040px) {
  .header__phone-text {
    display: none;
  }
}

@media (max-width: 940px) {
  .nav,
  .header__side {
    display: none;
  }

  .header__mobile {
    display: flex;
  }
}

@media (max-width: 720px) {
  .mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: 62px;
  }

  .specs > div {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .topbar__inner {
    font-size: 0.78rem;
  }
}

/* --- Motion preferences -------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .has-js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* --- Print --------------------------------------------------------------- */
@media print {
  .header,
  .topbar,
  .footer,
  .mobile-cta,
  .filters {
    display: none;
  }
}

/* --- SEO landing pages: category subnav, chips, intro ------------------- */
/* Added with the category landing pages. Every in-stock category is now
   reachable from any page — previously the nav linked to none of them. */

.subnav {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.subnav__inner {
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.subnav__link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.7rem 0.85rem;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.18s var(--ease), border-color 0.18s var(--ease);
}

.subnav__link:hover,
.subnav__link:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--red);
}

.subnav__link.is-active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.subnav__count,
.cat-chip__count {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.cat-chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.cat-chip.is-active .cat-chip__count {
  color: rgb(255 255 255 / 65%);
}

.cat-chips--page {
  margin-top: clamp(1rem, 2.5vw, 1.5rem);
}

.page-head__sub,
.hero__sub {
  max-width: 46ch;
  margin: 0.55rem 0 0;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 2.1vw, 1.25rem);
  font-weight: 600;
  line-height: 1.35;
  text-wrap: balance;
}

.hero__sub {
  max-width: 34ch;
}

.section--intro {
  padding-bottom: 0;
}

.category-brands {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.filters__list--links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.filters__list--links a {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.4rem 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.filters__list--links a:hover,
.filters__list--links a:focus-visible {
  color: var(--red);
}

.filters__list--links span {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.mobile-nav__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 1rem 0 0.35rem;
  border-top: 1px solid var(--line);
}

.mobile-nav__cats-title {
  flex: 1 0 100%;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-nav__cats a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

.mobile-nav__cats a span {
  color: var(--muted);
  font-size: 0.74rem;
  font-variant-numeric: tabular-nums;
}
