/* CCTV Cameras Kenya — production stylesheet
   Pure CSS3. Zero JavaScript. Mobile-first. */

/* --------------------------------------------------------------------------
   Tokens
   -------------------------------------------------------------------------- */
:root {
  --red-600: #C8102E;
  --red-700: #9E0C24;
  --white: #FFFFFF;
  --surface-50: #F7F7F5;
  --ink-900: #141414;
  --ink-500: #5C5C5C;
  --ink-300: #A3A3A3;
  --border: #E5E5E2;
  --focus: #C8102E;
  --max: 70rem;
  --max-wide: 80rem;
  --gutter: clamp(1rem, 4vw, 2rem);
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-8: 6rem;
  --font-display: "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Source Serif 4", Georgia, "Times New Roman", serif;
  --text-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.85rem + 0.15vw, 0.9375rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  --text-3xl: clamp(1.875rem, 1.4rem + 1.5vw, 2.75rem);
  --text-display: clamp(2.25rem, 1.5rem + 2.5vw, 3.5rem);
  --header-h: 4rem;
  --sticky-h: 3.5rem;
  --radius: 2px;
  --shadow-sm: 0 1px 2px rgba(20, 20, 20, 0.06);
  --shadow-md: 0 8px 24px rgba(20, 20, 20, 0.08);
}

/* --------------------------------------------------------------------------
   Reset / base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--white);
  padding-bottom: var(--sticky-h);
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--red-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--red-600);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
.label-btn:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-2);
  color: var(--ink-900);
  font-weight: 700;
}

h1 { font-size: var(--text-display); letter-spacing: -0.03em; line-height: 1.05; }
h2 { font-size: var(--text-2xl); margin-top: var(--space-5); }
h3 { font-size: var(--text-xl); margin-top: var(--space-4); font-weight: 600; }
h4 { font-size: var(--text-lg); font-weight: 600; }

p { margin: 0 0 var(--space-2); }

ul, ol { margin: 0 0 var(--space-3); padding-left: 1.25rem; }
li { margin-bottom: 0.35rem; }

table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-display);
  font-size: var(--text-sm);
}

th, td {
  text-align: left;
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

th {
  background: var(--ink-900);
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.01em;
}

tr:nth-child(even) td {
  background: var(--surface-50);
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  background: var(--ink-900);
  color: var(--white);
  padding: 0.75rem 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  left: var(--gutter);
  top: 0.5rem;
}

.container {
  width: min(100% - 2 * var(--gutter), var(--max));
  margin-inline: auto;
}

.container--wide {
  width: min(100% - 2 * var(--gutter), var(--max-wide));
  margin-inline: auto;
}

.section {
  padding-block: clamp(3rem, 6vw, 6rem);
}

.section--surface {
  background: var(--surface-50);
}

.section--ink {
  background: var(--ink-900);
  color: var(--white);
}

.section--ink h2,
.section--ink h3,
.section--ink p {
  color: var(--white);
}

.section--ink p {
  color: rgba(255, 255, 255, 0.85);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-600);
  margin-bottom: var(--space-2);
}

.lead {
  font-size: var(--text-lg);
  color: var(--ink-500);
  max-width: 42rem;
}

.muted {
  color: var(--ink-500);
  font-size: var(--text-sm);
}

.price-stamp {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-500);
  border: 1px solid var(--border);
  padding: 0.35rem 0.65rem;
  margin-bottom: var(--space-3);
}

.definition {
  font-size: var(--text-sm);
  color: var(--ink-500);
  border-left: 3px solid var(--red-600);
  padding-left: var(--space-2);
  margin: var(--space-3) 0;
  max-width: 48rem;
}

/* --------------------------------------------------------------------------
   Viewfinder signature
   -------------------------------------------------------------------------- */
.vf {
  position: relative;
}

.vf::before,
.vf::after,
.vf-inner::before,
.vf-inner::after {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  border-color: var(--red-600);
  border-style: solid;
  pointer-events: none;
  z-index: 2;
}

.vf::before {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
}

.vf::after {
  top: 0;
  right: 0;
  border-width: 2px 2px 0 0;
}

.vf-inner {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.vf-inner::before {
  bottom: 0;
  left: 0;
  top: auto;
  border-width: 0 0 2px 2px;
}

.vf-inner::after {
  bottom: 0;
  right: 0;
  top: auto;
  left: auto;
  border-width: 0 2px 2px 0;
}

.vf--pad {
  padding: var(--space-3);
}

.vf-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-600);
}

.vf-label::before {
  content: "[";
  color: var(--red-600);
}

.vf-label::after {
  content: "]";
  color: var(--red-600);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn--primary {
  background: var(--red-600);
  color: var(--white);
  border-color: var(--red-600);
}

.btn--primary:hover {
  background: var(--red-700);
  border-color: var(--red-700);
  color: var(--white);
}

.btn--secondary {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--ink-900);
}

.btn--secondary:hover {
  background: var(--ink-900);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
  background: var(--white);
  color: var(--ink-900);
  border-color: var(--white);
}

.btn--block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

/* --------------------------------------------------------------------------
   Header / nav
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--red-600);
  border-bottom: 1px solid var(--red-700);
  color: #fff;
}

.site-header .logo {
  color: #fff;
}

.site-header .logo:hover {
  color: #fff;
}

.site-header .logo-mark {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.site-header .header-phone {
  color: #fff;
}

.site-header .header-phone:hover {
  color: #fff;
  opacity: 0.9;
}

.site-header .header-phone .icon-svg {
  fill: #fff;
}

.site-header .nav-toggle-label {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}

.site-header .nav-toggle-label span {
  background: #fff;
}

.site-header .site-nav a {
  color: #fff;
}

.site-header .site-nav a:hover,
.site-header .site-nav a[aria-current="page"] {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* Mobile dropdown panel on red header */
@media (max-width: 1023px) {
  .site-header .site-nav {
    background: var(--red-700);
    border-bottom-color: var(--red-700);
  }

  .site-header .site-nav a {
    border-bottom-color: rgba(255, 255, 255, 0.15);
  }
}

/* WhatsApp stays green so it still reads as WhatsApp on red bar */
.site-header .header-wa {
  background: #fff;
  border-color: #fff;
  color: var(--red-600);
}

.site-header .header-wa:hover {
  background: #f3f3f3;
  border-color: #f3f3f3;
  color: var(--red-700);
}

.site-header .header-wa .social-icon {
  color: #128C7E;
}

/* ========== HEADER (grid: no overlap) ==========
   Mobile:  [Logo] .............. [WA] [☰]
   Desktop: [Logo] [Nav........] [Phone] [WA]
   ============================================= */
.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  grid-template-areas: "logo actions toggle";
  align-items: center;
  column-gap: 0.75rem;
  min-height: var(--header-h);
  width: min(100% - 2 * var(--gutter), var(--max));
  margin-inline: auto;
  padding-inline: 0;
}

.logo {
  grid-area: logo;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: -0.01em;
  color: var(--ink-900);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
  max-width: 100%;
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border: 2px solid var(--red-600);
  color: var(--red-600);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0;
  flex-shrink: 0;
}

.logo:hover {
  color: var(--ink-900);
}

.header-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--ink-900);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
  padding: 0.4rem 0.15rem;
}

.header-phone .icon-svg {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
}

.header-phone:hover {
  color: var(--red-600);
}

.header-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
  background: #128C7E;
  border: 2px solid #128C7E;
  border-radius: 6px;
  padding: 0.5rem 0.7rem;
  line-height: 1;
  flex-shrink: 0;
}

.header-wa:hover {
  background: #0e6e63;
  border-color: #0e6e63;
  color: #fff;
}

.header-wa .social-icon {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
}

/* icon-only WA on very small phones */
@media (max-width: 379px) {
  .header-wa-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
  .header-wa {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
  }
}

.social-icon {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
  fill: currentColor;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.nav-toggle-label {
  grid-area: toggle;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border: 1px solid var(--border);
  background: var(--white);
  flex-shrink: 0;
}

.nav-toggle-label span {
  display: block;
  height: 2px;
  background: var(--ink-900);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav: full-width dropdown under header */
.site-nav {
  grid-area: nav;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 1001;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.nav-toggle:checked ~ .site-nav {
  display: block;
  max-height: 24rem;
  overflow: auto;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: var(--space-2) var(--gutter) var(--space-3);
}

.site-nav a {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--ink-900);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--red-600);
}

.nav-cta {
  color: var(--red-600) !important;
}

/* Desktop: logo | nav | actions  — no hamburger, no stacking */
@media (min-width: 1024px) {
  .header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas: "logo nav actions";
    column-gap: 1rem;
  }

  .nav-toggle-label {
    display: none;
  }

  .site-nav {
    display: block;
    position: static;
    max-height: none;
    overflow: visible;
    border: 0;
    background: transparent;
    z-index: auto;
  }

  .nav-toggle:checked ~ .site-nav {
    max-height: none;
  }

  .site-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.1rem;
    padding: 0;
  }

  .site-nav a {
    border: 0;
    padding: 0.45rem 0.5rem;
    font-size: 0.8125rem;
  }

  .header-phone {
    display: inline-flex;
  }

  .header-actions {
    gap: 0.65rem;
  }
}

@media (min-width: 1200px) {
  .site-nav a {
    padding: 0.5rem 0.65rem;
    font-size: var(--text-sm);
  }

  .header-phone {
    font-size: var(--text-sm);
  }
}

/* Hide social icons from header if any leftover markup exists */
.header-social {
  display: none !important;
}

/* --------------------------------------------------------------------------
   Breadcrumbs
   -------------------------------------------------------------------------- */
.breadcrumbs {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  padding: var(--space-2) 0;
  color: var(--ink-500);
}

.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.35rem;
  color: var(--ink-300);
}

.breadcrumbs a {
  color: var(--ink-500);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--red-600);
}

.breadcrumbs [aria-current="page"] {
  color: var(--ink-900);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  padding-block: clamp(2.5rem, 6vw, 5rem);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  gap: var(--space-4);
  align-items: start;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--space-5);
  }
}

.hero-media {
  background: var(--surface-50);
  aspect-ratio: 3 / 2;
  max-height: 28rem;
  overflow: hidden;
  align-self: start;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero h1 {
  margin-bottom: var(--space-2);
}

/* --------------------------------------------------------------------------
   Cards / grids
   -------------------------------------------------------------------------- */
.card-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .card-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .card-grid--4 { grid-template-columns: repeat(4, 1fr); }
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

a.card:hover {
  border-color: var(--red-600);
  box-shadow: var(--shadow-md);
  color: inherit;
}

.card h3 {
  margin-top: 0;
  font-size: var(--text-lg);
}

.card p {
  color: var(--ink-500);
  font-size: var(--text-sm);
  flex-grow: 1;
}

.card .card-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--red-600);
  margin-top: var(--space-2);
}

.card-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--ink-900);
  margin: var(--space-1) 0;
}

/* --------------------------------------------------------------------------
   Tables wrap
   -------------------------------------------------------------------------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  margin: var(--space-3) 0;
  position: relative;
}

.table-wrap.vf {
  padding: 0;
}

.table-wrap table {
  min-width: 36rem;
  margin: 0;
}

.table-wrap th:first-child,
.table-wrap td:first-child {
  position: sticky;
  left: 0;
  background: inherit;
}

.table-wrap th:first-child {
  background: var(--ink-900);
  z-index: 1;
}

.table-wrap tr:nth-child(even) td:first-child {
  background: var(--surface-50);
}

.table-wrap tr:nth-child(odd) td:first-child {
  background: var(--white);
}

.price-cell {
  font-weight: 700;
  white-space: nowrap;
  color: var(--ink-900);
}

/* --------------------------------------------------------------------------
   Process / steps
   -------------------------------------------------------------------------- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
  display: grid;
  gap: var(--space-3);
}

@media (min-width: 768px) {
  .steps--4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .steps--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: var(--space-3);
  background: var(--white);
  border: 1px solid var(--border);
  margin: 0;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--red-600);
  letter-spacing: 0.08em;
  margin-bottom: var(--space-1);
}

/* --------------------------------------------------------------------------
   FAQ details
   -------------------------------------------------------------------------- */
.faq-list {
  display: grid;
  gap: var(--space-2);
  margin: var(--space-3) 0;
}

.faq-list details {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 0;
}

.faq-list summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: 1rem 1.15rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-weight: 700;
  color: var(--red-600);
  flex-shrink: 0;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 1.15rem 1.15rem;
  margin: 0;
  color: var(--ink-500);
  font-size: var(--text-sm);
}

/* --------------------------------------------------------------------------
   CTA bands
   -------------------------------------------------------------------------- */
.cta-band {
  background: var(--surface-50);
  border: 1px solid var(--border);
  padding: var(--space-4);
  margin: var(--space-5) 0;
}

.cta-band h2 {
  margin-top: 0;
}

.cta-band--ink {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: var(--white);
}

.cta-band--ink h2,
.cta-band--ink p {
  color: var(--white);
}

.cta-band--ink p {
  color: rgba(255, 255, 255, 0.85);
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form-grid {
  display: grid;
  gap: var(--space-2);
}

@media (min-width: 768px) {
  .form-grid--2 {
    grid-template-columns: 1fr 1fr;
  }
}

label {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  color: var(--ink-900);
}

input,
select,
textarea {
  width: 100%;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink-900);
}

textarea {
  min-height: 8rem;
  resize: vertical;
  font-family: var(--font-body);
}

.field {
  margin-bottom: var(--space-2);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--red-600);
  color: rgba(255, 255, 255, 0.92);
  padding: var(--space-6) 0 var(--space-4);
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  border-top: 1px solid var(--red-700);
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
  opacity: 0.9;
}

.site-footer .footer-col ul a {
  color: #fff;
  font-size: var(--text-sm);
  line-height: 1.45;
}

.site-footer .footer-col--blogs ul {
  columns: 1;
}

@media (min-width: 1024px) {
  .site-footer .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 0.9fr) 1.15fr;
  }
}

.footer-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.3fr repeat(4, 1fr);
  }
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: var(--space-2);
}

.footer-brand .logo-mark {
  border-color: #fff;
  color: #fff;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--text-sm);
}

.footer-col h3 {
  color: #fff;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 var(--space-2);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.45rem;
}

.footer-bottom {
  margin-top: var(--space-5);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.75);
}

.footer-map {
  margin-top: var(--space-4);
  aspect-ratio: 16 / 9;
  max-height: 16rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.footer-map iframe,
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-embed {
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-50);
}

/* --------------------------------------------------------------------------
   Sticky mobile bar
   -------------------------------------------------------------------------- */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(20, 20, 20, 0.08);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.sticky-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
  min-height: var(--sticky-h);
}

.sticky-bar .sticky-call {
  background: var(--white);
  color: var(--ink-900);
  border-right: 1px solid var(--border);
}

.sticky-bar .sticky-wa {
  background: var(--red-600);
  color: var(--white);
}

.sticky-bar .sticky-wa:hover {
  background: var(--red-700);
  color: var(--white);
}

@media (min-width: 768px) {
  .sticky-bar {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Page-specific
   -------------------------------------------------------------------------- */
.prose {
  max-width: 48rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.split {
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 1024px) {
  .split--2 {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .split--aside {
    grid-template-columns: 1.6fr 1fr;
    align-items: start;
  }
}

.aside-card {
  background: var(--surface-50);
  border: 1px solid var(--border);
  padding: var(--space-3);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.aside-card h2 {
  margin-top: 0;
  font-size: var(--text-lg);
}

.icon-svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  fill: currentColor;
}

.check-list {
  list-style: none;
  margin: 0 0 var(--space-3);
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--red-600);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
  margin: var(--space-3) 0;
}

@media (min-width: 768px) {
  .stat-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  border: 1px solid var(--border);
  padding: var(--space-2);
  background: var(--white);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--red-600);
  letter-spacing: -0.02em;
}

.stat span {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.page-hero {
  padding: var(--space-4) 0 var(--space-3);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  max-width: 18ch;
}

.related {
  margin-top: var(--space-5);
}

.two-col-list {
  columns: 1;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .two-col-list {
    columns: 2;
  }
}

.media-frame {
  background: var(--surface-50);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin: var(--space-3) 0;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 404 */
.error-page {
  text-align: center;
  padding: var(--space-8) 0;
}

.error-page .code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  color: var(--red-600);
  line-height: 1;
  letter-spacing: -0.04em;
}

/* --------------------------------------------------------------------------
   Hero large + CSS-only slider (zero JS)
   -------------------------------------------------------------------------- */
.hero {
  padding-block: clamp(2rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

/* Override earlier hero-grid: never stretch media to copy height */
.hero-grid {
  display: grid;
  gap: var(--space-4);
  align-items: start;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    min-height: 0;
  }
}

.hero-copy .benefit-list {
  list-style: none;
  margin: var(--space-3) 0;
  padding: 0;
}

.hero-copy .benefit-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.75rem;
  margin: 0;
  border-bottom: 1px solid var(--border);
  font-size: var(--text-sm);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink-900);
}

.hero-copy .benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.65rem;
  height: 0.65rem;
  background: var(--red-600);
}

/* Fixed landscape frame: matches ~3:2 stock photos. No vertical stretch. */
.hero-media,
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 3 / 2;
  max-height: min(28rem, 56vw);
  background: var(--ink-900);
  overflow: hidden;
  align-self: start;
}

@media (min-width: 1024px) {
  .hero-media,
  .hero-slider {
    /* width-driven height only; never match text column height */
    height: auto;
    min-height: 0;
    max-height: 26rem;
    aspect-ratio: 3 / 2;
  }
}

@media (min-width: 1280px) {
  .hero-media,
  .hero-slider {
    max-height: 28rem;
  }
}

.hero-media img,
.hero-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-slider {
  isolation: isolate;
}

.hero-slider input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hero-slider .slides {
  position: absolute;
  inset: 0;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}

.hero-slider .slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.15rem;
  background: linear-gradient(transparent, rgba(20, 20, 20, 0.78));
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-slider .nav-dots {
  position: absolute;
  z-index: 5;
  right: 1rem;
  top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.hero-slider .nav-dots label {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 2px solid #fff;
  cursor: pointer;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0;
  padding: 0;
}

/* default: first slide visible */
.hero-slider .slide:nth-child(1) {
  opacity: 1;
  z-index: 1;
}

.hero-slider #hs1:checked ~ .slides .slide { opacity: 0; z-index: 0; }
.hero-slider #hs2:checked ~ .slides .slide { opacity: 0; z-index: 0; }
.hero-slider #hs3:checked ~ .slides .slide { opacity: 0; z-index: 0; }
.hero-slider #hs4:checked ~ .slides .slide { opacity: 0; z-index: 0; }

.hero-slider #hs1:checked ~ .slides .slide:nth-child(1),
.hero-slider #hs2:checked ~ .slides .slide:nth-child(2),
.hero-slider #hs3:checked ~ .slides .slide:nth-child(3),
.hero-slider #hs4:checked ~ .slides .slide:nth-child(4) {
  opacity: 1;
  z-index: 1;
}

.hero-slider #hs1:checked ~ .nav-dots label[for="hs1"],
.hero-slider #hs2:checked ~ .nav-dots label[for="hs2"],
.hero-slider #hs3:checked ~ .nav-dots label[for="hs3"],
.hero-slider #hs4:checked ~ .nav-dots label[for="hs4"] {
  background: var(--red-600);
  border-color: var(--red-600);
}

/* CSS-only auto-rotate when user has not selected a dot yet (hs1 default checked drives first frame; animation layers after) */
@media (prefers-reduced-motion: no-preference) {
  .hero-slider #hs1:checked ~ .slides .slide {
    animation: heroFade 16s infinite;
  }
  .hero-slider #hs1:checked ~ .slides .slide:nth-child(1) { animation-delay: 0s; }
  .hero-slider #hs1:checked ~ .slides .slide:nth-child(2) { animation-delay: 4s; }
  .hero-slider #hs1:checked ~ .slides .slide:nth-child(3) { animation-delay: 8s; }
  .hero-slider #hs1:checked ~ .slides .slide:nth-child(4) { animation-delay: 12s; }
  @keyframes heroFade {
    0% { opacity: 0; z-index: 0; }
    2% { opacity: 1; z-index: 1; }
    23% { opacity: 1; z-index: 1; }
    27% { opacity: 0; z-index: 0; }
    100% { opacity: 0; z-index: 0; }
  }
  /* manual pick: stop auto animation */
  .hero-slider #hs2:checked ~ .slides .slide,
  .hero-slider #hs3:checked ~ .slides .slide,
  .hero-slider #hs4:checked ~ .slides .slide {
    animation: none !important;
  }
}

/* Social */
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: var(--space-2);
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--border);
  color: var(--ink-900);
  text-decoration: none;
  background: var(--white);
}

.social-row a:hover {
  border-color: var(--red-600);
  color: var(--red-600);
}

.site-footer .social-row a {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.site-footer .social-row a:hover {
  background: #fff;
  border-color: #fff;
  color: var(--red-600);
}

.site-footer .social-row a[aria-label="WhatsApp"]:hover {
  color: #128C7E;
  border-color: #fff;
}

.header-social {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1100px) {
  .header-social {
    display: flex;
  }
}

.header-social a {
  width: 1.85rem;
  height: 1.85rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--ink-900);
  background: var(--white);
  flex-shrink: 0;
}

.header-social a:hover {
  border-color: var(--red-600);
  color: var(--red-600);
}

.header-social .social-icon {
  width: 0.95rem;
  height: 0.95rem;
}

.social-row a {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 4px;
}

.social-row .social-icon {
  width: 1.1rem;
  height: 1.1rem;
}

/* WhatsApp footer icon green on hover */
.social-row a[aria-label="WhatsApp"]:hover {
  color: #25D366;
  border-color: #25D366;
}

/* Gallery */
.gallery-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-card {
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
}

.gallery-card .thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-50);
}

.gallery-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card .body {
  padding: var(--space-2);
}

.gallery-card h3 {
  margin: 0 0 0.35rem;
  font-size: var(--text-base);
}

.video-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink-900);
  border: 1px solid var(--border);
  overflow: hidden;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* County / neighbourhood chips */
.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: var(--space-2) 0 var(--space-3);
}

.chip {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink-900);
  text-decoration: none;
}

a.chip:hover {
  border-color: var(--red-600);
  color: var(--red-600);
}

.chip--accent {
  border-color: var(--red-600);
  color: var(--red-600);
}

.county-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .county-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .county-grid { grid-template-columns: repeat(3, 1fr); }
}

.county-card {
  border: 1px solid var(--border);
  padding: 1rem 1.1rem;
  background: var(--white);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--ink-900);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.county-card .county-meta {
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red-600);
}

.county-card p {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-sm);
  line-height: 1.55;
  color: var(--ink-500);
}

.area-block {
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border);
}

.area-block h3 {
  margin-top: 0;
}

/* ==========================================================================
   Catalog home redesign (iCam-style, red/white)
   ========================================================================== */
.hero--catalog {
  padding-block: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, #fff 0%, #fff 55%, #FFF5F6 55%, #FFF5F6 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero--catalog .hero-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero--catalog .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.hero--catalog .hero-copy h1 {
  font-size: clamp(1.75rem, 1.15rem + 1.8vw, 2.55rem);
  max-width: 18ch;
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
}

.hero--catalog .lead {
  font-size: var(--text-base);
  max-width: 34rem;
  margin-bottom: var(--space-2);
  color: var(--ink-500);
}

.hero--catalog .definition {
  margin: var(--space-2) 0 var(--space-3);
  font-size: var(--text-xs);
}

.hero-stage {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  aspect-ratio: 3 / 2;
  max-height: 26rem;
  width: 100%;
  overflow: hidden;
  align-self: center;
  box-shadow: var(--shadow-md);
}

.hero-stage .slides,
.hero-stage .slide {
  position: absolute;
  inset: 0;
}

.hero-stage .slide {
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
  margin: 0;
}

.hero-stage .slide:nth-child(1) {
  opacity: 1;
  z-index: 1;
}

.hero-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-stage input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hero-stage #hs1:checked ~ .slides .slide,
.hero-stage #hs2:checked ~ .slides .slide,
.hero-stage #hs3:checked ~ .slides .slide,
.hero-stage #hs4:checked ~ .slides .slide {
  opacity: 0;
  z-index: 0;
}

.hero-stage #hs1:checked ~ .slides .slide:nth-child(1),
.hero-stage #hs2:checked ~ .slides .slide:nth-child(2),
.hero-stage #hs3:checked ~ .slides .slide:nth-child(3),
.hero-stage #hs4:checked ~ .slides .slide:nth-child(4) {
  opacity: 1;
  z-index: 1;
}

.hero-stage .nav-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 0.75rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  gap: 0.4rem;
}

.hero-stage .nav-dots label {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: 2px solid #fff;
  cursor: pointer;
  margin: 0;
  padding: 0;
  font-size: 0;
  text-transform: none;
  letter-spacing: 0;
}

.hero-stage #hs1:checked ~ .nav-dots label[for="hs1"],
.hero-stage #hs2:checked ~ .nav-dots label[for="hs2"],
.hero-stage #hs3:checked ~ .nav-dots label[for="hs3"],
.hero-stage #hs4:checked ~ .nav-dots label[for="hs4"] {
  background: var(--red-600);
  border-color: var(--red-600);
}

.hero-stage .slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 0.85rem 1.75rem;
  background: linear-gradient(transparent, rgba(20, 20, 20, 0.75));
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: var(--space-2);
}

.hero-badges span {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 0.3rem 0.55rem;
  color: var(--ink-900);
}

/* Category strip */
.cat-strip-wrap {
  margin-top: -1.25rem;
  margin-bottom: var(--space-5);
  position: relative;
  z-index: 2;
}

.cat-strip {
  display: grid;
  gap: var(--space-2);
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 900px) {
  .cat-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.cat-card:hover {
  border-color: var(--red-600);
  box-shadow: var(--shadow-md);
  color: inherit;
}

.cat-card__img {
  aspect-ratio: 10 / 7;
  background: #fff;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.cat-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 0.65rem;
}

.cat-card__body {
  padding: 0.85rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.cat-card h3 {
  margin: 0;
  font-size: var(--text-base);
}

.cat-card .muted {
  margin: 0;
  font-size: var(--text-sm);
}

.cat-card .from-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--red-600);
}

.cat-card .cat-cta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-xs);
  color: var(--red-600);
  margin-top: 0.2rem;
}

/* Product grid */
.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto var(--space-4);
}

.section-head h2 {
  margin-top: 0;
}

.product-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.product-card:hover {
  border-color: var(--red-600);
  box-shadow: var(--shadow-md);
}

.product-card__img {
  aspect-ratio: 4 / 3;
  background: #fff;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 0.75rem;
}

.bs-card__img {
  background: #fff !important;
}

.bs-card__img img {
  object-fit: contain !important;
  padding: 0.5rem;
  background: #fff;
}

.hero-stage img {
  object-fit: cover;
}

.product-card__body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
  font-family: var(--font-display);
}

.product-card__body h3 {
  margin: 0;
  font-size: var(--text-base);
  font-weight: 700;
}

.product-card__body p {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--ink-500);
  flex: 1;
}

.product-card__price {
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--red-600);
  margin: 0.25rem 0 0.5rem;
}

.product-card .btn {
  border-radius: 6px;
  width: 100%;
  margin-top: auto;
}

/* Best sellers dark band */
.band-bestsellers {
  background: var(--ink-900);
  color: #fff;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.band-bestsellers h2,
.band-bestsellers h3 {
  color: #fff;
}

.band-bestsellers p {
  color: rgba(255, 255, 255, 0.82);
}

.bs-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .bs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.bs-card {
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .bs-card {
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
  }
}

.bs-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
}

.bs-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bs-card h3 {
  margin: 0 0 0.5rem;
  font-size: var(--text-xl);
}

.bs-card ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
}

.bs-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: #fff;
  margin-bottom: 0.75rem;
}

.bs-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--red-600);
  color: #fff;
  padding: 0.25rem 0.5rem;
  margin-bottom: 0.5rem;
}

/* Dual promos */
.promo-pair {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .promo-pair {
    grid-template-columns: 1fr 1fr;
  }
}

.promo-tile {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 11rem;
  justify-content: flex-end;
  transition: filter 0.15s ease;
}

.promo-tile:hover {
  filter: brightness(1.05);
  color: #fff;
}

.promo-tile--red {
  background: var(--red-600);
}

.promo-tile--ink {
  background: var(--ink-900);
}

.promo-tile h3 {
  margin: 0;
  color: #fff;
  font-size: var(--text-xl);
}

.promo-tile p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
}

.promo-tile .promo-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  margin-top: 0.5rem;
}

/* Feature icons */
.feature-icons {
  display: grid;
  gap: var(--space-2);
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 768px) {
  .feature-icons {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .feature-icons {
    grid-template-columns: repeat(6, 1fr);
  }
}

.feature-icon {
  text-align: center;
  padding: 1rem 0.75rem;
  border: 1px solid var(--border);
  background: var(--white);
}

.feature-icon .fi-mark {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.65rem;
  border: 2px solid var(--red-600);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--red-600);
}

.feature-icon strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  margin-bottom: 0.2rem;
}

.feature-icon span {
  font-size: var(--text-xs);
  color: var(--ink-500);
}

.coverage-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: 1rem;
  background: var(--surface-50);
  border: 1px solid var(--border);
  margin-bottom: var(--space-3);
}

.coverage-bar span::before {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--red-600);
  margin-right: 0.45rem;
  vertical-align: middle;
}
