/* =========================================
   Mukluk Wood Stoves - storefront
   ========================================= */
@import url('/css/fonts.css');
@import url('/css/extra.css');

/* --- RESET & BASE --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Palette */
  --bg:          #FAF9F6;
  --bg-alt:      #F0EDE8;
  --bg-dark:     #1A1A1A;
  --bg-dark-alt: #242424;
  --text:        #2D2D2D;
  --text-muted:  #7A756E;
  --text-light:  #F5F0EB;
  --accent:      #C8956C;
  --accent-hover:#B5804F;
  --ember:       #E07A3A;
  --gold:        #D4A853;
  --border:      #E4DFD8;
  --white:       #FFFFFF;

  /* Typography */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-pad: 100px 0;
  --container-max: 1200px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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


/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.4s var(--ease);
  background: transparent;
}

.nav.scrolled {
  background: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffd4a8 0%, var(--ember) 45%, #4a1810 100%);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12), 0 0 20px rgba(224, 122, 58, 0.35);
  flex-shrink: 0;
}

.nav.scrolled .nav__logo-mark {
  box-shadow: 0 0 0 2px rgba(45, 45, 45, 0.08), 0 0 14px rgba(224, 122, 58, 0.25);
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-light);
  transition: color 0.4s var(--ease);
}

.nav.scrolled .nav__logo-text {
  color: var(--text);
}

.nav__links {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(245, 240, 235, 0.8);
  transition: color 0.3s var(--ease);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}

.nav__link:hover::after {
  width: 100%;
}

.nav.scrolled .nav__link {
  color: var(--text-muted);
}

.nav__link:hover,
.nav.scrolled .nav__link:hover {
  color: var(--accent);
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  margin-right: -10px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav.scrolled .nav__toggle span {
  background: var(--text);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-align: center;
  letter-spacing: 0.01em;
}

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

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200, 149, 108, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(245, 240, 235, 0.35);
}

.btn--ghost:hover {
  border-color: var(--text-light);
  background: rgba(245, 240, 235, 0.08);
}

.btn--buy {
  width: 100%;
  background: var(--bg-dark);
  color: var(--text-light);
  font-size: 1.0625rem;
  font-weight: 600;
  padding: 19px 32px;
  border-radius: 12px;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(26, 26, 26, 0.12),
    0 8px 24px rgba(26, 26, 26, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: all 0.25s var(--ease);
}

.btn--buy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.btn--buy:hover {
  background: #2c2c2c;
  transform: translateY(-2px);
  box-shadow:
    0 4px 8px rgba(26, 26, 26, 0.15),
    0 16px 40px rgba(26, 26, 26, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn--buy:active {
  transform: translateY(0);
  box-shadow:
    0 1px 2px rgba(26, 26, 26, 0.2),
    0 4px 12px rgba(26, 26, 26, 0.1),
    inset 0 1px 3px rgba(0, 0, 0, 0.15);
  transition-duration: 0.08s;
}

.btn--lg {
  padding: 18px 44px;
  font-size: 1rem;
}


/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg, #0f0e0c 0%, #1a1512 38%, #241c18 55%, #0d0c0b 100%),
    radial-gradient(ellipse 90% 70% at 20% 80%, rgba(224, 122, 58, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 25%, rgba(200, 149, 108, 0.12) 0%, transparent 50%);
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(212, 168, 83, 0.08) 0%, transparent 45%),
    linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 42%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.07;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 720px;
}

.hero__content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 88px;
  width: 3px;
  height: min(52vh, 320px);
  border-radius: 3px;
  background: linear-gradient(180deg, var(--ember), transparent);
  opacity: 0.55;
  pointer-events: none;
}

.hero__tag {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero__delivery-banner {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(245, 240, 235, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 18px;
  backdrop-filter: blur(6px);
}

.hero__delivery-banner strong {
  color: #e8a04a;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(245, 240, 235, 0.7);
  margin-bottom: 40px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.hero__badges {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(245, 240, 235, 0.6);
}

.hero__badge svg {
  color: var(--accent);
  flex-shrink: 0;
}

.hero__badge--freight .asterisk-footnote--on-dark {
  margin-left: 4px;
  font-size: 0.75rem;
  padding: 2px 5px;
}

/* --- Freight footnote (dialog + inline *) --- */
.asterisk-footnote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 2px 4px;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: var(--accent, #b5722a);
  font-weight: 600;
  font-size: 0.8125rem;
  line-height: 1.2;
  cursor: pointer;
  font-family: inherit;
  vertical-align: baseline;
  position: relative;
  top: 0;
  white-space: nowrap;
}

/* Author `display: inline-flex` must not defeat the HTML `hidden` attribute (e.g. pickup ticked) */
.asterisk-footnote[hidden] {
  display: none !important;
}

.asterisk-footnote:hover {
  text-decoration: underline;
}

.asterisk-footnote:focus-visible {
  outline: 2px solid var(--accent, #b5722a);
  outline-offset: 2px;
  border-radius: 2px;
}

.asterisk-footnote--on-light {
  color: var(--accent, #b5722a);
}

.asterisk-footnote--on-dark {
  color: rgba(255, 210, 170, 0.95);
}

.asterisk-footnote--on-dark:hover {
  color: #fff;
}

.footnote-dialog {
  position: fixed;
  width: min(22rem, calc(100vw - 24px));
  max-height: min(72vh, 28rem);
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg, #faf8f5);
  color: var(--text);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  top: var(--footnote-top, 12vh);
  left: var(--footnote-left, 12px);
  right: auto;
  translate: 0 0;
  overflow: auto;
}

.footnote-dialog::backdrop {
  background: rgba(10, 8, 6, 0.38);
}

.footnote-dialog__inner {
  padding: 14px 18px 14px;
}

.footnote-dialog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.footnote-dialog__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.25;
  padding-top: 2px;
}

.footnote-dialog__close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.footnote-dialog__close:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--text);
}

.footnote-dialog__close:focus-visible {
  outline: 2px solid var(--accent, #b5722a);
  outline-offset: 2px;
}

.footnote-dialog__text {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 12px;
}

.footnote-dialog__text:last-of-type {
  margin-bottom: 14px;
}

.footnote-dialog__text a {
  color: var(--accent);
  font-weight: 600;
}

.footnote-dialog__actions {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
}

.footnote-dialog--center {
  top: auto;
  left: auto;
  right: auto;
  inset: 0;
  margin: auto;
  translate: 0 0;
  width: min(24rem, calc(100vw - 24px));
  max-height: min(85vh, 32rem);
}

.legal .asterisk-footnote {
  font-size: 0.8125rem;
}

/* --- SECTION TITLES --- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}


/* --- PRODUCT --- */
.product {
  padding: var(--section-pad);
}

.product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.product__gallery {
  position: sticky;
  top: 32px;
}

.product__photo-note {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* Gallery */
.product__main-image {
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.product__thumb {
  flex: 1;
  aspect-ratio: 1;
  background: var(--bg-alt);
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}

.product__thumb:hover {
  border-color: var(--border);
}

.product__thumb.active {
  border-color: var(--accent);
}

.product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Details */
.product__category {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.product__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.product__lead {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0 0 20px;
}

.product__lead strong {
  color: var(--text);
}

.product__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.stars {
  display: flex;
  gap: 2px;
}

.product__review-count {
  font-size: 0.875rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}

.product__review-count:hover {
  color: var(--accent);
}

.product__price-block {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  margin-bottom: 20px;
}

.product__price {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color 0.25s ease;
}

.product__price-block--pickup .product__price {
  color: var(--accent, #b5722a);
}

.product__price-block--pickup #priceNoteFreightNote {
  display: none !important;
}

.product__price-original {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.7;
}

.product__price-note-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 2px 4px;
  width: 100%;
}

.product__price-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.25s ease;
}

.product__desc {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.65;
}

.product__desc a {
  color: var(--accent);
  font-weight: 600;
}

.product__desc a:hover {
  color: var(--accent-hover);
}

.product__fits {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #3D7A4A;
  background: #F0F7F1;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 28px;
}

.product__fits svg {
  flex-shrink: 0;
  color: #3D7A4A;
}

.product__fits--stove {
  color: #5c4a38;
  background: linear-gradient(135deg, #faf6f0 0%, #f2ebe3 100%);
  border: 1px solid var(--border);
}

.product__fits--stove svg {
  color: var(--ember);
}

/* Size picker */
.size-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.size-card {
  text-align: left;
  padding: 16px 18px;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.size-card:hover {
  border-color: #d4cec4;
}

.size-card.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(200, 149, 108, 0.2);
}

.size-card__name {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text);
}

.size-card__dims {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 10px;
}

.size-card__sub {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.85;
  margin-bottom: 8px;
}

.size-card__price {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
}

/* Colour Picker */
.product__option {
  margin-bottom: 28px;
}

.product__option-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: block;
}

.product__option-label strong {
  color: var(--text);
}

.product__colours {
  display: flex;
  gap: 12px;
}

.colour-swatch {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  outline: none;
  position: relative;
}

.colour-swatch::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 0.3s var(--ease);
}

.colour-swatch.active::after {
  border-color: var(--accent);
}

.colour-swatch--light {
  box-shadow: inset 0 0 0 1px rgba(45, 45, 45, 0.12);
}

.colour-swatch:hover {
  transform: scale(1.08);
}

/* Buy note */
.product__buy-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.55;
  text-align: center;
  letter-spacing: 0.005em;
}

.product__buy-note strong {
  font-weight: 600;
  color: var(--text);
}

/* Accordions */
.product__accordions {
  margin-top: 40px;
  border-top: 1.5px solid var(--border);
}

.accordion {
  border-bottom: 1px solid var(--border);
}

.accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  list-style: none;
  user-select: none;
  transition: color 0.2s var(--ease);
}

.accordion__header:hover {
  color: var(--accent-hover);
}

.accordion__header::-webkit-details-marker {
  display: none;
}

.accordion__header svg {
  color: var(--text-muted);
  transition: transform 0.35s var(--ease), color 0.2s var(--ease);
  flex-shrink: 0;
}

.accordion__header:hover svg {
  color: var(--accent);
}

.accordion[open] .accordion__header svg {
  transform: rotate(180deg);
}

.accordion__body {
  padding-bottom: 22px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.accordion__body a {
  color: var(--accent);
  font-weight: 600;
}

.accordion__body a:hover {
  color: var(--accent-hover);
}

.accordion__body ul,
.accordion__body ol {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accordion__body ul li {
  list-style: none;
}

.accordion__body ol {
  counter-reset: step;
}

.accordion__body ol li {
  counter-increment: step;
  list-style: none;
}

.accordion__body ol li::before {
  content: counter(step) ".";
  font-weight: 600;
  color: var(--accent);
  margin-right: 8px;
}

.accordion__note {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  opacity: 0.8;
}

.accordion__img {
  width: 100%;
  max-width: 420px;
  margin-top: 16px;
  border-radius: 10px;
  display: block;
}


/* --- FEATURES --- */
.features {
  padding: 80px 0 90px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.features__header {
  margin-bottom: 48px;
  max-width: 560px;
}

.features__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 12px;
}

.features__sub {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.features__sub strong {
  color: var(--text);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.features__grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.features__grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  padding: 0 32px;
  border-left: 1px solid var(--border);
  position: relative;
  transition: none;
  border-radius: 0;
  background: none;
}

.feature-card:first-child {
  border-left: none;
  padding-left: 0;
}

.feature-card:last-child {
  padding-right: 0;
}

.feature-card:hover {
  transform: none;
  box-shadow: none;
}

.feature-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border-radius: 0;
  margin-bottom: 16px;
  color: var(--accent);
}

.feature-card__icon svg {
  stroke: var(--accent);
}

.feature-card__title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature-card__text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* --- GALLERY --- */
.gallery {
  padding: var(--section-pad);
  background: var(--bg-alt);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery__item {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease);
  background: var(--bg);
}

.gallery__item:hover {
  transform: scale(1.02);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* --- REVIEWS --- */
.reviews {
  padding: var(--section-pad);
}

.reviews__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 24px;
}

.reviews__header .section-subtitle {
  margin-bottom: 0;
}

.reviews__summary {
  text-align: right;
}

.reviews__header {
  align-items: center;
}

.reviews__score {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.reviews__score-detail {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.reviews__score-detail span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.reviews__grid--two {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.reviews__grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.4s var(--ease);
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9375rem;
  flex-shrink: 0;
}

.review-card__name {
  font-weight: 600;
  font-size: 0.9375rem;
}

.review-card__meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.stars--sm {
  margin-bottom: 12px;
}

.review-card__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}


/* --- CHECKOUT (inside product details) --- */
.pickup-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 14px 18px;
  border-radius: 11px;
  border: 1.5px solid var(--border);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.pickup-row:hover {
  border-color: #c4b8a8;
  box-shadow: 0 2px 8px rgba(45, 45, 45, 0.04);
}

.pickup-row:has(input:checked) {
  border-color: var(--accent, #b5722a);
  background: rgba(200, 149, 108, 0.04);
  box-shadow: 0 0 0 3px rgba(200, 149, 108, 0.08);
}

.pickup-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent, #b5722a);
  flex-shrink: 0;
}

.pickup-row__text {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.pickup-row__text strong {
  color: var(--text);
}

.price-breakdown {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 20px;
  background: linear-gradient(165deg, var(--bg-alt) 0%, rgba(240, 237, 232, 0.5) 100%);
  box-shadow:
    0 1px 3px rgba(45, 45, 45, 0.04),
    0 4px 12px rgba(45, 45, 45, 0.02);
  position: relative;
  overflow: hidden;
}

.price-breakdown::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(160deg, rgba(200, 149, 108, 0.12), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.price-breakdown__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 0.9375rem;
  padding: 7px 0;
  letter-spacing: -0.005em;
}

.price-breakdown__row[hidden] {
  display: none !important;
}

.price-breakdown__row--muted {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.price-breakdown__row--discount {
  color: var(--accent, #b5722a);
  font-size: 0.875rem;
  font-weight: 600;
}

.price-breakdown__rule {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 8px 0 0;
  height: 0;
}

.price-breakdown__row--total {
  margin-top: 8px;
  padding-top: 14px;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.price-breakdown__row--total strong {
  font-size: 1.125rem;
  color: var(--text);
}

.product__checkout {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.product__promo {
  margin-top: 12px;
  text-align: center;
}

.product__promo-toggle {
  background: none;
  border: none;
  padding: 4px 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.2s var(--ease);
}

.product__promo-toggle:hover {
  color: var(--text);
}

.product__promo-input {
  margin-top: 8px;
}

.product__promo-input input {
  width: 100%;
  max-width: 240px;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  outline: none;
  background: var(--white);
  transition: border-color 0.2s var(--ease);
}

.product__promo-input input:focus {
  border-color: var(--accent);
}

.product__checkout-error { margin-top: 12px; }
.product__checkout-error:empty { margin-top: 0; }

.checkout__error {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #FDF2F2;
  color: #b94a48;
  border-radius: 8px;
  font-size: 0.8125rem;
}

.checkout__error svg { flex-shrink: 0; }

.newsletter-signup {
  margin-top: 14px;
}

.newsletter-signup__teaser {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

.newsletter-signup__link {
  color: var(--accent, #b5722a);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.2s var(--ease);
}

.newsletter-signup__link:hover,
.newsletter-signup__link:focus-visible {
  color: var(--text);
}

.newsletter-signup__panel[hidden] {
  display: none;
}

.newsletter-signup__panel:not([hidden]) {
  display: block;
  margin-top: 10px;
}

.newsletter-signup__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(240, 237, 232, 0.55);
  border: 1px solid rgba(228, 223, 216, 0.7);
}

.newsletter-signup__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.newsletter-signup__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
}

.newsletter-signup__optional {
  font-weight: 400;
  color: var(--text-muted);
}

.newsletter-signup__field input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.newsletter-signup__field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 149, 108, 0.18);
}

.newsletter-signup__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.newsletter-signup__submit {
  margin-top: 2px;
}

.newsletter-signup__status {
  min-height: 0;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-muted);
  text-align: center;
}

.newsletter-signup__status:not(:empty) {
  min-height: 1.45em;
}

.newsletter-signup__status[data-state="err"] {
  color: #B5403A;
}

.newsletter-signup__success {
  margin-top: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(45, 122, 58, 0.08);
  border: 1px solid rgba(45, 122, 58, 0.18);
  font-size: 0.875rem;
  line-height: 1.55;
  color: #2D7A3A;
  text-align: center;
}


/* --- FAQ --- */
.faq {
  padding: var(--section-pad);
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.faq .section-title {
  text-align: center;
}

.faq .section-subtitle {
  text-align: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.faq__intro {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 28px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq__summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}

.faq__summary::-webkit-details-marker {
  display: none;
}

.faq__summary::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: -4px;
  transition: transform 0.25s var(--ease);
}

.faq__item[open] .faq__summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.faq__body {
  padding: 0 22px 22px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.faq__body p + p {
  margin-top: 14px;
}

.faq__body strong {
  color: var(--text);
}

.faq__body a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq__body a:hover {
  color: var(--accent-hover);
}

.faq__body-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  font-style: italic;
  opacity: 0.9;
}


/* --- CTA --- */
.cta {
  padding: 100px 0;
  background: var(--bg-dark);
  text-align: center;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta__text {
  font-size: 1.0625rem;
  color: rgba(245, 240, 235, 0.6);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta__text strong { color: var(--text-light); }

.cta__actions {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}


/* --- FOOTER --- */
.footer {
  padding: 64px 0 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__brand .nav__logo-text {
  color: var(--text-light);
  display: block;
  margin-bottom: 12px;
}

.footer__brand p {
  font-size: 0.875rem;
  color: rgba(245, 240, 235, 0.45);
  line-height: 1.6;
}

.footer__links h4,
.footer__contact h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.5);
  margin-bottom: 16px;
}

.footer__links a {
  display: block;
  font-size: 0.875rem;
  color: rgba(245, 240, 235, 0.65);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__contact a {
  font-size: 0.875rem;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.footer__contact p {
  font-size: 0.8125rem;
  color: rgba(245, 240, 235, 0.45);
}

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245, 240, 235, 0.08);
  color: rgba(245, 240, 235, 0.5);
  margin-top: 12px;
  transition: all 0.3s var(--ease);
}

.footer__social:hover {
  background: #1877F2;
  color: var(--white);
}

.footer__bottom {
  padding: 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__bottom-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(245, 240, 235, 0.3);
  margin: 0;
}

.footer__legal-links {
  display: inline-flex;
  gap: 18px;
}

.footer__legal-links a {
  font-size: 0.8125rem;
  color: rgba(245, 240, 235, 0.5);
  transition: color 0.3s var(--ease);
}

.footer__legal-links a:hover { color: var(--accent); }

.footer__credit a {
  color: rgba(245, 240, 235, 0.5);
  transition: color 0.3s var(--ease);
}

.footer__credit a:hover { color: var(--accent); }

.footer__col h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 240, 235, 0.5);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(245, 240, 235, 0.65);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer__col a:hover { color: var(--accent); }

.footer__small {
  font-size: 0.75rem;
  color: rgba(245, 240, 235, 0.35);
  line-height: 1.6;
  margin-top: 8px;
}


/* =========================================
   ANIMATIONS
   ========================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .product__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product__gallery {
    position: static;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-card {
    border-left: none;
    padding: 0;
    padding-left: 24px;
    border-left: 2px solid var(--border);
  }

  .feature-card:first-child {
    padding-left: 24px;
    border-left: 2px solid var(--border);
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 72px 0;
  }

  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 249, 246, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 99;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links.open .nav__link {
    color: var(--text);
    font-size: 1.25rem;
  }

  .nav__toggle {
    display: flex;
    z-index: 101;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__delivery-banner {
    font-size: 0.75rem;
    padding: 7px 14px;
  }

  .hero__badges {
    flex-direction: column;
    gap: 16px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .reviews__summary {
    text-align: left;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .hero__delivery-banner {
    font-size: 0.6875rem;
    padding: 6px 10px;
  }

  .product__title {
    font-size: 1.5rem;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }
}

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 149, 108, 0.35);
}


/* =========================================
   EYEBROW & SECTION TITLE VARIANTS
   ========================================= */
.hero--home {
  /* Full viewport so body (--bg cream) never shows as a strip under the hero */
  min-height: 100vh;
  background-color: #0f0e0c;
}

/* Home hero uses an inline <img> + inline gradient overlay (no CSS bg) */
.hero--home .hero__bg {
  display: none;
}

.hero--home .hero__grain {
  display: none;
}

.hero--home .hero__title {
  max-width: 14ch;
}

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

.eyebrow--center {
  display: block;
  text-align: center;
}

.section-title--center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle--center {
  text-align: center;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}


/* =========================================
   NAV — solid variant for inner pages
   ========================================= */
.nav--solid {
  background: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav--solid .nav__logo-text { color: var(--text); }
.nav--solid .nav__logo-mark {
  box-shadow: 0 0 0 2px rgba(45, 45, 45, 0.08), 0 0 14px rgba(224, 122, 58, 0.25);
}
.nav--solid .nav__link { color: var(--text-muted); }
.nav--solid .nav__toggle span { background: var(--text); }

.nav__link--active {
  color: var(--accent) !important;
}
.nav__link--active::after {
  width: 100% !important;
}


/* =========================================
   BREADCRUMB
   ========================================= */
.breadcrumb {
  padding: 84px 0 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.breadcrumb .container {
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--accent); }

.breadcrumb [aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}


/* =========================================
   STOVES SECTION (homepage chooser)
   ========================================= */
.stoves {
  padding: var(--section-pad);
  background: var(--bg);
}

.stoves__intro {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}

.stoves__intro .section-title {
  margin-bottom: 14px;
}

.stoves__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.stove-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.stove-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(26, 26, 26, 0.10);
  border-color: var(--accent);
}

.stove-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
  overflow: hidden;
}

.stove-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.stove-card:hover .stove-card__media img {
  transform: scale(1.03);
}

.stove-card__pill {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  background: rgba(20, 18, 16, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 12px;
  border-radius: 999px;
}

.stove-card__body {
  padding: 28px 28px 8px;
  flex: 1;
}

.stove-card__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.stove-card__title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.stove-card__desc {
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.65;
  font-size: 0.9375rem;
}

.stove-card__specs {
  margin: 0 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--border);
}

.stove-card__specs li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 9px 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  list-style: none;
}

.stove-card__specs li + li {
  border-top: 1px dashed var(--border);
}

.stove-card__specs strong {
  color: var(--text);
  font-weight: 600;
}

.stove-card__specs span {
  text-align: right;
}

.stove-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px 28px;
  border-top: 1px solid var(--border);
  margin-top: 22px;
  flex-wrap: wrap;
}

.stove-card__price {
  display: block;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.stove-card__price-note {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.stove-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.25s var(--ease);
}

.stove-card:hover .stove-card__cta {
  gap: 10px;
}

.stoves__note {
  margin: 40px auto 0;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 560px;
}

.stoves__note a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.stoves__note a:hover { color: var(--accent-hover); }


/* =========================================
   COMPARE strip (between product page & footer)
   ========================================= */
.compare {
  padding: 56px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.compare__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.compare__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 4px 0 8px;
}

.compare__text {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0;
}

.compare__text strong { color: var(--text); }


/* =========================================
   GALLERY adjustments
   ========================================= */
.gallery__item--tall {
  grid-row: span 2;
}

.gallery {
  background: var(--bg);
}


/* =========================================
   PRODUCT spec-list
   ========================================= */
.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 11px 0;
  font-size: 0.9375rem;
  border-bottom: 1px dashed var(--border);
  list-style: none;
}

.spec-list li:last-child {
  border-bottom: none;
}

.spec-list strong {
  color: var(--text);
  font-weight: 600;
}

.spec-list span {
  color: var(--text-muted);
  text-align: right;
}


/* =========================================
   LEGAL pages
   ========================================= */
.legal {
  padding: 120px 0 80px;
  background: var(--bg);
}

.legal__container {
  max-width: 760px;
}

.legal__header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.legal__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 4px 0 14px;
}

.legal__updated {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.legal__lede {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text);
}

.legal section {
  margin-bottom: 36px;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.legal p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 14px;
}

.legal ul,
.legal ol {
  margin: 8px 0 16px 0;
  padding-left: 22px;
}

.legal ul li,
.legal ol li {
  list-style: disc;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 8px;
}

.legal ol li { list-style: decimal; }

.legal a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal a:hover { color: var(--accent-hover); }

.legal strong { font-weight: 600; }


/* =========================================
   RESPONSIVE additions
   ========================================= */
@media (max-width: 1024px) {
  .stoves__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features__grid--four {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews__grid--three {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .gallery__item--tall {
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .breadcrumb {
    padding-top: 76px;
  }

  .breadcrumb .container {
    font-size: 0.75rem;
    gap: 6px;
  }

  .compare__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .compare__inner .btn { width: 100%; }

  .stove-card__title { font-size: 1.625rem; }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal {
    padding: 100px 0 64px;
  }
}



/* =========================================
   MOBILE POLISH (final pass)
   ========================================= */
html { -webkit-text-size-adjust: 100%; }

body {
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img, video, iframe { max-width: 100%; height: auto; }

/* Use small viewport units so mobile browser chrome doesn't push content */
@supports (height: 100svh) {
  .hero { min-height: 100svh; }
  .hero--home { min-height: 100svh; }
}

/* Tablet & below */
@media (max-width: 1024px) {
  .hero__content {
    padding-top: 110px;
    padding-bottom: 64px;
  }

  .stove-card__body { padding: 24px 22px 4px; }
  .stove-card__foot { padding: 18px 22px 22px; }

  .product__main-image { aspect-ratio: 4 / 3; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --section-pad: 64px 0; }

  .container { padding: 0 18px; }

  .nav { padding: 12px 0; }
  .nav.scrolled { padding: 10px 0; }
  .nav__logo-text { font-size: 1.15rem; }

  /* Home hero: keep at least full viewport so the image/gradient always meets the bottom edge */
  .hero--home {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero__content {
    padding-top: 96px;
    padding-bottom: 56px;
    max-width: 100%;
  }
  .hero__content::before { display: none; }
  .hero__title { font-size: 2.25rem; line-height: 1.12; }
  .hero--home .hero__title { max-width: none; }
  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 28px;
    line-height: 1.6;
  }
  .hero__actions { margin-bottom: 36px; gap: 12px; }
  .hero__delivery-banner {
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }
  .hero__tag { margin-bottom: 14px; }
  .hero__badges { gap: 14px; }
  .hero__badge { font-size: 0.8125rem; }

  /* Section titles tighten */
  .section-subtitle { margin-bottom: 32px; }

  /* Product page */
  .product__grid { gap: 32px; }
  .product__title { font-size: 1.75rem; }
  .product__price { font-size: 1.75rem; }
  .product__price-block { gap: 8px; }
  .product__thumbs { gap: 8px; }
  .product__lead { font-size: 0.9375rem; }
  .accordion__header { padding: 16px 0; font-size: 0.9375rem; }
  .product__accordions { margin-top: 24px; }
  .pickup-row { padding: 12px 14px; }
  .price-breakdown { padding: 14px 16px; }
  .btn--buy { padding: 16px 24px; }

  /* Stove chooser cards */
  .stoves__grid { gap: 16px; }
  .stove-card__body { padding: 22px 20px 4px; }
  .stove-card__title { font-size: 1.5rem; margin-bottom: 10px; }
  .stove-card__desc { margin-bottom: 18px; font-size: 0.9375rem; }
  .stove-card__foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px 22px;
    margin-top: 18px;
  }
  .stove-card__pill { top: 14px; left: 14px; font-size: 0.625rem; padding: 6px 10px; }
  .stoves__intro { margin-bottom: 36px; }

  /* Reviews summary alignment */
  .reviews__header { align-items: flex-start; }
  .reviews__summary { text-align: left; }
  .reviews__score-detail { align-items: flex-start; }
  .reviews__score { font-size: 2rem; }

  /* Compare strip already stacks; ensure title scales */
  .compare { padding: 40px 0; }
  .compare__title { font-size: 1.25rem; }

  /* Features padding tighter */
  .feature-card { padding: 26px 22px; }

  /* Gallery tighter gaps */
  .gallery__grid { gap: 12px; }

  /* Footer */
  .footer { padding: 56px 0 28px; }
  .footer__bottom { gap: 14px; padding-top: 20px; }
  .footer__bottom p { font-size: 0.75rem; }
  .footer__legal-links { flex-wrap: wrap; gap: 14px; }

  /* Legal pages */
  .legal__title { margin-bottom: 10px; }
  .legal__lede { font-size: 1rem; }
  .legal h2 { font-size: 1.1875rem; }
  .legal section { margin-bottom: 28px; }

  /* Back-to-top safer position */
  .back-to-top {
    bottom: 20px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero__title { font-size: 1.875rem; }
  .hero__subtitle { font-size: 0.9375rem; }
  .hero__delivery-banner {
    font-size: 0.6875rem;
    padding: 6px 12px;
  }

  .section-title { font-size: 1.5rem; }

  .product__title { font-size: 1.5rem; }
  .product__price { font-size: 1.5rem; }
  .size-picker { grid-template-columns: 1fr; }
  /* Keep colour swatches at the 44x44 tap-target minimum on small phones */
  .colour-swatch { width: 44px; height: 44px; }

  .stove-card__title { font-size: 1.375rem; }
  .stove-card__price { font-size: 1.375rem; }

  .reviews__score { font-size: 1.75rem; }
  .review-card { padding: 22px 20px; }

  .feature-card { padding: 22px 20px; }
  .feature-card__icon { width: 44px; height: 44px; margin-bottom: 14px; }

  .legal { padding: 88px 0 56px; }
  .legal__title { font-size: 1.875rem; }

  .footer__legal-links { font-size: 0.75rem; }
}

/* --- Payment method badges (must follow global img rules) --- */
.payment-logos {
  width: 100%;
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.payment-logos__row {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  max-width: 100%;
}

.payment-logos__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 54px;
  height: 34px;
  padding: 5px 6px;
  background: var(--white);
  border: 1px solid rgba(26, 25, 23, 0.1);
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(26, 25, 23, 0.05);
}

.payment-logos__badge--afterpay {
  width: auto;
  min-width: 86px;
  height: 34px;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.payment-logos .payment-logos__img {
  display: block;
  width: auto;
  height: 22px;
  max-width: none;
  max-height: 100%;
  object-fit: contain;
}

.payment-logos .payment-logos__img--afterpay {
  height: 34px;
  width: auto;
}

