/* ==========================================================================
   KTM Global Moto HK — brand styles
   Barvy: Orange #FF6600 | Black #000 | White #FFF | Light Gray #ECECEC
   Fonty: Blender Pro (nadpisy) | Trade Gothic LT Com (text)
   ========================================================================== */

@font-face {
  font-family: "Blender Pro";
  src: url("/assets/fonts/BlenderPro-Heavy.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Blender Pro";
  src: url("/assets/fonts/BlenderPro-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Trade Gothic LT Com";
  src: url("/assets/fonts/TradeGothicLTCom.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Trade Gothic LT Com";
  src: url("/assets/fonts/TradeGothicLTCom-Bd2.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

/* --- Tokens --- */

:root {
  --orange: #ff6600;
  --black:  #000000;
  --white:  #ffffff;
  --gray:   #ececec;
  --gray-m: #c6c6c6;
  --muted:  #878787;

  --font-h: "Blender Pro", "Arial Black", Arial, sans-serif;
  --font-b: "Trade Gothic LT Com", "Arial Narrow", Arial, sans-serif;

  --header-h: 4.5rem;

  --container: 68rem;
  --pad: 1.25rem;
  --pad-lg: 2rem;
}

/* --- Reset --- */

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

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

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-b);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--black);
  background: var(--white);
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; }

a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* --- Layout shell --- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ==========================================================================
   SITE HEADER — horní lišta jako ktm.com (logo + menu)
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__bar {
  background: var(--black);
  border-bottom: 3px solid var(--orange);
}

.site-header__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  padding-block: 0.625rem;
  padding-right: 0.75rem;
  text-decoration: none;
}

.site-header__logo-img {
  display: block;
  height: clamp(1.75rem, 4.5vw, 2.875rem);
  width: auto;
  max-width: min(11.5rem, 44vw);
  object-fit: contain;
  object-position: left center;
}

.site-header__logo-text {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--orange);
  letter-spacing: 0.04em;
}

.site-header__nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.site-header__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  width: 100%;
  max-width: 42rem;
}

.site-header__item {
  flex: 1;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header__item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header__trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  min-height: var(--header-h);
  padding: 0.75rem;
  border: 0;
  background: transparent;
  text-align: center;
  cursor: pointer;
  color: inherit;
  font: inherit;
  transition: background 0.15s;
}

.site-header__trigger:hover,
.site-header__trigger--active,
.site-header__trigger[aria-expanded="true"] {
  background: rgba(255, 102, 0, 0.18);
}

.site-header__trigger--disabled {
  opacity: 0.85;
  cursor: default;
  user-select: none;
}

.site-header__trigger--disabled:hover {
  background: transparent;
}

.site-header__label {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}

.site-header__chevron {
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.15s;
}

.site-header__trigger[aria-expanded="true"] .site-header__chevron {
  transform: rotate(-135deg) translateY(2px);
}

.site-header__soon {
  font-family: var(--font-b);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--orange);
  padding: 0.2rem 0.45rem;
}

/* Rozbalovací panel kategorií */

.nav-panel-backdrop {
  position: fixed;
  inset: 0;
  top: calc(var(--header-h) + 3px);
  background: rgba(0, 0, 0, 0.55);
  z-index: 90;
}

.nav-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 95;
  background: var(--white);
  border-bottom: 3px solid var(--orange);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.18);
}

.nav-panel__inner {
  padding-block: 1.5rem 2rem;
}

.nav-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.nav-panel__title {
  margin: 0;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.nav-panel__close {
  border: 0;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

.nav-panel__empty {
  margin: 0;
  color: var(--muted);
}

.nav-panel__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
}

.nav-panel__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--gray);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.nav-panel__card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.nav-panel__card-media {
  aspect-ratio: 16 / 9;
  background: var(--gray);
  overflow: hidden;
  display: block;
}

.nav-panel__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-panel__card-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-family: var(--font-h);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  padding: 1rem;
  text-align: center;
}

.nav-panel__card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-panel__card-name {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.0625rem;
  text-transform: uppercase;
}

.nav-panel__card-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.4;
}

.nav-panel__card-meta {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
}

body.nav-panel-open {
  overflow: hidden;
}

/* ==========================================================================
   HERO SLIDER — celoplošná galerie pod menu
   ========================================================================== */

.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  isolation: isolate;
}

.hero-slider--full {
  min-height: calc(100svh - var(--header-h) - 3px);
}

.hero-slider--large {
  min-height: clamp(24rem, 85svh, 56rem);
}

.hero-slider__viewport {
  position: absolute;
  inset: 0;
}

.hero-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.hero-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slider__media {
  position: absolute;
  inset: 0;
}

.hero-slider__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slider__image--placeholder {
  background:
    linear-gradient(135deg, rgba(255, 102, 0, 0.35), rgba(0, 0, 0, 0.85)),
    var(--black);
}

.hero-slider__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.55) 55%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.hero-slider__content {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, 44rem);
  margin-inline: auto;
  padding: 2rem 1.25rem;
  text-align: center;
}

.hero-slider__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero-slider__title {
  margin: 0 0 1.5rem;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: clamp(2rem, 7vw, 4.25rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-slider__btn {
  min-width: 12rem;
}

.hero-slider__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.hero-slider__nav:hover,
.hero-slider__nav:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
  outline: none;
}

.hero-slider__nav--prev {
  left: 1rem;
}

.hero-slider__nav--next {
  right: 1rem;
}

.hero-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  z-index: 3;
  display: flex;
  gap: 0.5rem;
  transform: translateX(-50%);
}

.hero-slider__dot {
  width: 0.75rem;
  height: 0.75rem;
  padding: 0;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}

.hero-slider__dot.is-active,
.hero-slider__dot:hover,
.hero-slider__dot:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
  outline: none;
  transform: scale(1.1);
}

@media (max-width: 699px) {
  .hero-slider__nav {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.5rem;
  }

  .hero-slider__nav--prev {
    left: 0.5rem;
  }

  .hero-slider__nav--next {
    right: 0.5rem;
  }

  .hero-slider__content {
    padding-block: 1.5rem;
  }
}

/* ==========================================================================
   PAGE HERO — oranžový pruh pod menu (bez loga)
   ========================================================================== */

.page-hero {
  background: var(--orange);
  color: var(--black);
  padding-block: 2rem 2.25rem;
}

.page-hero__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.page-hero__lead {
  margin: 0;
  max-width: 42ch;
  font-size: 1rem;
  line-height: 1.6;
}

.page-hero__lead strong { font-weight: 700; }

/* Legacy hero — ponecháno pro případné custom sekce */
.hero {
  background: var(--orange);
  color: var(--black);
  padding-block: 2rem 2.5rem;
}

.hero__grid {
  display: grid;
  gap: 1.75rem;
}

.hero__logo {
  width: 11rem;
  height: auto;
}

.hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3.25rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 38ch;
}

.hero__lead strong { font-weight: 700; }

.hero__link {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero__link:hover { text-decoration-thickness: 2px; }

.hero__r2r {
  display: flex;
  justify-content: flex-end;
}

.hero__r2r img {
  width: min(100%, 16rem);
}

/* ==========================================================================
   LEGACY NAV — nahrazeno site-header
   ========================================================================== */

.nav { display: none; }

/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact {
  flex: 1;
  background: var(--gray);
  padding-block: 2.5rem 3rem;
}

.contact__card {
  background: var(--white);
  padding: 2rem var(--pad);
}

.contact__title {
  margin: 0 0 1.5rem;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.contact__address {
  font-style: normal;
  margin-bottom: 2rem;
}

.contact__field {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 0.75rem;
  padding-block: 0.875rem;
  border-bottom: 1px solid var(--gray);
  align-items: baseline;
}

.contact__field:last-child { border-bottom: none; }

.contact__key {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.contact__val { font-size: 1rem; }

.contact__val--link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact__val--link:hover { text-decoration-thickness: 2px; }

.contact__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* --- Buttons --- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-b);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  border: 2px solid var(--black);
  transition: background 0.15s, color 0.15s;
}

.btn--primary {
  background: var(--black);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
}

.btn--outline {
  background: transparent;
  color: var(--black);
}

.btn--outline:hover {
  background: var(--black);
  color: var(--white);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: var(--black);
  color: var(--gray-m);
  padding-block: 1.25rem;
  text-align: center;
}

.footer__inner p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
}

.footer__inner p + p { margin-top: 0.25rem; }

/* Cookie lišta — úplně dole v patičce */

.cookie-bar {
  border-top: 3px solid var(--orange);
  background: #111111;
  padding-block: 1rem;
  text-align: left;
}

.cookie-bar--hidden,
.cookie-bar[hidden] {
  display: none;
}

.cookie-bar__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}

.cookie-bar__text {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--gray-m);
}

.cookie-bar__link {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-bar__link:hover {
  color: var(--orange);
}

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

.cookie-bar__btn {
  flex: 1;
  min-width: 7rem;
  padding: 0.625rem 1rem;
  font-family: var(--font-b);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.cookie-bar__btn--accept {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
}

.cookie-bar__btn--accept:hover {
  background: var(--white);
  border-color: var(--white);
}

.cookie-bar__btn--reject {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.cookie-bar__btn--reject:hover {
  border-color: var(--white);
  color: var(--white);
}

.cookie-bar__btn:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* ==========================================================================
   DESKTOP
   ========================================================================== */

@media (min-width: 768px) {
  :root { --pad: var(--pad-lg); }

  .page-hero {
    padding-block: 2.5rem 3rem;
  }

  .page-hero__lead {
    font-size: 1.125rem;
    line-height: 1.75;
  }

  .site-header__logo-img {
    max-width: 14rem;
    height: 2.75rem;
  }

  .site-header__label {
    font-size: 1rem;
  }

  .site-header__soon {
    font-size: 0.6875rem;
    padding: 0.3rem 0.6rem;
  }

  .nav-panel__grid {
    grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  }

  .contact { padding-block: 3.5rem 4rem; }

  .contact__card { padding: 2.5rem 3rem; }

  .contact__title { font-size: 2.25rem; }

  .contact__field {
    grid-template-columns: 8rem 1fr;
    padding-block: 1rem;
  }

  .contact__actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .cookie-bar__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .cookie-bar__text {
    flex: 1;
    max-width: 42rem;
  }

  .cookie-bar__actions {
    flex: 0 0 auto;
  }

  .cookie-bar__btn {
    flex: 0 0 auto;
    min-width: 8rem;
  }
}

@media (min-width: 1024px) {
  :root { --header-h: 5rem; }

  .site-header__logo-img {
    max-width: 17rem;
    height: 2.875rem;
  }

  .site-header__label { font-size: 1.125rem; }

  .site-header__soon { font-size: 0.75rem; }
}

/* ==========================================================================
   KATALOG — seznamy, detail, formulář
   ========================================================================== */

.section {
  padding-block: 2.5rem 3rem;
}

.section--gray {
  background: var(--gray);
}

.section__title {
  margin: 0 0 1.5rem;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2rem);
  text-transform: uppercase;
}

.section__lead {
  margin: -0.75rem 0 1.5rem;
  color: var(--muted);
  max-width: 60ch;
}

.grid-cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--gray);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.card__image {
  aspect-ratio: 16 / 10;
  background: var(--gray);
  overflow: hidden;
}

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

.card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.875rem;
}

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

.card__meta {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
}

.card__title {
  margin: 0;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.card__text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

.search-bar {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.search-bar__input {
  flex: 1;
  min-width: 12rem;
  padding: 0.75rem 1rem;
  border: 2px solid var(--black);
  font: inherit;
}

.search-bar__input:focus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.product-layout {
  display: grid;
  gap: 2rem;
}

.product-sidebar {
  background: var(--gray);
  padding: 1.5rem;
}

.product-sidebar__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.75rem;
  text-transform: uppercase;
}

.product-sidebar__year {
  margin: 0 0 1rem;
  font-weight: 700;
  color: var(--orange);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.spec-table th,
.spec-table td {
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--gray-m);
  text-align: left;
}

.spec-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  width: 45%;
}

.block-hero {
  background: var(--black);
  color: var(--white);
  padding: 2rem 0;
}

.block-hero__grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.block-hero__title {
  margin: 0;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  text-transform: uppercase;
}

.block-hero__subtitle {
  margin: 0.75rem 0 0;
  color: var(--gray-m);
}

.block-hero__image img {
  width: 100%;
  border: 3px solid var(--orange);
}

.block-section {
  padding-block: 2rem;
}

.block-section__title {
  margin: 0 0 1rem;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.block-split {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.block-split--reverse .block-split__media { order: -1; }

.block-gallery {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
}

.block-spacer--small { height: 1rem; }
.block-spacer--medium { height: 2.5rem; }
.block-spacer--large { height: 4rem; }

.block-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

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

.feature-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--orange);
}

.inquiry-box {
  background: var(--gray);
  padding: 2rem;
  margin-top: 2rem;
}

.inquiry-box__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.375rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--black);
  font: inherit;
}

.form-field textarea { min-height: 8rem; resize: vertical; }

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.alert {
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.alert--success {
  background: #e8f5e9;
  border-left: 4px solid #2e7d32;
}

.alert--error {
  background: #ffebee;
  border-left: 4px solid #c62828;
}

.pagination {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.pagination a,
.pagination span {
  padding: 0.5rem 0.875rem;
  border: 1px solid var(--black);
  text-decoration: none;
}

.pagination .active {
  background: var(--orange);
  border-color: var(--orange);
}

@media (min-width: 900px) {
  .product-layout {
    grid-template-columns: 1fr 20rem;
    align-items: start;
  }

  .product-sidebar {
    position: sticky;
    top: 1rem;
  }

  .block-hero__grid {
    grid-template-columns: 1fr 1fr;
  }

  .block-split {
    grid-template-columns: 1fr 1fr;
  }

  .block-split--reverse .block-split__media { order: 2; }
}

/* ==========================================================================
   CATEGORY HUB & BREADCRUMBS
   ========================================================================== */

.breadcrumbs {
  margin-bottom: 1.5rem;
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
}

.breadcrumbs__list li:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  color: var(--muted);
}

.breadcrumbs__list a {
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
}

.breadcrumbs__list a:hover {
  color: var(--orange);
}

.breadcrumbs__list [aria-current="page"] {
  color: var(--muted);
}

.category-hub {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray);
}

.category-hub__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
}

.category-hub__lead {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9375rem;
  max-width: 60ch;
}

.category-hub__grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-hub__card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.125rem;
  border: 2px solid var(--gray);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, background 0.15s;
}

.category-hub__card:hover,
.category-hub__card--active {
  border-color: var(--orange);
  background: rgba(255, 102, 0, 0.06);
}

.category-hub__card--all {
  border-style: dashed;
}

.category-hub__name {
  font-family: var(--font-h);
  font-weight: 700;
  text-transform: uppercase;
}

.category-hub__meta {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
}

.category-products__head {
  margin-bottom: 1.25rem;
}

.card__subcats {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  color: var(--muted);
}

.card__subcats li::before {
  content: "— ";
}

.nav-panel__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-panel__subcats {
  margin: 0;
  padding: 0 0 0 0.75rem;
  list-style: none;
  border-left: 2px solid var(--gray);
}

.nav-panel__subcat {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--black);
}

.nav-panel__subcat:hover {
  color: var(--orange);
}

.nav-panel__subcat-meta {
  font-weight: 400;
  color: var(--muted);
}
