:root {
  --ink: #15191c;
  --muted: #5f676b;
  --line: #dde3e6;
  --panel: #ffffff;
  --bg: #f5f6f4;
  --brand: #c9281d;
  --brand-dark: #101719;
  --accent: #f1b51c;
  --danger: #b42318;
  --shadow: 0 18px 45px rgba(21, 25, 28, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
input, select, textarea, button { font: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(241, 181, 28, .55);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 6vw;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand, .admin-brand {
  display: grid;
  font-weight: 800;
  letter-spacing: 0;
}
.brand span { font-size: 23px; line-height: 1; color: var(--brand-dark); }
.brand small { color: var(--brand); font-size: 11px; text-transform: uppercase; letter-spacing: 0; }
.brand-logo { height: 48px; width: auto; object-fit: contain; }
.main-nav { display: flex; gap: 26px; align-items: center; }
.main-nav > a, .nav-item > a { color: var(--muted); font-weight: 800; padding: 28px 0; }
.main-nav a:hover { color: var(--brand); }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: #fff; border-radius: 6px; padding: 9px; }
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--brand-dark); }
.nav-item { position: relative; display: flex; align-items: center; gap: 6px; }
.mega-toggle { display: none; }
.mega-menu {
  /* JS sets --mega-shift on open to keep the menu inside the viewport when
     the trigger sits off-center in the header (see positionMegaMenu in main.js). */
  --mega-shift: 0px;
  position: absolute;
  top: 100%;
  left: 50%;
  width: min(920px, 88vw);
  max-width: calc(100vw - 32px);
  transform: translateX(calc(-50% + var(--mega-shift))) translateY(10px);
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 24px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
}
.has-mega:hover .mega-menu, .has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(calc(-50% + var(--mega-shift))) translateY(0);
  pointer-events: auto;
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear 0s;
}
/* JS adds .force-closed on Escape / outside-click so an open (hovered or
   focused) mega-menu can still be dismissed without waiting for the mouse
   to physically leave it. Same specificity as the rule above + later in the
   cascade, so it wins while active; removed again on mouseleave. */
.has-mega.force-closed .mega-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateX(calc(-50% + var(--mega-shift))) translateY(10px);
  pointer-events: none;
}
.mega-intro {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  align-content: start;
  padding: 22px;
  color: #fff;
  background: linear-gradient(135deg, #15191c, #283034);
  border-radius: 8px;
}
.mega-intro span, .range-panel span, .about-split span, .contact-info span, .knowledge-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.mega-intro strong { font-size: 18px; line-height: 1.35; }
.mega-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
  gap: 4px 14px;
}
.mega-links.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.mega-links a {
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  transition: background .15s ease, color .15s ease;
}
.mega-links a:hover, .mega-links a:focus-visible { background: #f3f4f2; color: var(--brand); }

.hero-slider { min-height: 650px; position: relative; overflow: hidden; background: #dfe8e7; touch-action: pan-y; }
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: 80px 6vw;
  opacity: 0;
  pointer-events: none;
  transition: opacity .8s ease;
  background: linear-gradient(90deg, rgba(8,12,14,.84), rgba(8,12,14,.52), rgba(8,12,14,.18)), var(--bg);
  background-image: linear-gradient(90deg, rgba(8,12,14,.84), rgba(8,12,14,.52), rgba(8,12,14,.18)), var(--bg);
}
.hero-slide::before, .page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--media);
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-copy { max-width: 720px; color: #fff; }
.hero-copy span, .section-title span, .intro-band span, .detail-copy > span {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}
.hero-copy h1 { margin: 8px 0 16px; font-size: 64px; line-height: 1; letter-spacing: 0; }
.hero-copy p { max-width: 620px; font-size: 19px; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  background: rgba(16,23,25,.62);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s ease, border-color .2s ease;
}
.slider-arrow:hover { background: var(--brand); border-color: var(--brand); }
.slider-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 11px;
  height: 11px;
  margin: auto;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }
.slider-arrow.prev::before { transform: rotate(-45deg); }
.slider-arrow.next::before { transform: rotate(135deg); }
.slider-dots {
  position: absolute;
  left: 6vw;
  bottom: 32px;
  z-index: 4;
  display: flex;
  gap: 9px;
}
.slider-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.slider-dots button.active { background: var(--accent); border-color: var(--accent); }
.hero-slider.single .slider-arrow, .hero-slider.single .slider-dots { display: none; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 0;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.btn:hover { background: var(--brand-dark); }
.btn.light { background: #fff; color: var(--brand-dark); }
.btn.ghost { background: transparent; color: var(--brand); border: 1px solid var(--line); }
.btn.accent { background: var(--accent); color: #111; }
.btn.small { min-height: 36px; padding: 8px 12px; font-size: 13px; justify-self: start; }

.section { max-width: 1180px; margin: 0 auto; padding: 76px 24px; }
.section-title { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 26px; }
.section-title h2, .intro-band h2, .cta h2 { margin: 0; font-size: 38px; line-height: 1.1; letter-spacing: 0; }
/* Arrows are laid out as flex siblings beside the track (not absolutely
   positioned on top of it), so there is no offset math that can make an
   arrow overlap a card — the track simply gets less width. */
.rail { display: flex; align-items: center; gap: 12px; }
.category-rail {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  /* Native scroll (touch/keyboard/wheel still work) but no visible scrollbar —
     the prev/next arrows are the intended navigation affordance. */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.category-rail::-webkit-scrollbar { display: none; }
.rail-arrow {
  flex: 0 0 auto;
  position: relative;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--brand-dark);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.rail-arrow:hover, .rail-arrow:focus-visible { background: var(--brand); border-color: var(--brand); color: #fff; }
.rail-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}
.rail-arrow.prev::before { transform: rotate(-45deg); margin-left: 2px; }
.rail-arrow.next::before { transform: rotate(135deg); margin-right: 2px; }
/* Nothing to scroll: collapse the arrow instead of leaving it live but useless. */
.rail.no-scroll .rail-arrow { display: none; }
.category-card {
  min-height: 260px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  scroll-snap-align: start;
  transition: transform .2s ease, box-shadow .2s ease;
}
.category-card:hover, .product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.category-card img { width: 100%; height: 165px; object-fit: cover; background: #e8eeee; }
.category-card span { display: block; padding: 14px 15px 0; color: var(--brand); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.category-card strong { display: block; padding: 6px 15px 16px; }

.range-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.range-panel {
  min-height: 330px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 30px;
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
  background-size: cover;
  background-position: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.range-panel:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.range-panel.safety { background-image: linear-gradient(0deg, rgba(10,13,15,.86), rgba(10,13,15,.2)), url('../../uploads/20260723232305-8f0c4d4b85.jpg'); }
.range-panel.sports { background-image: linear-gradient(0deg, rgba(10,13,15,.86), rgba(10,13,15,.2)), url('../../uploads/20260723232521-ed950e21f7.jpg'); }
.range-panel strong { max-width: 560px; font-size: 30px; line-height: 1.15; }

.intro-band, .cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  padding: 64px 6vw;
  background: var(--brand-dark);
  color: #fff;
}
.intro-band p, .cta p { color: rgba(255,255,255,.82); font-size: 18px; }
.cta { grid-template-columns: 1fr auto; background: #0d1012; }

.about-split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: center;
}
.about-split img {
  width: 100%;
  /* Fixed ratio + cap, not min-height: without an explicit height,
     object-fit:cover has nothing to crop against, so the <img> was
     rendering at the source photo's full natural height. */
  aspect-ratio: 4 / 3;
  max-height: 440px;
  object-fit: cover;
  border-radius: 8px;
}
.about-split h2 { margin: 8px 0 14px; font-size: 38px; line-height: 1.1; }
.about-split p { color: var(--muted); font-size: 18px; }

.dark-values {
  position: relative;
  overflow: hidden;
  padding: 92px 6vw;
  color: #fff;
  background: #0d1012;
}
.values-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(10,13,15,.92), rgba(10,13,15,.74)), var(--media);
  background-size: cover;
  background-position: center;
}
.values-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.values-inner article { padding: 24px 0; border-top: 2px solid rgba(255,255,255,.18); }
.values-inner h3 { font-size: 26px; margin: 12px 0; }
.values-inner p { color: rgba(255,255,255,.78); }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card {
  display: grid;
  gap: 9px;
  grid-template-rows: auto auto auto 1fr auto;
  min-width: 0;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.product-img { aspect-ratio: 4 / 3; overflow: hidden; border-radius: 6px; background: #edf2f2; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.product-card:hover img { transform: scale(1.04); }
.product-meta { color: var(--brand); font-size: 13px; font-weight: 800; }
.product-card strong { font-size: 18px; }
.product-card span:not(.product-img):not(.product-meta) { color: var(--muted); }
.product-card b, .price { color: var(--brand-dark); font-size: 22px; }
.product-card em { color: var(--brand); font-style: normal; font-weight: 900; }

.page-banner {
  position: relative;
  min-height: 320px;
  display: grid;
  align-items: center;
  padding: 70px 6vw;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(8,28,29,.78), rgba(8,28,29,.38));
}
.page-banner h1 { margin: 0 0 8px; font-size: 50px; line-height: 1.05; }
.page-banner p { max-width: 660px; margin: 0; color: rgba(255,255,255,.88); }
.prose, .feature-grid > div, .contact-form, .contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 24px; }

.products-layout { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: start; }
.filters { position: sticky; top: 94px; display: grid; gap: 14px; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
label { display: grid; gap: 7px; color: var(--muted); font-weight: 700; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 6px; padding: 11px 12px; background: #fff; color: var(--ink); }
.filter-toggle { display: none; }
.pagination { display: flex; gap: 8px; margin-top: 28px; flex-wrap: wrap; }
.pagination a { min-width: 38px; padding: 8px 12px; text-align: center; border: 1px solid var(--line); border-radius: 6px; background: #fff; }
.pagination a.active { background: var(--brand); color: #fff; }
.listing-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 22px;
}
.listing-top span { color: var(--brand); font-weight: 900; text-transform: uppercase; font-size: 12px; }
.listing-top h2 { max-width: 720px; margin: 5px 0 0; font-size: 30px; line-height: 1.15; }

.product-detail { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 480px); gap: 42px; }
.main-image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; background: #edf2f2; border: 1px solid var(--line); }
.thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 12px; }
.thumbs button { padding: 0; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; background: #fff; cursor: pointer; }
.thumbs img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.detail-copy h1 { margin: 8px 0; font-size: 42px; line-height: 1.1; }
.contact-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr); gap: 24px; }
.contact-form { display: grid; gap: 15px; }
.contact-info { display: grid; gap: 16px; }
.contact-info > div:not(.map) {
  display: grid;
  gap: 7px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.contact-info strong { font-size: 18px; overflow-wrap: anywhere; }
.map { min-height: 220px; display: grid; place-items: center; margin-top: 18px; background: #eef3f3; border-radius: 8px; overflow: hidden; }
.map iframe { width: 100%; min-height: 260px; border: 0; }
.knowledge-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.knowledge-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: stretch;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.knowledge-card img { width: 100%; height: 100%; min-height: 180px; object-fit: cover; border-radius: 6px; }
.knowledge-card h3 { margin: 7px 0; font-size: 22px; }
.site-footer { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 24px; padding: 48px 6vw; background: #121a1d; color: #fff; }
.site-footer p { color: rgba(255,255,255,.72); margin: 5px 0; }
.footer-links { display: grid; gap: 7px; align-content: start; }
.footer-links a { color: rgba(255,255,255,.68); font-size: 14px; }
.footer-links a:hover { color: var(--accent); }
.footer-socials { display: flex; gap: 14px; margin-top: 10px; }
.footer-socials a { color: rgba(255,255,255,.68); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }
.footer-socials a:hover { color: var(--accent); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.login-body { min-height: 100vh; display: grid; place-items: center; padding: 20px; }
.login-card, .admin-form {
  display: grid;
  gap: 16px;
  width: min(760px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}
.admin-body { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.admin-sidebar { background: #111b1f; color: #fff; padding: 24px; }
.admin-sidebar nav { display: grid; gap: 5px; margin-top: 24px; }
.admin-sidebar a { padding: 10px 0; color: rgba(255,255,255,.8); }
.admin-main { min-width: 0; padding: 28px; overflow-x: auto; }
.admin-top { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 22px; }
.notice { padding: 12px 14px; border-radius: 6px; background: #e6f4ef; color: #12483d; margin-bottom: 16px; }
.notice.error { background: #fdecec; color: var(--danger); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat, .empty-state { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 24px; }
.stat span { display: block; color: var(--muted); }
.stat strong { font-size: 42px; }
table { width: 100%; margin-top: 20px; border-collapse: collapse; background: #fff; border: 1px solid var(--line); }
th, td { padding: 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: #eef3f3; }
td a { color: var(--brand); font-weight: 700; margin-right: 10px; }

/* Delete/logout are POST forms (not GET links, for CSRF safety) styled to match the links beside them. */
.inline-delete { display: inline-block; margin: 0; }
.link-btn { background: none; border: none; padding: 0; margin: 0; color: var(--brand); font-weight: 700; font: inherit; cursor: pointer; text-decoration: none; }
.link-btn:hover { text-decoration: underline; }
.admin-sidebar .link-btn.nav-logout { color: rgba(255,255,255,.8); font-weight: 400; }

@media (max-width: 992px) {
  .product-grid, .feature-grid, .stat-grid, .values-inner, .knowledge-grid { grid-template-columns: repeat(2, 1fr); }
  .products-layout, .product-detail, .contact-layout, .intro-band, .cta, .about-split { grid-template-columns: 1fr; }
  .filters { position: static; display: none; }
  .filters.open { display: grid; }
  .filter-toggle { display: inline-flex; margin-bottom: 16px; border: 1px solid var(--line); background: #fff; border-radius: 6px; padding: 10px 14px; }
  .admin-body { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; }
}

@media (max-width: 768px) {
  .site-header { min-height: 64px; padding: 0 20px; }
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px 20px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    max-height: calc(100vh - 64px);
    overflow: auto;
  }
  .main-nav.open { display: grid; }
  .main-nav > a, .nav-item > a { padding: 13px 0; }
  .nav-item { display: grid; grid-template-columns: 1fr 38px; border-top: 1px solid var(--line); }
  .mega-toggle {
    display: inline-flex;
    align-self: center;
    justify-self: end;
    width: 32px;
    height: 32px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
  }
  .mega-toggle::before { content: "+"; margin: auto; font-weight: 900; color: var(--brand); }
  .nav-item.open .mega-toggle::before { content: "-"; }
  .mega-menu {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: 1fr;
    max-height: 0;
    overflow: hidden;
    transform: none;
    padding: 0;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: hidden;
    pointer-events: auto;
    transition: max-height .25s ease, padding .25s ease, visibility 0s linear .25s;
  }
  .nav-item.open .mega-menu {
    max-height: 60vh;
    overflow: auto;
    padding: 12px 0 16px;
    visibility: visible;
    transition: max-height .25s ease, padding .25s ease, visibility 0s linear 0s;
  }
  .has-mega:hover .mega-menu, .has-mega:focus-within .mega-menu { transform: none; }
  .has-mega.force-closed .mega-menu { transform: none; }
  .mega-links, .mega-links.compact { grid-template-columns: 1fr; }
  .mega-intro { border-radius: 6px; }
  .hero-slider { min-height: 540px; }
  .hero-slide { padding: 60px 24px; background: linear-gradient(90deg, rgba(8,28,29,.82), rgba(8,28,29,.48)); }
  .hero-copy h1 { font-size: 42px; }
  .hero-copy p { font-size: 17px; }
  .slider-arrow { width: 40px; height: 40px; top: auto; bottom: 24px; transform: none; }
  .slider-arrow.prev { left: auto; right: 76px; }
  .slider-arrow.next { right: 24px; }
  .slider-dots { left: 24px; bottom: 38px; }
  .section { padding: 52px 18px; }
  .section-title { display: block; }
  .section-title h2, .intro-band h2, .cta h2, .about-split h2 { font-size: 30px; }
  .range-panel strong, .listing-top h2 { font-size: 25px; }
  .detail-copy h1, .page-banner h1 { font-size: 34px; }
  .product-grid, .feature-grid, .stat-grid, .values-inner, .range-grid, .knowledge-grid { grid-template-columns: 1fr; }
  .listing-top { display: grid; }
  .knowledge-card { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .category-rail { grid-auto-columns: 78%; }
  .rail { gap: 8px; }
  .rail-arrow { width: 40px; height: 40px; }
  .admin-main { padding: 18px; }
  table { min-width: 760px; }
}

@media (max-width: 420px) {
  .hero-copy h1 { font-size: 35px; }
  .page-banner { min-height: 260px; padding: 48px 20px; }
  .thumbs { grid-template-columns: repeat(4, 1fr); }
  .hero-actions .btn { width: 100%; }
}
