/* ==========================================================================
   The Fire Shop — shared styles
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Roboto:wght@300;400;500&display=swap');

:root {
  --color-navy: #00264c;
  --color-navy-hover: #3f5566;
  --color-navy-text: #000842;
  --color-navy-border: #000b3d;
  --color-accent: #ff4500;
  --color-accent-hover: #e03e00;
  --color-black: #0c0c0c;
  --color-grey: #828282;
  --color-grey-light: #c4c4c4;
  --color-bg-alt: #f5f6f8;
  --color-border: #ececec;
  --color-white: #ffffff;

  --font-heading: 'Poppins', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --font-script: Georgia, 'Times New Roman', serif;

  --container: 1240px;
  --header-h: 130px;
  --subnav-h: 60px;
  --radius: 5px;
  --transition: 0.2s ease;
}

@media (max-width: 1024px) {
  :root { --header-h: 100px; --subnav-h: 50px; }
}
@media (max-width: 480px) {
  :root { --header-h: 100px; --subnav-h: 50px; }
}

/* ---- Reset / base ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-black);
  line-height: 1.65;
  padding-top: calc(var(--header-h) + var(--subnav-h));
  background: var(--color-white);
}

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

a { text-decoration: none; color: inherit; }

ul, ol { list-style: none; }

button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-black);
}

h1 { font-size: clamp(32px, 5vw, 56px); }
h2 { font-size: clamp(26px, 4vw, 38px); }
h3 { font-size: 20px; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-navy);
  color: #fff;
  padding: 10px 20px;
  z-index: 1000;
}
.skip-link:focus { left: 10px; top: 10px; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-accent);
  margin-bottom: 6px;
}

.section { padding: 70px 0; }
.section-alt { background: var(--color-bg-alt); }
.section-navy { background: var(--color-navy); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }

.text-center { text-align: center; }

.section-head { max-width: 720px; margin: 0 auto 50px; text-align: center; }
.section-head p { color: var(--color-grey); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius);
  padding: 12px 26px;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.btn-solid { background: var(--color-navy); color: #fff; }
.btn-solid:hover { background: var(--color-navy-hover); }
.btn-outline { background: transparent; border-color: var(--color-navy-border); color: var(--color-navy-text); }
.btn-outline:hover { background: var(--color-navy-border); color: #fff; }
.btn-accent { background: var(--color-accent); color: #fff; }
.btn-accent:hover { background: var(--color-accent-hover); }
.btn-outline-light { background: transparent; border-color: rgba(255, 255, 255, 0.6); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--color-navy); border-color: #fff; }
.btn-large { padding: 16px 36px; font-size: 16px; }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-row.center { justify-content: center; }

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: #fff;
  z-index: 110;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { flex-shrink: 0; }
.logo img { width: 230px; height: auto; }

.header-search {
  flex: 1;
  max-width: 320px;
  display: flex;
}
.header-search input {
  flex: 1;
  min-width: 0;
  padding: 11px 16px;
  border: 1px solid var(--color-grey-light);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
}
.header-search input:focus { outline: 2px solid var(--color-navy); outline-offset: -2px; }
.header-search button {
  padding: 0 18px;
  border: none;
  background: var(--color-navy);
  color: #fff;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  transition: background var(--transition);
}
.header-search button:hover { background: var(--color-navy-hover); }

.header-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-phone {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-black);
  white-space: nowrap;
}
.header-actions .header-phone { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-black);
  margin: 0 auto;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Sub nav ---- */
.sub-nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  height: var(--subnav-h);
  background: #ededed;
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
  transition: top var(--transition);
}
.sub-nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.sub-nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-grey);
  transition: color var(--transition);
}
.sub-nav a:hover, .sub-nav a.active { color: var(--color-accent); }
.sub-nav .divider { color: var(--color-grey-light); font-weight: 300; font-size: 22px; }
.sub-nav-inner > a { display: inline-flex; align-items: center; gap: 9px; }
.sub-nav-inner > a::before { content: ""; width: 32px; height: 32px; background-size: contain; background-repeat: no-repeat; background-position: center; flex-shrink: 0; }
.sub-nav-inner > a[href="shop-now.html"]::before { background-image: url('../images/nav-shop.webp?v=20260624b'); }
.sub-nav-inner > a[href="promo.html"]::before { background-image: url('../images/nav-promo.webp?v=20260624b'); }
.sub-nav-inner > a[href^="tel:"]::before { background-image: url('../images/nav-call.webp?v=20260624b'); }
.sub-nav-inner > a[href="about-us.html"]::before { width: 42px; background-image: url('../images/nav-about.webp?v=20260627d'); }

/* ---- Services mega menu ---- */
.has-mega { position: relative; display: inline-flex; align-items: center; }
.mega-trigger { font-family: var(--font-heading); font-weight: 500; font-size: 18px; color: var(--color-grey); background: none; border: 0; cursor: pointer; padding: 0; display: inline-flex; align-items: center; gap: 9px; transition: color var(--transition); }
.mega-trigger::before { content: ''; width: 32px; height: 32px; flex-shrink: 0; background: url('../images/nav-services.webp?v=20260624r') center/contain no-repeat; }
.mega-trigger::after { content: ''; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-bottom: 3px; transition: transform var(--transition); }
.mega-trigger:hover { color: var(--color-accent); }
.mega-panel { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); background: #fff; border: 1px solid var(--color-border); border-radius: 14px; box-shadow: 0 24px 60px rgba(0,0,0,0.16); padding: 26px 30px; display: grid; grid-template-columns: repeat(3, minmax(180px, 1fr)); gap: 6px 40px; opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease; z-index: 200; text-align: left; }
.has-mega:hover .mega-panel, .has-mega:focus-within .mega-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.has-mega:hover .mega-trigger::after, .has-mega:focus-within .mega-trigger::after { transform: rotate(-135deg); margin-bottom: -3px; }
.mega-col h4 { font-family: var(--font-heading); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--color-accent); margin: 0 0 10px; }
.mega-col a { display: block; padding: 6px 0; font-size: 15px; color: var(--color-navy-text); font-family: var(--font-heading); font-weight: 500; }
.mega-col a:hover { color: var(--color-accent); }
.mega-col a.mega-sub { padding: 4px 0 4px 16px; font-size: 13.5px; font-weight: 400; color: var(--color-grey); position: relative; }
.mega-col a.mega-sub::before { content: '\2013'; position: absolute; left: 2px; color: var(--color-grey-light); }
@media (max-width: 768px) {
  .sub-nav .divider { display: none; }
  .sub-nav-inner > a[href="promo.html"],
  .sub-nav-inner > a[href="about-us.html"],
  .sub-nav-inner > a[href^="tel:"] { display: none; }
  .mega-panel { grid-template-columns: 1fr; width: min(84vw, 300px); padding: 18px 22px; gap: 2px; }
}

/* ---- Service / content pages ---- */
.prose { max-width: 820px; }
.prose .eyebrow { display: block; margin-bottom: 6px; }
.prose .lead { font-size: 19px; line-height: 1.65; color: var(--color-navy-text); margin: 0; }
.prose h2 { font-size: clamp(26px, 3vw, 34px); margin: 4px 0 18px; }
.prose p { font-size: 16.5px; line-height: 1.75; color: #3a4453; margin: 0 0 18px; }
.prose p:last-child { margin-bottom: 0; }
.process-steps { margin: 24px 0 0; padding: 0; list-style: none; counter-reset: step; }
.process-steps li { position: relative; padding: 0 0 24px 60px; counter-increment: step; font-size: 16.5px; line-height: 1.7; color: #3a4453; }
.process-steps li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 38px; height: 38px; border-radius: 50%; background: var(--color-accent); color: #fff; font-family: var(--font-heading); font-weight: 700; display: flex; align-items: center; justify-content: center; }
.process-steps li:not(:last-child)::after { content: ''; position: absolute; left: 18px; top: 42px; bottom: 6px; width: 2px; background: var(--color-border); }
.process-steps strong { color: var(--color-navy-text); }
.prose .list-label { font-family: var(--font-heading); font-weight: 700; color: var(--color-navy-text); margin: 8px 0 2px; }
.prose ul { margin: 10px 0 18px; padding: 0; list-style: none; }
.prose ul li { position: relative; padding: 6px 0 6px 26px; font-size: 16.5px; line-height: 1.6; color: #3a4453; }
.prose ul li::before { content: ''; position: absolute; left: 2px; top: 13px; width: 8px; height: 8px; border-radius: 50%; background: var(--color-accent); }

/* ---- Google reviews ---- */
.reviews-section { padding: 60px 0; background: #fff; border-top: 1px solid var(--color-border); }
.reviews-head { display: flex; align-items: center; justify-content: center; gap: 9px; }
.reviews-head svg { display: block; }
.reviews-score { font-family: var(--font-heading); font-weight: 700; font-size: 22px; color: var(--color-navy-text); }
.reviews-star { color: #fbbc05; font-size: 22px; line-height: 1; }
.reviews-count { text-align: center; color: var(--color-grey); font-weight: 600; margin: 6px 0 30px; font-family: var(--font-heading); font-size: 15px; }
.reviews-carousel-wrap { position: relative; }
.reviews-track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 2px 14px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.reviews-track::-webkit-scrollbar { display: none; }
.review-card { flex: 0 0 calc((100% - 44px) / 3); min-width: 270px; scroll-snap-align: start; position: relative; background: #fff; border: 1px solid var(--color-border); border-radius: 14px; box-shadow: 0 8px 26px rgba(0,0,0,0.06); padding: 22px 22px 24px; }
.review-g { position: absolute; top: 16px; right: 16px; opacity: 0.9; }
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-heading); font-weight: 600; font-size: 14px; flex-shrink: 0; }
.review-top strong { display: block; font-size: 15px; color: var(--color-navy-text); padding-right: 22px; }
.review-date { font-size: 13px; color: var(--color-grey); }
.review-stars { color: #fbbc05; font-size: 15px; letter-spacing: 1px; margin-bottom: 10px; }
.review-text { font-size: 14.5px; line-height: 1.55; color: #3a4453; margin: 0; }
.reviews-arrow { position: absolute; top: 46%; transform: translateY(-50%); width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--color-border); background: #fff; color: var(--color-navy); font-size: 20px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(0,0,0,0.1); z-index: 2; transition: color var(--transition), border-color var(--transition); }
.reviews-arrow.prev { left: -10px; }
.reviews-arrow.next { right: -10px; }
.reviews-arrow:hover { color: var(--color-accent); border-color: var(--color-accent); }
.reviews-cta { text-align: center; margin-top: 28px; }
@media (max-width: 900px) { .review-card:not(.marquee-card) { flex: 0 0 calc((100% - 22px) / 2); } }
@media (max-width: 600px) { .review-card:not(.marquee-card) { flex: 0 0 86%; } .reviews-arrow { display: none; } }

/* ---- Reviews marquee (4 auto-scrolling rows, alternating direction) ---- */
.reviews-section { overflow: hidden; }
.reviews-marquee {
  width: 100vw; position: relative; left: 50%; margin-left: -50vw; margin-top: 6px;
  display: flex; flex-direction: column; gap: 16px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.marquee-row { display: flex; overflow: hidden; }
.marquee-track {
  display: flex; gap: 16px; width: max-content; flex: none;
  animation: marquee-left linear infinite;
  will-change: transform; backface-visibility: hidden;
}
.marquee-row.reverse .marquee-track { animation-name: marquee-right; }
.marquee-row:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-left  { from { transform: translateX(0); }      to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); }   to { transform: translateX(0); } }
.marquee-card {
  flex: 0 0 320px; width: 320px; max-width: 80vw; min-width: 0;
  height: 196px; box-sizing: border-box; overflow: hidden;
  padding: 16px 18px; margin: 0;
}
.marquee-card .review-g { top: 14px; right: 14px; }
.marquee-card .review-top { margin-bottom: 9px; }
.marquee-card .review-stars { margin-bottom: 8px; }
.marquee-card .review-text {
  font-size: 14px; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
@media (max-width: 600px) { .reviews-marquee { gap: 12px; } .marquee-card { flex-basis: 280px; width: 280px; } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---- Instagram feed ---- */
.insta-section .section-head p { margin-top: 6px; }
.insta-section .section-head a { color: var(--color-accent); font-family: var(--font-heading); font-weight: 600; }
.insta-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 26px; }
.insta-tile { position: relative; display: block; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 10px; background: #1a2535; }
.insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.insta-tile:hover img { transform: scale(1.08); }
.insta-tile::after { content: ""; position: absolute; inset: 0; background: rgba(10,15,25,0); transition: background .3s ease; }
.insta-tile:hover::after { background: rgba(10,15,25,0.4); }
.insta-ic { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; opacity: 0; transition: opacity .3s ease; z-index: 2; }
.insta-tile:hover .insta-ic { opacity: 1; }
@media (max-width: 900px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .insta-grid { grid-template-columns: repeat(2, 1fr); } .insta-tile:nth-child(5) { display: none; } }

/* ---- Home merged banner ---- */
/* Home lifestyle hero */
.home-hero { position: relative; overflow: hidden; background: #14100c url('../images/home-hero-room.webp?v=20260625a') center / cover no-repeat; min-height: 640px; display: flex; align-items: center; }
.home-hero::before { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(90deg, rgba(8,6,4,0.82) 0%, rgba(8,6,4,0.55) 34%, rgba(8,6,4,0.12) 60%, rgba(8,6,4,0) 80%); }
.home-hero-inner { width: 100%; position: relative; z-index: 2; }
.home-hero-copy { max-width: 840px; margin: 0; text-align: left; }
.home-hero-copy .eyebrow { color: var(--color-accent); }
.home-hero-copy h1 { font-family: var(--font-heading); font-weight: 800; font-size: clamp(36px, 5.4vw, 64px); line-height: 1.04; color: #fff; margin: 8px 0 18px; max-width: 560px; }
.home-hero-copy p { font-size: 19px; line-height: 1.55; color: rgba(255,255,255,0.9); max-width: 480px; margin: 0 0 30px; }
.home-hero-copy .btn-row { justify-content: flex-start; }
.btn-accent span, .btn-outline-light span { margin-left: 4px; }
.hero-trust { list-style: none; display: flex; flex-wrap: nowrap; gap: 0; margin: 36px 0 0; padding: 0; }
.hero-trust li { display: flex; align-items: center; gap: 11px; padding: 0 20px; position: relative; }
.hero-trust li:first-child { padding-left: 0; }
.hero-trust li + li::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 36px; background: rgba(255,255,255,0.22); }
.ht-ic { color: var(--color-accent); display: flex; flex-shrink: 0; }
.ht-ic svg { width: 30px; height: 30px; }
.ht-tx { font-family: var(--font-heading); font-weight: 600; font-size: 11.5px; line-height: 1.3; letter-spacing: 0.04em; text-transform: uppercase; color: #fff; white-space: nowrap; }
@media (max-width: 1024px) { .home-hero::before { background: linear-gradient(90deg, rgba(8,6,4,0.86) 0%, rgba(8,6,4,0.6) 50%, rgba(8,6,4,0.3) 100%); } }
@media (max-width: 900px) { .hero-trust { flex-wrap: wrap; gap: 16px 0; } .hero-trust li { flex: 0 0 50%; padding: 0 18px; } .hero-trust li:nth-child(odd) { padding-left: 0; } .hero-trust li:nth-child(odd)::before { display: none; } }
@media (max-width: 768px) { .home-hero { min-height: 560px; } .home-hero-copy p { font-size: 16px; } .hero-trust { margin-top: 28px; } }
@media (max-width: 600px) { .hero-trust li, .hero-trust li:nth-child(odd) { padding: 0; flex: 0 0 100%; } .hero-trust li::before { display: none; } }

.home-banner { position: relative; }
.hb-promo {
  background: linear-gradient(135deg, var(--color-navy) 0%, #001027 100%);
  color: #fff; position: relative; overflow: hidden;
  padding: 64px 0 130px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 70px));
}
.hb-promo::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 78% 28%, rgba(255,69,0,0.22), transparent 55%); pointer-events: none; }
.hb-promo-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; }
.hb-stove { display: flex; justify-content: center; align-items: flex-end; }
.hb-stove img { height: 920px; width: auto; max-width: 100%; object-fit: contain; object-position: bottom; filter: drop-shadow(0 30px 42px rgba(0,0,0,0.55)); }
.hb-copy { text-align: left; }
.hb-script { font-family: var(--font-script); font-size: 42px; color: #fff; line-height: 1; display: block; margin-bottom: -4px; transform: rotate(-4deg); transform-origin: left; }
.hb-title { font-family: var(--font-heading); font-weight: 800; font-size: clamp(46px, 6.5vw, 84px); color: #fff; line-height: 1; margin: 0 0 14px; }
.hb-offer { font-family: var(--font-heading); font-weight: 500; font-size: clamp(20px, 2.2vw, 28px); color: #fff; margin: 0 0 28px; }
.hb-offer strong { color: var(--color-accent); font-weight: 700; }
.hb-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hb-trust { background: #fff; position: relative; overflow: hidden; padding: 44px 0 0; }
.hb-trust-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 30px; }
.hb-trust-copy h2 { font-family: var(--font-heading); font-weight: 800; font-size: clamp(30px, 4vw, 50px); line-height: 1.04; margin: 0 0 26px; }
.hb-trust-navy { color: var(--color-navy-text); }
.hb-trust-accent { color: var(--color-accent); }
.hb-points { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; }
.hb-points li { position: relative; padding-left: 28px; font-family: var(--font-heading); font-weight: 500; color: var(--color-navy-text); font-size: 16px; }
.hb-points li::before { content: ''; position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--color-accent); box-shadow: inset 0 0 0 3px #fff, 0 0 0 1px var(--color-accent); }
.hb-map { align-self: end; text-align: center; }
.hb-map img { max-width: 660px; width: 100%; height: auto; display: block; margin: 0 auto -160px; }
@media (max-width: 860px) {
  .hb-promo { padding: 40px 0 90px; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 40px)); }
  .hb-promo-inner { grid-template-columns: 1fr; gap: 20px; }
  .hb-stove { order: -1; }
  .hb-stove img { height: 560px; }
  .hb-copy { text-align: center; }
  .hb-script { transform: rotate(-4deg); transform-origin: center; }
  .hb-btns { justify-content: center; }
  .hb-trust-inner { grid-template-columns: 1fr; text-align: center; }
  .hb-trust-copy h2 { text-align: center; }
  .hb-points { grid-template-columns: 1fr; justify-items: center; gap: 12px; }
  .hb-points li { padding-left: 0; }
  .hb-points li::before { display: none; }
  .hb-map { margin-top: 24px; align-self: center; }
  .hb-map img { max-width: 360px; margin-bottom: -60px; }
}

/* ---- Mobile nav drawer ---- */
.mobile-drawer {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  padding: 20px 24px;
  z-index: 105;
  flex-direction: column;
  gap: 16px;
}
.mobile-drawer.is-open { display: flex; }
.mobile-drawer .header-search { max-width: none; display: flex; }
.mobile-drawer .btn { width: 100%; }
.mobile-drawer .header-phone { display: block; text-align: center; font-size: 16px; padding: 4px 0; }
.mobile-drawer-links { display: flex; flex-direction: column; gap: 12px; }
.mobile-drawer-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-grey);
  padding: 6px 0;
}

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, #001027 100%);
  color: #fff;
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(255, 69, 0, 0.25), transparent 55%);
  pointer-events: none;
}
.hero .container { position: relative; }
.hero .eyebrow { color: #ff8a3d; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 .accent { color: var(--color-accent); }
.hero p { font-size: 18px; max-width: 620px; margin: 0 auto 30px; color: rgba(255, 255, 255, 0.85); }
.hero-sweep { background: #0c0e12 url('../images/chimney-sweep-hero.webp?v=20260625a') center / cover no-repeat; text-align: left; padding: 70px 0; min-height: 560px; display: flex; align-items: center; }
.hero-sweep::after { display: none; }
.hero-sweep::before { content: ''; position: absolute; inset: 0; z-index: 0; background: linear-gradient(90deg, rgba(6,8,12,0.88) 0%, rgba(6,8,12,0.6) 34%, rgba(6,8,12,0.15) 60%, rgba(6,8,12,0) 80%); }
.hero-sweep .container { width: 100%; }
.hero-sweep h1 { max-width: 580px; }
.hero-sweep p { margin: 0 0 30px; max-width: 540px; }
.hero-sweep .btn-row.center { justify-content: flex-start; }
.hero-sweep .eyebrow { color: var(--color-accent); }
.btn-icon { display: inline-flex; align-items: center; justify-content: center; gap: 9px; }
@media (max-width: 1024px) { .hero-sweep::before { background: linear-gradient(90deg, rgba(6,8,12,0.9) 0%, rgba(6,8,12,0.66) 50%, rgba(6,8,12,0.35) 100%); } }
@media (max-width: 768px) { .hero-sweep { min-height: 480px; } }
.hero-contact { background: #0c0e12 url('../images/contact-hero.webp?v=20260626a') center / cover no-repeat; text-align: left; padding: 70px 0; min-height: 560px; display: flex; align-items: center; }
.hero-contact::after { display: none; }
.hero-contact::before { content: ''; position: absolute; inset: 0; z-index: 0; background: linear-gradient(90deg, rgba(6,8,12,0.9) 0%, rgba(6,8,12,0.66) 32%, rgba(6,8,12,0.15) 58%, rgba(6,8,12,0) 78%); }
.hero-contact .container { width: 100%; }
.hero-contact h1 { max-width: 580px; }
.hero-contact p { margin: 0 0 30px; max-width: 540px; }
.hero-contact .btn-row.center { justify-content: flex-start; }
.hero-contact .eyebrow { color: var(--color-accent); }
@media (max-width: 1024px) { .hero-contact { background-position: 70% center; } .hero-contact::before { background: linear-gradient(90deg, rgba(6,8,12,0.92) 0%, rgba(6,8,12,0.72) 50%, rgba(6,8,12,0.4) 100%); } }
@media (max-width: 768px) { .hero-contact { min-height: 480px; } }

/* ---- Trust badges ---- */
.trust { padding: 60px 0; text-align: center; }
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.trust-badges img { max-height: 70px; width: auto; }
.trust-badges .badge-nz { background: var(--color-navy); padding: 14px 26px; border-radius: 8px; }
.trust-badges .badge-nz img { max-height: 50px; }

/* ---- Split section (image + text) ---- */
.split-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-section.reverse .container { grid-template-columns: 1fr 1fr; }
.split-section.reverse .media { order: 2; }
.split-section.reverse .copy { order: 1; }
.split-section .media img { border-radius: 14px; width: 100%; }
.split-section .copy h2 { margin-bottom: 18px; }
.split-section .copy p { color: var(--color-grey); margin-bottom: 26px; }

/* ---- FAQ accordion ---- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 26px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--color-black);
}
.faq-question::after {
  content: '+';
  font-size: 26px;
  line-height: 1;
  color: var(--color-accent);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.is-open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner { padding: 0 26px 22px; color: var(--color-grey); }

/* ---- Footer ---- */
.site-footer { background: var(--color-navy); color: #fff; padding: 64px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-brand img { width: 170px; margin-bottom: 18px; }
.footer-brand p { color: rgba(255, 255, 255, 0.65); font-size: 14px; }
.site-footer h3 {
  font-size: 14px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
}
.site-footer a, .site-footer .footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  display: block;
  margin-bottom: 12px;
  transition: color var(--transition);
}
.site-footer a:hover { color: var(--color-accent); }
.footer-badges { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.footer-badges img { max-height: 56px; width: auto; }
.footer-bottom {
  text-align: center;
  padding: 22px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ---- Pricing cards (chimney sweep) ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.pricing-card {
  border: 2px solid var(--color-border);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.pricing-card > .btn { margin-top: auto; }
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08); }
.pricing-card.featured { border-color: var(--color-accent); }
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  padding: 5px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  white-space: nowrap;
}
.pricing-card h3 { font-size: 22px; margin-bottom: 6px; }
.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  color: var(--color-navy);
  margin: 18px 0;
}
.pricing-card .price span { font-size: 15px; font-weight: 400; color: var(--color-grey); }
.pricing-card ul { margin: 24px 0; text-align: left; }
.pricing-card li {
  padding: 9px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.pricing-card li:last-child { border-bottom: none; }
.pricing-card li::before { content: '\2713'; color: var(--color-accent); font-weight: 700; }
.pricing-info { margin: 0 0 24px; text-align: left; border-top: 1px solid #f0f0f0; }
.pricing-info summary {
  list-style: none; cursor: pointer; padding: 14px 0 12px;
  font-family: var(--font-heading); font-weight: 600; font-size: 14px;
  color: var(--color-navy); display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
}
.pricing-info summary::-webkit-details-marker { display: none; }
.pricing-info summary::after {
  content: ''; width: 9px; height: 9px; flex-shrink: 0;
  border-right: 2px solid var(--color-accent); border-bottom: 2px solid var(--color-accent);
  transform: rotate(45deg); transition: transform var(--transition); margin-bottom: 3px;
}
.pricing-info[open] summary::after { transform: rotate(-135deg); margin-bottom: -3px; }
.pricing-info p { font-size: 13.5px; line-height: 1.5; color: var(--color-grey); margin: 0 0 6px; }

/* ---- Contact page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label { font-family: var(--font-heading); font-weight: 600; font-size: 14px; }
.form-row input, .form-row textarea, .form-row select {
  padding: 13px 16px;
  border: 1px solid var(--color-grey-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  width: 100%;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: 2px solid var(--color-navy);
  outline-offset: 1px;
}
.form-row textarea { min-height: 150px; resize: vertical; }

.contact-info-list { margin-top: 36px; display: flex; flex-direction: column; gap: 22px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.contact-info-item h4 { font-size: 15px; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { color: var(--color-grey); font-size: 14px; }

.map-embed { border-radius: 12px; overflow: hidden; margin-top: 36px; line-height: 0; }
.map-embed iframe { width: 100%; height: 360px; border: 0; display: block; }

/* ---- Promo page ---- */
.promo-hero {
  background: #14100c url('../images/promo-hero-stove.webp?v=20260626a') center / cover no-repeat;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 60px 0;
  text-align: left;
}
.promo-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,8,12,0.88) 0%, rgba(6,8,12,0.6) 36%, rgba(6,8,12,0.2) 62%, rgba(6,8,12,0) 82%); }
.promo-hero .container { position: relative; z-index: 2; width: 100%; }
.promo-hero .eyebrow { color: var(--color-accent); }
.promo-hero h1 { color: #fff; margin-bottom: 14px; max-width: 600px; }
.promo-hero p { font-size: 18px; max-width: 540px; margin: 0; color: rgba(255,255,255,0.92); }
.promo-hero .expiry {
  display: inline-block;
  margin-top: 22px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 8px 20px;
  border-radius: 20px;
}
@media (max-width: 1024px) { .promo-hero::before { background: linear-gradient(90deg, rgba(6,8,12,0.9) 0%, rgba(6,8,12,0.68) 55%, rgba(6,8,12,0.4) 100%); } }
@media (max-width: 768px) { .promo-hero { min-height: 400px; } }

.promo-product .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.promo-product .media { background: #16202e url('../images/shop-studio-bg.webp?v=20260624x') center bottom / cover no-repeat; border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 3; display: flex; align-items: flex-end; justify-content: center; }
.promo-product .media img { width: auto; max-width: 100%; height: 100%; object-fit: contain; object-position: center bottom; border-radius: 0; padding: 22px 22px 8px; box-sizing: border-box; }
.promo-product .price-tag {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--color-navy);
  margin: 16px 0;
}
.promo-product .price-tag span { font-size: 15px; font-weight: 400; color: var(--color-grey); }

.spec-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.spec-table th, .spec-table td {
  text-align: left;
  padding: 13px 18px;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
}
.spec-table th {
  width: 45%;
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-grey);
}

/* ---- Shop now ---- */
.shop-hero {
  background: #0c0e12 url('../images/shop-hero-showroom.webp?v=20260626a') center / cover no-repeat;
  color: #fff;
  text-align: left;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  padding: 48px 0;
}
.shop-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,8,12,0.9) 0%, rgba(6,8,12,0.62) 36%, rgba(6,8,12,0.22) 62%, rgba(6,8,12,0.05) 100%); }
.shop-hero .container { position: relative; z-index: 2; width: 100%; }
.shop-hero h1 { color: #fff; margin-bottom: 12px; }
.shop-hero p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0; }
@media (max-width: 1024px) { .shop-hero::before { background: linear-gradient(90deg, rgba(6,8,12,0.92) 0%, rgba(6,8,12,0.7) 55%, rgba(6,8,12,0.45) 100%); } }
@media (max-width: 768px) { .shop-hero { min-height: 300px; } }

.brand-nav {
  position: sticky;
  top: calc(var(--header-h) + var(--subnav-h));
  background: #fff;
  z-index: 90;
  border-bottom: 1px solid var(--color-border);
  overflow-x: auto;
  white-space: nowrap;
  padding: 16px 0;
}
.brand-nav .container { display: flex; gap: 12px; }
.brand-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-grey);
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  flex-shrink: 0;
}
.brand-nav a:hover, .brand-nav a.active { background: var(--color-navy); color: #fff; border-color: var(--color-navy); }

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 30px 0 0;
  flex-wrap: wrap;
}
.shop-toolbar p { color: var(--color-grey); font-size: 14px; }
.shop-toolbar #clear-search { display: none; }
.shop-toolbar #clear-search.is-visible { display: inline-flex; }

.brand-section { padding: 56px 0; border-bottom: 1px solid var(--color-border); }
.brand-section:last-of-type { border-bottom: none; }
.brand-section-head { margin-bottom: 30px; }
.brand-section-head h2 { font-size: 30px; margin-bottom: 6px; }
.brand-section-head p { color: var(--color-grey); font-size: 14px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
}
.product-card {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover { box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08); transform: translateY(-4px); }
.product-card .product-image { aspect-ratio: 4 / 3; background: #16202e url('../images/shop-studio-bg.webp?v=20260624x') center bottom / cover no-repeat; overflow: hidden; }
.product-card .product-image img { width: 100%; height: 100%; object-fit: cover; }
/* Transparent studio cutouts — grounded on the cropped hero backdrop for depth */
#firenzo .product-card .product-image img,
#woodsman .product-card .product-image img,
#wagener .product-card .product-image img,
#kent .product-card .product-image img { object-fit: contain; object-position: center bottom; padding: 16px 16px 6px; }
#wagener .product-card .product-image img { transform: scale(0.9); transform-origin: center bottom; }
/* Firenzo insert thumbnails are photos (not cutouts) — fill the tile */
#firenzo .product-card[data-slug="firenzo-topaz-insert"] .product-image img,
#firenzo .product-card[data-slug^="firenzo-kompact-"] .product-image img { object-fit: cover; object-position: center; padding: 0; }

/* Inserts-only toggle */
.insert-toggle { display: inline-flex; align-items: center; gap: 10px; background: none; border: 0; cursor: pointer; font-family: var(--font-heading); font-weight: 600; font-size: 14px; color: var(--color-navy-text); padding: 6px 2px; }
.insert-toggle-track { width: 42px; height: 24px; border-radius: 12px; background: var(--color-grey-light); position: relative; transition: background var(--transition); flex-shrink: 0; }
.insert-toggle-thumb { position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.3); transition: left var(--transition); }
.insert-toggle.is-on .insert-toggle-track { background: var(--color-accent); }
.insert-toggle.is-on .insert-toggle-thumb { left: 21px; }
.insert-toggle:hover { color: var(--color-accent); }

.product-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-card h3 { font-size: 18px; margin-bottom: 4px; }
.product-card .price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-accent);
  font-size: 20px;
  margin-bottom: 10px;
}
.product-card .price span { font-size: 12px; font-weight: 400; color: var(--color-grey); }
.product-card .badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.product-card .badge {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 4px;
  background: var(--color-bg-alt);
  color: var(--color-navy);
  font-weight: 600;
  font-family: var(--font-heading);
}
.product-card details {
  margin-top: auto;
  font-size: 13px;
  border-top: 1px solid var(--color-border);
  padding-top: 12px;
}
.product-card summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-card summary::-webkit-details-marker { display: none; }
.product-card summary::after { content: '\25BE'; color: var(--color-accent); }
.product-card details[open] summary::after { content: '\25B4'; }
.product-card .spec-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed var(--color-border);
  color: var(--color-grey);
  gap: 12px;
}
.product-card .spec-row:last-child { border-bottom: none; }
.product-card .spec-row span:last-child { color: var(--color-black); text-align: right; }
.product-card.is-hidden { display: none; }
.product-grid > .is-hidden { display: none !important; }
.spec-table .spec-download { color: inherit; text-decoration: none; font-weight: inherit; }
.spec-table .spec-download:hover { color: inherit; text-decoration: none; }

.no-results {
  text-align: center;
  color: var(--color-grey);
  padding: 60px 0;
  display: none;
}
.no-results.is-visible { display: block; }

/* ---- Category circle menu ---- */
.category-menu { padding: 56px 0; text-align: center; }
.category-circles {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.category-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-navy);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.category-circle .circle {
  width: 92px; height: 92px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.category-circle .circle svg { width: 48px; height: 48px; display: block; }
.category-circle .circle img { width: 44px; height: 44px; object-fit: contain; display: block; }
.category-circle:hover, .category-circle.is-active { color: var(--color-accent); }
.category-circle:hover .circle, .category-circle.is-active .circle { border-color: var(--color-accent); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .header-search { display: none; }
  .header-actions .btn-outline { display: none; }
  .split-section .container,
  .contact-grid,
  .promo-product .container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .split-section.reverse .media { order: 1; }
  .split-section.reverse .copy { order: 2; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 778px) {
  .header-actions .btn-solid { display: none; }
  .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .sub-nav-inner { gap: 14px; }
  .sub-nav a { font-size: 15px; }
  .sub-nav .divider { font-size: 18px; }
}

@media (max-width: 768px) {
  /* Sub-nav (mobile, 2 items): equal spacing + matching label fonts */
  .sub-nav-inner { gap: 0; justify-content: space-evenly; padding-left: 0; padding-right: 0; }
  .sub-nav a, .mega-trigger { font-size: 15px; }
}

@media (max-width: 768px) {
  /* Mobile banners: show only the primary CTA + copy (desktop unaffected) */
  .home-hero .hero-trust { display: none; }
  .home-hero .btn-row .btn-outline-light { display: none; }
  .hero-sweep .btn-row a[href^="tel:"] { display: none; }
  .hero-contact .btn-row a[href="#enquiry"] { display: none; }
}

@media (max-width: 768px) {
  /* Tidy two-up thumbnail grid on mobile */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

@media (max-width: 480px) {
  .logo img { width: 170px; }
  .footer-inner { grid-template-columns: 1fr; }
  .trust-badges { gap: 30px; }
  .section { padding: 50px 0; }
  .pricing-card.featured { margin-top: 14px; }
}

/* ---- Breadcrumbs (minimal) ---- */
.breadcrumb { background: var(--color-bg-alt); border-bottom: 1px solid var(--color-border); }
.breadcrumb .container { padding-top: 9px; padding-bottom: 9px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 13px; }
.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb li:not(:last-child)::after { content: "/"; color: var(--color-grey-light); }
.breadcrumb a { color: var(--color-grey); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb [aria-current="page"] { color: var(--color-navy-text); font-weight: 500; }
@media (max-width: 768px) { .breadcrumb ol { font-size: 12px; gap: 5px; } }
