/* ==========================================================================
   Universal Service and Parts - components
   Header, footer, hero, cards, catalog, gallery, cart and checkout.
   Depends on the tokens defined in site.css.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
  transition: box-shadow var(--duration) var(--ease);
}

.site-header.is-stuck { box-shadow: var(--shadow-sm); }

/* Micro-bar: opening hours and the sales line. Collapses away on scroll and is
   hidden entirely on small screens, where the space is better spent on search. */
.header-bar {
  background: var(--ink);
  color: var(--text-inverse-muted);
  font-family: var(--font-mono);
  font-size: var(--step-2xs);
  letter-spacing: 0.04em;
  overflow: hidden;
  max-height: 3rem;
  transition: max-height 260ms var(--ease), opacity 200ms var(--ease);
}

.site-header.is-stuck .header-bar {
  max-height: 0;
  opacity: 0;
}

.header-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: 2.25rem;
}

.header-bar__group {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header-bar a {
  color: var(--text-inverse-muted);
  text-decoration: none;
}

.header-bar a:hover {
  color: var(--text-inverse);
  text-decoration: underline;
}

@media (max-width: 55rem) {
  .header-bar { display: none; }
}

.header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-md);
  min-height: var(--header-height);
  transition: min-height 200ms var(--ease);
}

.site-header.is-stuck .header-main { min-height: 3.75rem; }

@media (max-width: 55rem) {
  .header-main {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: var(--space-sm);
    min-height: 3.75rem;
  }
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  flex: none;
}

.logo__mark { flex: none; }

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo__name {
  font-family: var(--font-display);
  font-size: 1.3125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
}

.logo__sub {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.22rem;
}

@media (max-width: 24rem) {
  .logo__text { display: none; }
}

/* Header search */
.header-search {
  position: relative;
  max-width: 32rem;
  width: 100%;
  justify-self: center;
}

@media (max-width: 55rem) {
  .header-search {
    grid-column: 1 / -1;
    max-width: none;
    margin-bottom: var(--space-xs);
  }
}

.header-search__field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.4rem 0.4rem 0.85rem;
  background: var(--mist);
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: border-color var(--duration) var(--ease),
              background-color var(--duration) var(--ease);
}

.header-search__field:focus-within {
  background: var(--paper);
  border-color: var(--arc);
  box-shadow: 0 0 0 3px rgb(22 104 240 / 0.14);
}

.header-search__icon { color: var(--text-muted); flex: none; }

.header-search__input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: var(--step-sm);
  color: var(--text);
  padding: 0.2rem 0;
}

.header-search__input:focus { outline: none; }

.header-search__input::placeholder {
  font-family: var(--font-mono);
  font-size: var(--step-xs);
  color: #93a2b8;
}

/* Type-ahead results */
.suggestions {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  right: 0;
  z-index: 120;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 0.3rem;
  max-height: 24rem;
  overflow-y: auto;
}

.suggestions__item { margin: 0; }

.suggestions__link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
}

.suggestions__link:hover,
.suggestions__link:focus-visible {
  background: var(--mist);
  color: var(--text);
}

.suggestions__thumb {
  width: 2.5rem;
  height: 2.5rem;
  flex: none;
  border-radius: var(--radius-sm);
  background: var(--mist);
  object-fit: contain;
}

.suggestions__name {
  font-size: var(--step-sm);
  font-weight: 500;
  line-height: 1.3;
}

.suggestions__meta {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.suggestions__empty {
  padding: var(--space-sm);
  text-align: center;
  font-size: var(--step-sm);
  color: var(--text-muted);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex: none;
}

.icon-btn {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.45rem 0.6rem;
  border: 0;
  background: transparent;
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--duration) var(--ease), color var(--duration) var(--ease);
}

.icon-btn:hover { background: var(--mist); color: var(--arc); }

.icon-btn__label {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.icon-btn:hover .icon-btn__label { color: var(--arc); }

@media (max-width: 30rem) {
  .icon-btn__label { display: none; }
}

.cart-count {
  position: absolute;
  top: 0.1rem;
  right: 0.15rem;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.25rem;
  display: grid;
  place-items: center;
  background: var(--signal-ink);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  border-radius: 999px;
  border: 2px solid var(--paper);
}

/* Primary navigation */
.site-nav {
  border-top: 1px solid var(--hairline);
  background: var(--paper);
}

.site-nav__list {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav__list::-webkit-scrollbar { display: none; }

.site-nav__item { margin: 0; flex: none; }

.site-nav__link {
  display: flex;
  align-items: center;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.site-nav__link:hover {
  color: var(--arc);
  border-bottom-color: var(--arc);
}

.site-nav__link.is-active {
  color: var(--arc);
  border-bottom-color: var(--arc);
}

.site-nav__link:first-child { padding-left: 0; }

@media (max-width: 55rem) {
  .site-nav { display: none; }
  .site-nav.is-open { display: block; }

  .site-nav__list {
    flex-direction: column;
    overflow: visible;
    padding-bottom: var(--space-xs);
  }

  .site-nav__link {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--hairline);
    border-left: 2px solid transparent;
  }

  .site-nav__link.is-active,
  .site-nav__link:hover {
    border-bottom-color: var(--hairline);
    border-left-color: var(--arc);
    padding-left: 0.6rem;
  }
}

.nav-toggle { display: none; }

@media (max-width: 55rem) {
  .nav-toggle { display: inline-flex; }
}

/* --------------------------------------------------------------------------
   2. Hero
   --------------------------------------------------------------------------
   Three words, three lines, each with a mono micro-label naming what the
   business actually does. The structure is the message.
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  background: var(--ink);
  color: var(--text-inverse);
  overflow: hidden;
  padding-block: var(--space-2xl);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: var(--space-2xl);
}

@media (max-width: 62rem) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-xl);
  }
}

.hero__title {
  font-size: var(--step-3xl);
  margin-bottom: var(--space-md);
}

.hero__line {
  display: block;
  position: relative;
  padding-bottom: 0.28em;
  margin-bottom: 0.18em;
  border-bottom: 1px solid var(--hairline-dark);
}

.hero__line:last-child { border-bottom: 0; }

.hero__word { color: var(--text-inverse); }

.hero__line:nth-child(2) .hero__word { color: var(--arc-bright); }

.hero__note {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--step-2xs);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-inverse-muted);
  margin-top: 0.4em;
}

.hero__lede {
  max-width: 34rem;
  font-size: var(--step-md);
  color: var(--text-inverse-muted);
  margin-bottom: var(--space-lg);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hairline-dark);
}

.hero__stat {
  padding: var(--space-xs) var(--space-sm) 0 0;
  border-left: 1px solid var(--hairline-dark);
  padding-left: var(--space-sm);
}

.hero__stat:first-child { border-left: 0; padding-left: 0; }

.hero__stat-value {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--step-lg);
  font-weight: 500;
  color: var(--arc-bright);
  line-height: 1.1;
}

.hero__stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-inverse-muted);
  margin-top: 0.3rem;
}

.hero__art {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 34rem;
}

@media (max-width: 62rem) {
  .hero__art { max-width: 28rem; }
}

/* --------------------------------------------------------------------------
   3. Product card
   -------------------------------------------------------------------------- */

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

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

.product-card:focus-within {
  border-color: var(--arc);
  box-shadow: 0 0 0 3px rgb(22 104 240 / 0.16);
}

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

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-xs);
  transition: transform 320ms var(--ease);
}

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

.product-card__flags {
  position: absolute;
  top: var(--space-2xs);
  left: var(--space-2xs);
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.25rem;
  z-index: 2;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--space-xs) var(--space-sm) var(--space-sm);
}

.product-card__sku {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.product-card__title {
  font-family: var(--font-display);
  font-size: var(--step-md);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

.product-card__link {
  color: var(--text);
  text-decoration: none;
}

/* Stretch the title link over the whole card so the entire card is clickable,
   while keeping the Add to cart button above it and independently focusable. */
.product-card__link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.product-card__link:hover { color: var(--arc); }

.product-card__summary {
  font-size: var(--step-xs);
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: var(--space-xs);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__specs { margin-top: auto; }

.product-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xs);
  flex-wrap: wrap;
  padding-top: var(--space-xs);
  margin-top: var(--space-xs);
  border-top: 1px solid var(--hairline);
}

.product-card__cta {
  position: relative;
  z-index: 2;
}

.product-card--out .product-card__image { opacity: 0.55; filter: grayscale(0.4); }

/* --------------------------------------------------------------------------
   4. Category card
   -------------------------------------------------------------------------- */

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
  padding: var(--space-sm);
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
  transition: border-color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

.category-card:hover {
  border-color: var(--arc);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  color: var(--text);
}

.category-card__media {
  aspect-ratio: 16 / 10;
  background: var(--mist);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: var(--space-2xs);
}

.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms var(--ease);
}

.category-card:hover .category-card__image { transform: scale(1.04); }

.category-card__title {
  font-family: var(--font-display);
  font-size: var(--step-lg);
  font-weight: 700;
  line-height: 1.1;
}

.category-card__tagline {
  font-size: var(--step-xs);
  color: var(--text-muted);
  line-height: 1.5;
}

.category-card__count {
  margin-top: auto;
  padding-top: var(--space-2xs);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--arc);
}

/* --------------------------------------------------------------------------
   5. Catalog layout
   -------------------------------------------------------------------------- */

.catalog {
  display: grid;
  grid-template-columns: 16rem minmax(0, 1fr);
  gap: var(--space-xl);
  align-items: start;
}

@media (max-width: 62rem) {
  .catalog { grid-template-columns: minmax(0, 1fr); gap: var(--space-md); }
}

.filters {
  position: sticky;
  top: calc(var(--header-height) + var(--space-sm));
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: var(--space-sm);
  max-height: calc(100vh - var(--header-height) - var(--space-lg));
  overflow-y: auto;
}

@media (max-width: 62rem) {
  .filters {
    position: static;
    max-height: none;
    display: none;
  }

  .filters.is-open { display: block; }
}

.filters__group { padding-block: var(--space-sm); border-top: 1px solid var(--hairline); }
.filters__group:first-of-type { border-top: 0; padding-top: 0; }

.filters__legend {
  font-family: var(--font-display);
  font-size: var(--step-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-2xs);
  padding: 0;
}

.filters__option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.28rem 0;
  font-size: var(--step-sm);
  cursor: pointer;
  color: var(--text);
}

.filters__option:hover { color: var(--arc); }

.filters__option-count {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--text-muted);
}

.filters__range {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.4rem;
}

.filters__range-sep { color: var(--text-muted); font-family: var(--font-mono); }

.filters__range .input {
  padding: 0.4rem 0.5rem;
  font-family: var(--font-mono);
  font-size: var(--step-xs);
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xs);
  padding-bottom: var(--space-sm);
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--hairline);
}

.toolbar__count {
  font-family: var(--font-mono);
  font-size: var(--step-xs);
  color: var(--text-muted);
}

.toolbar__count strong { color: var(--text); font-weight: 500; }

.toolbar__controls {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
}

.toolbar .select {
  width: auto;
  padding-block: 0.4rem;
  font-size: var(--step-sm);
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: var(--space-sm);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.4rem 0.25rem 0.6rem;
  background: var(--arc-wash);
  color: var(--arc-deep);
  border: 0;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: var(--step-2xs);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color var(--duration) var(--ease);
}

.chip:hover { background: #d3e3fd; }

.chip__x {
  display: grid;
  place-items: center;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: rgb(13 77 184 / 0.16);
  font-size: 0.7rem;
  line-height: 1;
}

/* Pagination */
.pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-top: var(--space-xl);
}

.pager__btn {
  min-width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.6rem;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--paper);
  font-family: var(--font-mono);
  font-size: var(--step-sm);
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: border-color var(--duration) var(--ease),
              background-color var(--duration) var(--ease),
              color var(--duration) var(--ease);
}

.pager__btn:hover:not(:disabled) { border-color: var(--arc); color: var(--arc); }

.pager__btn[aria-current="page"] {
  background: var(--arc);
  border-color: var(--arc);
  color: #fff;
}

.pager__btn:disabled { opacity: 0.4; cursor: not-allowed; }

.pager__gap {
  padding: 0 0.3rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* --------------------------------------------------------------------------
   6. Product detail
   -------------------------------------------------------------------------- */

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 var(--space-md);
  padding: 0;
  list-style: none;
  font-family: var(--font-mono);
  font-size: var(--step-2xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breadcrumbs li { margin: 0; display: flex; align-items: center; gap: 0.4rem; }
.breadcrumbs a { color: var(--text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--arc); text-decoration: underline; }
.breadcrumbs__sep { color: var(--text-muted); }
.breadcrumbs__current { color: var(--text); }

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: var(--space-xl);
  align-items: start;
}

@media (max-width: 62rem) {
  .product-detail { grid-template-columns: minmax(0, 1fr); gap: var(--space-lg); }
}

/* Gallery */
.gallery__stage {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--mist);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-sm);
}

.gallery__thumbs {
  display: flex;
  /* Products carry up to seven photographs. Seven 4.5rem thumbnails do not fit a 375px
     screen on one line, and without wrapping they push the whole page wider than the
     viewport rather than overflowing their own container. */
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.6rem;
  padding: 0;
  list-style: none;
}

.gallery__thumbs li { margin: 0; }

.gallery__thumb {
  width: 4.5rem;
  height: 4.5rem;
  padding: 0.25rem;
  background: var(--mist);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--duration) var(--ease);
}

.gallery__thumb:hover { border-color: #b3c0d3; }

.gallery__thumb[aria-current="true"] {
  border-color: var(--arc);
  box-shadow: 0 0 0 2px rgb(22 104 240 / 0.18);
}

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

.product-summary__title {
  font-size: var(--step-2xl);
  margin-bottom: var(--space-2xs);
}

.product-summary__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-mono);
  font-size: var(--step-2xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.product-summary__price {
  padding: var(--space-sm) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  margin-bottom: var(--space-sm);
}

.product-summary__save {
  display: block;
  margin-top: 0.3rem;
  font-family: var(--font-mono);
  font-size: var(--step-xs);
  color: var(--signal-ink);
}

.buy-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xs);
  margin-block: var(--space-sm);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--step-sm);
}

.spec-table caption {
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--step-lg);
  font-weight: 700;
  margin-bottom: var(--space-2xs);
}

.spec-table th,
.spec-table td {
  padding: 0.6rem 0.5rem;
  text-align: left;
  border-bottom: 1px solid var(--hairline);
  vertical-align: top;
}

.spec-table th {
  font-weight: 500;
  color: var(--text-muted);
  width: 45%;
}

.spec-table td {
  font-family: var(--font-mono);
  font-size: var(--step-xs);
}

/* Quantity selector */
.quantity {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}

.quantity__btn {
  width: 2.4rem;
  border: 0;
  background: var(--mist);
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color var(--duration) var(--ease), color var(--duration) var(--ease);
}

.quantity__btn:hover:not(:disabled) { background: var(--mist-deep); color: var(--arc); }
.quantity__btn:disabled { opacity: 0.4; cursor: not-allowed; }

.quantity__input {
  width: 3.2rem;
  border: 0;
  border-inline: 1px solid var(--hairline);
  text-align: center;
  font-family: var(--font-mono);
  font-size: var(--step-sm);
  color: var(--text);
  padding: 0.55rem 0.2rem;
  -moz-appearance: textfield;
}

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

.quantity__input:focus { outline: none; box-shadow: inset 0 0 0 2px rgb(22 104 240 / 0.3); }

/* --------------------------------------------------------------------------
   7. Service highlights, trust and loyalty
   -------------------------------------------------------------------------- */

.service-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
  padding: var(--space-md);
  background: var(--steel);
  border: 1px solid var(--hairline-dark);
  border-radius: var(--radius-lg);
  transition: border-color var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.service-card:hover { border-color: var(--arc); transform: translateY(-2px); }

.service-card__icon {
  color: var(--arc-bright);
  margin-bottom: var(--space-2xs);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--step-lg);
  font-weight: 700;
  color: var(--text-inverse);
}

.service-card__body {
  font-size: var(--step-sm);
  color: var(--text-inverse-muted);
  line-height: 1.55;
}

.service-card__note {
  margin-top: auto;
  padding-top: var(--space-xs);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--arc-bright);
}

/* Why choose us: numbered because the list is a set of commitments, and the
   numbering makes them countable rather than decorative. */
.reason {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-sm);
  align-items: start;
  padding-block: var(--space-sm);
  border-top: 1px solid var(--hairline);
}

.reason__index {
  font-family: var(--font-mono);
  font-size: var(--step-xs);
  color: var(--arc);
  padding-top: 0.25rem;
}

.reason__title {
  font-family: var(--font-display);
  font-size: var(--step-lg);
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.reason__body { color: var(--text-muted); font-size: var(--step-sm); }

/* Trade programme */
.trade {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-xl);
  align-items: center;
}

@media (max-width: 55rem) {
  .trade { grid-template-columns: minmax(0, 1fr); gap: var(--space-lg); }
}

.tier {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-sm);
  align-items: center;
  padding: var(--space-sm);
  background: var(--steel);
  border: 1px solid var(--hairline-dark);
  border-radius: var(--radius);
}

.tier + .tier { margin-top: 0.5rem; }

/* Grid children default to min-width:auto, so the nowrap benefit column below would
   otherwise set the row's minimum width and push the whole section past the viewport. */
.tier > * { min-width: 0; }

.tier__mark {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: rgb(59 135 255 / 0.14);
  /* --arc-bright is calibrated against the base navy, where it reaches 5.5:1. This tile
     lightens its own ground with the tint above, which drops it to 3.9:1, so the numeral
     is lifted a step further to clear 4.5:1 on the tinted square specifically. */
  color: #5c9bff;
  font-family: var(--font-mono);
  font-size: var(--step-sm);
  font-weight: 500;
}

.tier__name {
  font-family: var(--font-display);
  font-size: var(--step-md);
  font-weight: 700;
  color: var(--text-inverse);
  line-height: 1.1;
}

.tier__note {
  font-family: var(--font-mono);
  font-size: var(--step-2xs);
  color: var(--text-inverse-muted);
}

.tier__value {
  font-family: var(--font-mono);
  font-size: var(--step-md);
  color: var(--arc-bright);
  white-space: nowrap;
}

/* Narrow screens: drop the benefit onto its own line and let it wrap, rather than
   keeping a third nowrap column that no longer fits. */
@media (max-width: 30rem) {
  .tier { grid-template-columns: auto minmax(0, 1fr); }

  .tier__value {
    grid-column: 2;
    white-space: normal;
    font-size: var(--step-sm);
  }
}

/* Project gallery */
.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  transition: box-shadow var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.project-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.project-card__media {
  aspect-ratio: 3 / 2;
  background: var(--mist);
  overflow: hidden;
}

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

.project-card:hover .project-card__media img { transform: scale(1.04); }

.project-card__body { padding: var(--space-sm); display: flex; flex-direction: column; flex: 1; }

.project-card__type {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--arc);
  margin-bottom: 0.25rem;
}

.project-card__title {
  font-family: var(--font-display);
  font-size: var(--step-md);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.2rem;
}

.project-card__vehicle {
  font-family: var(--font-mono);
  font-size: var(--step-2xs);
  color: var(--text-muted);
  margin-bottom: var(--space-2xs);
}

.project-card__summary {
  font-size: var(--step-xs);
  color: var(--text-muted);
  line-height: 1.5;
}

.project-card__date {
  margin-top: auto;
  padding-top: var(--space-xs);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Brand strip */
/* Column counts divide the brand count evenly at every width, so the last row is never
   part-empty. auto-fit was picking 8 columns for 12 logos, leaving a four-cell gap. */
.brand-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (max-width: 70rem) { .brand-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 45rem) { .brand-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 30rem) { .brand-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.brand-strip__cell {
  display: grid;
  place-items: center;
  padding: var(--space-md) var(--space-sm);
  background: var(--paper);
  min-height: 6rem;
  /* Each cell draws its own separator. A background behind the whole grid would show
     through any unfilled track as a grey block if the logo count ever stops dividing. */
  box-shadow: 0 0 0 1px var(--hairline);
}

.brand-strip__logo {
  max-height: 2.2rem;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  opacity: 0.72;
  filter: grayscale(1);
  transition: opacity var(--duration) var(--ease), filter var(--duration) var(--ease);
}

.brand-strip__cell:hover .brand-strip__logo { opacity: 1; filter: none; }

/* Newsletter */
.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 26rem);
  gap: var(--space-xl);
  align-items: center;
}

@media (max-width: 55rem) {
  .newsletter { grid-template-columns: minmax(0, 1fr); gap: var(--space-md); }
}

.newsletter__form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.newsletter__form .input {
  flex: 1;
  min-width: 12rem;
  background: var(--steel);
  border-color: var(--hairline-dark);
  color: var(--text-inverse);
}

.newsletter__form .input::placeholder { color: var(--text-inverse-muted); }

.newsletter__form .input:hover { border-color: var(--arc-bright); }

.newsletter__form .input:focus {
  border-color: var(--arc-bright);
  box-shadow: 0 0 0 3px rgb(59 135 255 / 0.22);
}

.newsletter__small {
  margin-top: var(--space-2xs);
  font-family: var(--font-mono);
  font-size: var(--step-2xs);
  color: var(--text-inverse-muted);
}

/* --------------------------------------------------------------------------
   8. Cart and checkout
   -------------------------------------------------------------------------- */

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 21rem;
  gap: var(--space-xl);
  align-items: start;
}

@media (max-width: 62rem) {
  .cart-layout { grid-template-columns: minmax(0, 1fr); gap: var(--space-md); }
}

.cart-line {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr) auto;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--hairline);
  align-items: start;
}

.cart-line:first-child { padding-top: 0; }

@media (max-width: 40rem) {
  .cart-line {
    grid-template-columns: 4rem minmax(0, 1fr);
    gap: var(--space-xs);
  }

  .cart-line__actions { grid-column: 2; }
}

.cart-line__media {
  aspect-ratio: 1;
  background: var(--mist);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
}

.cart-line__media img { width: 100%; height: 100%; object-fit: contain; padding: 0.25rem; }

.cart-line__sku {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cart-line__title {
  font-family: var(--font-display);
  font-size: var(--step-md);
  font-weight: 600;
  line-height: 1.15;
  margin: 0.15rem 0 0.3rem;
}

.cart-line__title a { color: var(--text); text-decoration: none; }
.cart-line__title a:hover { color: var(--arc); }

.cart-line__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-2xs);
}

.cart-line__actions { text-align: right; }

.cart-line__total {
  font-family: var(--font-mono);
  font-size: var(--step-md);
  font-weight: 500;
  white-space: nowrap;
}

.cart-line__unit {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--step-2xs);
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.summary {
  position: sticky;
  top: calc(var(--header-height) + var(--space-sm));
  background: var(--mist);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}

@media (max-width: 62rem) {
  .summary { position: static; }
}

.summary__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-block: 0.4rem;
  font-size: var(--step-sm);
}

.summary__row dt { color: var(--text-muted); }

.summary__row dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: var(--step-sm);
}

.summary__row--total {
  margin-top: var(--space-2xs);
  padding-top: var(--space-xs);
  border-top: 1px solid var(--hairline);
  font-size: var(--step-md);
}

.summary__row--total dt { color: var(--text); font-weight: 600; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.05em; }
.summary__row--total dd { font-size: var(--step-lg); font-weight: 500; }

.summary__free {
  font-family: var(--font-mono);
  font-size: var(--step-2xs);
  color: var(--ok);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 21rem;
  gap: var(--space-xl);
  align-items: start;
}

@media (max-width: 62rem) {
  .checkout-layout { grid-template-columns: minmax(0, 1fr); gap: var(--space-md); }
}

.fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 var(--space-lg);
}

.fieldset__legend {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: var(--step-lg);
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0;
  margin-bottom: var(--space-sm);
  width: 100%;
}

.fieldset__step {
  display: grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-mono);
  font-size: var(--step-2xs);
  flex: none;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  gap: var(--space-sm);
}

/* Order confirmation */
.confirmation {
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
}

.confirmation__mark {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  margin: 0 auto var(--space-sm);
  border-radius: 50%;
  background: var(--ok-wash);
  color: var(--ok);
}

.confirmation__ref {
  display: inline-block;
  margin: var(--space-sm) 0;
  padding: 0.6rem 1.2rem;
  background: var(--ink);
  color: var(--text-inverse);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: var(--step-lg);
  letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   9. Contact and content pages
   -------------------------------------------------------------------------- */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-xl);
  align-items: start;
}

@media (max-width: 55rem) {
  .contact-layout { grid-template-columns: minmax(0, 1fr); gap: var(--space-lg); }
}

.contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-sm);
  padding-block: var(--space-sm);
  border-bottom: 1px solid var(--hairline);
}

.contact-item:last-child { border-bottom: 0; }

.contact-item__icon { color: var(--arc); padding-top: 0.2rem; }

.contact-item__label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.1rem;
}

.contact-item__value { font-size: var(--step-md); }
.contact-item__value a { text-decoration: none; }
.contact-item__value a:hover { text-decoration: underline; }

/* Map placeholder: an honest blank with a label, not a fake map image. */
.map-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px dashed var(--hairline);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(to right, rgb(74 90 117 / 0.07) 1px, transparent 1px) 0 0 / 2rem 2rem,
    linear-gradient(to bottom, rgb(74 90 117 / 0.07) 1px, transparent 1px) 0 0 / 2rem 2rem,
    var(--mist);
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--space-md);
}

.map-placeholder__label {
  font-family: var(--font-mono);
  font-size: var(--step-2xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--step-sm);
}

.hours-table th,
.hours-table td {
  padding: 0.5rem 0;
  text-align: left;
  border-bottom: 1px solid var(--hairline);
}

.hours-table th { font-weight: 500; color: var(--text-muted); }
.hours-table td { font-family: var(--font-mono); font-size: var(--step-xs); text-align: right; }
.hours-table tr:last-child th,
.hours-table tr:last-child td { border-bottom: 0; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--hairline);
}

.faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-family: var(--font-display);
  font-size: var(--step-md);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-item__summary::-webkit-details-marker { display: none; }

.faq-item__summary:hover { color: var(--arc); }

.faq-item__icon {
  flex: none;
  color: var(--arc);
  transition: transform var(--duration) var(--ease);
}

.faq-item[open] .faq-item__icon { transform: rotate(45deg); }

.faq-item__body {
  padding-bottom: var(--space-sm);
  color: var(--text-muted);
  max-width: 52rem;
}

/* Page header band */
.page-head {
  background: var(--ink);
  color: var(--text-inverse);
  padding-block: var(--space-xl);
}

.page-head__title { font-size: var(--step-2xl); margin-bottom: var(--space-2xs); }

.page-head__lede {
  max-width: 44rem;
  color: var(--text-inverse-muted);
  font-size: var(--step-md);
}

.page-head .breadcrumbs { margin-bottom: var(--space-sm); }
.page-head .breadcrumbs a { color: var(--text-inverse-muted); }
.page-head .breadcrumbs a:hover { color: var(--arc-bright); }
.page-head .breadcrumbs__sep { color: var(--text-inverse-muted); }
.page-head .breadcrumbs__current { color: var(--text-inverse); }

/* --------------------------------------------------------------------------
   10. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  color: var(--text-inverse-muted);
  padding-block: var(--space-2xl) var(--space-md);
  font-size: var(--step-sm);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--hairline-dark);
}

@media (max-width: 62rem) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-lg); }
}

@media (max-width: 30rem) {
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
}

.footer__heading {
  font-family: var(--font-display);
  font-size: var(--step-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-inverse);
  margin-bottom: var(--space-xs);
}

.footer__list { list-style: none; margin: 0; padding: 0; }
.footer__list li { margin-bottom: 0.4rem; }

/* Scoped to the footer: these classes previously coloured links light grey wherever
   they were reused, including on white backgrounds. */
.site-footer .footer__list a,
.site-footer .footer__contact a {
  color: var(--text-inverse-muted);
  text-decoration: none;
}

.site-footer .footer__list a:hover,
.site-footer .footer__contact a:hover { color: var(--arc-bright); text-decoration: underline; }

.footer__blurb { max-width: 26rem; margin-block: var(--space-xs); line-height: 1.6; }

.footer__contact { list-style: none; margin: 0; padding: 0; }

.footer__contact li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  margin-bottom: 0.55rem;
  align-items: start;
}

.footer__contact svg { color: var(--arc-bright); margin-top: 0.2rem; flex: none; }

.footer__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8298bb;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  font-family: var(--font-mono);
  font-size: var(--step-2xs);
  letter-spacing: 0.04em;
}

.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-bottom__links li { margin: 0; }

.social {
  display: flex;
  gap: 0.4rem;
  margin-top: var(--space-sm);
}

.social__link {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--hairline-dark);
  border-radius: var(--radius);
  color: var(--text-inverse-muted);
  transition: border-color var(--duration) var(--ease), color var(--duration) var(--ease);
}

.social__link:hover { border-color: var(--arc-bright); color: var(--arc-bright); }

/* --------------------------------------------------------------------------
   11. Blazor infrastructure
   -------------------------------------------------------------------------- */

#blazor-error-ui {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.8rem 1.2rem;
  background: var(--warn-wash);
  border-top: 2px solid var(--signal);
  color: var(--warn-ink);
  font-size: var(--step-sm);
  box-shadow: 0 -2px 12px rgb(10 17 32 / 0.14);
}

#blazor-error-ui .reload {
  color: var(--arc-deep);
  font-weight: 600;
}

#blazor-error-ui .dismiss {
  cursor: pointer;
  float: right;
  font-size: 1.2rem;
  line-height: 1;
  padding: 0 0.3rem;
}

.blazor-error-boundary {
  padding: var(--space-md);
  background: var(--danger-wash);
  border-left: 3px solid var(--danger);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: #8e1c11;
}

.loading-rail {
  display: grid;
  gap: var(--space-xs);
  padding: var(--space-lg) 0;
}

.skeleton {
  background: linear-gradient(90deg, var(--mist) 25%, var(--mist-deep) 37%, var(--mist) 63%);
  background-size: 400% 100%;
  animation: skeleton 1.4s ease infinite;
  border-radius: var(--radius);
}

@keyframes skeleton {
  0% { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .skeleton { animation: none; }
}

/* The filter panel is permanently visible from 62rem up, so the control that opens it
   is only meaningful below that width. */
.filters-toggle { display: none; }

@media (max-width: 62rem) {
  .filters-toggle {
    display: inline-flex;
    margin-bottom: 0.75rem;
  }
}


/* The footer logo sits on navy, so its sub-line needs the inverse muted tone; the
   light-mode value here measured 2.7:1. */
.site-footer .logo__name { color: var(--text-inverse); }
.site-footer .logo__sub { color: var(--text-inverse-muted); }


/* Product page assurances: delivery, warranty and fitting. Its own component rather
   than a reused footer class. */
.assurances {
  list-style: none;
  margin: var(--space-md) 0 0;
  padding: 0;
}

.assurances li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: var(--step-sm);
  color: var(--text-muted);
}

.assurances li:last-child { margin-bottom: 0; }

/* --arc reaches 4.9:1 on white but only 4.5:1 on the mist ground, so accents sitting
   on mist step down to the deeper blue. */
.section--mist .eyebrow,
.panel--mist .eyebrow,
.summary .eyebrow { color: var(--arc-deep); }

.section--mist a:not(.btn),
.panel--mist a:not(.btn),
.summary a:not(.btn) { color: var(--arc-deep); }


/* Links inside a notice take the notice's own text colour, which is already contrast
   checked against that notice's wash. --arc on the warm wash measured 4.4:1. */
.notice a {
  color: inherit;
  text-decoration: underline;
  font-weight: 600;
}

.notice a:hover { color: inherit; text-decoration-thickness: 2px; }
