/* ── SKIP NAV (accessibility) ─────────────────────── */
.b-skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: #cc0000;
  color: #ffffff;
  padding: 8px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 9999;
}
.b-skip-link:focus { top: 0; }

/* ── FOCUS STYLES (accessibility) ─────────────────── */
:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px #cc0000;
}

/* ── RESET ───────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #e0e0e0;
  padding: 0;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
}

/* ── WRAP ────────────────────────────────────────── */
.b-wrap {
  background: #ffffff;
  color: #0a0a0a;
  width: 100%;
  overflow-x: hidden;
}

/* ── MASTHEAD ────────────────────────────────────── */
.b-masthead {
  background: #0a0a0a;
  display: flex;
  align-items: center;
  border-bottom: 4px solid #0a0a0a;
  padding: clamp(12px, 2vw, 20px) clamp(16px, 3vw, 32px);
}

.b-masthead img {
  height: clamp(36px, 5vw, 56px);
  display: block;
}

/* ── NAV ─────────────────────────────────────────── */
.b-nav {
  display: flex;
  border-bottom: 4px solid #0a0a0a;
  background: #ffffff;
  overflow-x: auto;
}

.b-nav-wrap {
  position: relative;
  border-bottom: 4px solid #0a0a0a;
}

.b-nav-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(to right, transparent, #ffffff);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.b-nav-wrap.is-scrolled-end::after {
  opacity: 0;
}

.b-nav-arrow {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #0a0a0a;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.b-nav-wrap.is-scrolled-end .b-nav-arrow {
  opacity: 0;
}

.b-nav-item {
  flex: 1;
  text-align: center;
  padding: 11px 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.2vw, 16px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-right: 3px solid #0a0a0a;
  color: #0a0a0a;
  white-space: nowrap;
  text-decoration: none;
  min-width: fit-content;
}

.b-nav-item:last-child { border-right: none; }
.b-nav-item.active { background: #cc0000; color: #ffffff; }
.b-nav-item:hover { background: #cc0000; color: #ffffff; cursor: pointer; }

/* ── HERO ────────────────────────────────────────── */
.b-hero-row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 0px minmax(240px, 1fr);
  border-bottom: none;
}

.b-hero-divider {
  background: transparent;
  width: 0;
}

.b-hero {
  padding: clamp(20px, 3vw, 32px);
  min-width: 0;
}

.b-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 7vw, 80px);
  line-height: 0.93;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.b-deck {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 20px);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-top: 3px solid #0a0a0a;
  border-bottom: 3px solid #0a0a0a;
  padding: 10px 0;
  margin: 0 0 20px;
}

.b-body {
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.7;
}

.b-body p + p {
  margin-top: 1em;
}

/* ── URBAN DICTIONARY ────────────────────────────── */
.b-ud-strip {
  display: flex;
  flex-direction: column;
  border-bottom: none;
  background: #cc0000;
  flex: 1;  
}

.b-ud-label-col {
  background: #cc0000;
  padding: clamp(14px, 2vw, 20px) clamp(16px, 2.5vw, 24px);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  border-bottom: 4px solid #0a0a0a;
}

.b-ud-label-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 2.5vw, 34px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.b-ud-content {
  padding: clamp(20px, 3vw, 32px) clamp(16px, 2.5vw, 24px);
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.b-ud-word {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  text-transform: uppercase;
  line-height: 1;
  color: #ffffff;
}

.b-ud-def {
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.3;
  margin: 4px 0 28px;
  font-style: normal;
  color: #ffffff;
}

.b-ud-eg-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin: 24px 0 8px 0;
}

.b-ud-eg {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  color: #ffffff;
}

.b-ud-related {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.b-ud-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #cc0000;
  background: #ffffff;
  padding: 4px 10px;
}

.b-ud-contributor {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  padding: clamp(14px, 2vw, 20px) clamp(16px, 2.5vw, 24px) clamp(14px, 2vw, 20px) 0;
}

/* ── STATS ───────────────────────────────────────── */
.b-stats-wrap {
  background: #0a0a0a;
  border-bottom: 4px solid #0a0a0a;
  padding: 20px clamp(16px, 3vw, 32px) 0;
}

.b-stats-header {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 2.5vw, 34px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  padding: 0 0 10px 0;
  border-bottom: 3px solid #cc0000;
  margin-bottom: 14px;
}

.b-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  padding: 0 0 32px 0;
}

.b-stat {
  padding: 0 clamp(12px, 2vw, 24px) 0 0;
  border-right: 1px solid #cccccc;
}

.b-stat:last-child { border-right: none; padding-right: 0; }
.b-stat:not(:first-child) { padding-left: clamp(12px, 2vw, 24px); }

.b-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  display: block;
  color: #ffffff;
}

.b-stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #cccccc;
  line-height: 1.4;
  margin-top: 6px;
}

/* ── SHARED ──────────────────────────────────────── */
.b-divider-vert { background: #0a0a0a; width: 4px; flex-shrink: 0; }

/* ── FAMOUS DAVES ────────────────────────────────── */
.b-famous {
  border-bottom: 4px solid #0a0a0a;
  padding: clamp(20px, 3vw, 28px) clamp(16px, 3vw, 32px);
}

.b-col-head-famous {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.b-fame-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 8px;
}

.b-fame-card {
  border: 3px solid #0a0a0a;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
  color: #0a0a0a;
  background: #ffffff;
  transition: background 0.15s ease, color 0.15s ease;
  cursor: pointer;
}

.b-fame-card:hover { background: #0a0a0a; color: #ffffff; }
.b-fame-card:hover .b-fame-name { color: #ffffff; }
.b-fame-card:hover .b-fame-note { color: #cccccc; }
.b-fame-card:hover .b-score { background: #cc0000; color: #ffffff; }

.b-fame-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(19px, 1.5vw, 22px);
  text-transform: uppercase;
  line-height: 1.1;
  color: #cc0000;
}

.b-fame-note {
  font-size: 16px;
  color: #0a0a0a;
  line-height: 1.5;
  margin-top: 4px;
}

.b-score {
  background: #cc0000;
  color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 28px;
  padding: 6px 12px;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}

/* ── LINKS ───────────────────────────────────────── */
.b-link-arrow { display: inline-block; transition: transform 0.2s ease; }
.b-editorial-link:hover .b-link-arrow { transform: translateX(5px); }

.b-editorial-link {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: underline;
  color: #B30000;
  width: fit-content;
}

/* ── EDITORIAL SECTIONS ──────────────────────────── */
.b-editorial-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 4px solid #0a0a0a;
}

.b-editorial-divider {
  display: none;
}

.b-editorial {
  padding: clamp(20px, 3vw, 36px) clamp(16px, 3vw, 32px);
  border-right: 4px solid #0a0a0a;
  border-bottom: none;
  min-width: 0;
}

.b-editorial:last-child { border-right: none; }

.b-editorial-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 2.5vw, 34px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 3px solid currentColor;
}

.b-editorial-quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 2.5vw, 36px);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  padding: 14px 16px;
  border-left: 8px solid #cc0000;
  background: #0a0a0a;
  color: #ffffff;
}

.b-editorial-body {
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.75;
}

/* ORIGIN — black bg */
.b-origin { background: #0a0a0a; color: #ffffff; }
.b-origin .b-editorial-quote { background: #ffffff; color: #0a0a0a; border-left-color: #cc0000; }
.b-origin .b-editorial-link { color: #ffffff; }

/* PERSONALITY — white bg */
.b-personality { background: #ffffff; color: #0a0a0a; }
.b-personality .b-editorial-quote { background: #0a0a0a; color: #ffffff; border-left-color: #cc0000; }
.b-personality .b-editorial-link { color: #cc0000; }

/* DAVE VS DAVID — red bg */
.b-davevdavid { background: #cc0000; color: #ffffff; border-bottom: none; }
.b-davevdavid .b-editorial-quote { background: #ffffff; color: #0a0a0a; border-left: 8px solid #0a0a0a; }
.b-davevdavid .b-editorial-body { color: #ffffff; }
.b-davevdavid .b-editorial-link { color: #ffffff; }

/* ── MERCH ───────────────────────────────────────── */
.b-merch-section {
  border-bottom: 4px solid #0a0a0a;
  background: #dedede;
  padding: clamp(16px, 2.5vw, 24px) clamp(16px, 3vw, 32px);
}

.b-merch-head {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 2.5vw, 32px);
  text-transform: uppercase;
  border-bottom: 3px solid #cc0000;
  padding-bottom: 10px;
  margin-bottom: 14px;
  line-height: 1;
  color: #0a0a0a;
}

.b-merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.b-merch-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 14px;
  border: 1px solid #aaa;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0a0a0a;
}

.b-merch-dash {
  width: 14px;
  height: 3px;
  background: #cc0000;
  flex-shrink: 0;
}

/* ── NO MIKE'S ───────────────────────────────────── */
.b-no-mikes-section {
  border-bottom: 4px solid #0a0a0a;
  background: #ffffff;
  container-type: inline-size;
  container-name: no-mikes;
}

.b-no-mikes-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: clamp(20px, 3vw, 28px) clamp(16px, 3vw, 32px);
  gap: 0;
}

.b-no-mikes-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  flex: 0 0 auto;
  max-width: 50%;
  padding-right: clamp(24px, 4vw, 48px);
  padding-top: clamp(8px, 1.5vw, 16px);
  padding-bottom: clamp(8px, 1.5vw, 16px);
}

.b-no-mikes-divider {
  flex: 0 0 4px;
  width: 4px;
  background: #0a0a0a;
  align-self: stretch;
  display: none;
}

@supports (container-type: inline-size) {
  @container no-mikes (min-width: 597px) {
    .b-no-mikes-divider {
      display: block;
    }
  }
}

.b-no-mikes-kicker {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.5vw, 20px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #555;
}

.b-no-mikes-bigtext {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  text-transform: uppercase;
  line-height: 0.93;
  letter-spacing: -0.02em;
  color: #cc0000;
}

.b-no-mikes-body {
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.7;
  color: #0a0a0a;
  flex: 1 0 280px;
  text-align: left;
  padding-left: clamp(24px, 4vw, 48px);
  padding-top: clamp(8px, 1.5vw, 16px);
  padding-bottom: clamp(8px, 1.5vw, 16px);
}

@supports (container-type: inline-size) {
  @container no-mikes (max-width: 597px) {
    .b-no-mikes-divider {
      display: block;
      flex: 0 0 100%;
      width: 100%;
      height: 4px;
      align-self: auto;
    }
    .b-no-mikes-body {
      flex: 0 0 100%;
      min-width: 0;
      padding-left: 0;
      padding-top: clamp(16px, 3vw, 24px);
    }
    .b-no-mikes-text-col {
      padding-right: 0;
      max-width: 100%;
    }
  }
}

/* ── FOOTER ──────────────────────────────────────── */
.b-footer {
  background: #cc0000;
  text-align: center;
  padding: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(11px, 1.2vw, 15px);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ffffff;
}
.b-footer a{
  color: #fff;
}

/* ── PAGE LAYOUTS (inner pages) ──────────────────── */
.b-page-wrap {
  width: 100%;
}

.b-page-row {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 280px);
  gap: 0;
  border-bottom: 4px solid #0a0a0a;
}

/* Hero-style split: matches the index hero ratio (2fr / 1fr) */
.b-page-row.b-page-row-split {
  grid-template-columns: minmax(0, 2fr) minmax(240px, 1fr);
}

.b-page-content {
  padding: clamp(20px, 3vw, 40px) clamp(16px, 3vw, 32px);
  min-width: 0;
}

.b-page-content-full {
  padding: clamp(20px, 3vw, 40px) clamp(16px, 3vw, 32px);
}

.b-page-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.b-page-deck {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(17px, 1.6vw, 20px);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-top: 3px solid #0a0a0a;
  border-bottom: 3px solid #0a0a0a;
  padding: 8px 0;
  margin: 12px 0 24px;
}

.b-page-body {
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.75;
}

.b-page-body p { margin-bottom: 18px; }

.b-page-body h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 2.5vw, 34px);
  text-transform: uppercase;
  border-top: 4px solid #cc0000;
  padding-top: 10px;
  margin: 32px 0 12px;
}

.b-page-pull {
  background: #0a0a0a;
  color: #ffffff;
  padding: 16px 20px;
  margin: 24px 0;
  border-left: 8px solid #cc0000;
}

.b-page-pull p {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2vw, 28px);
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
}

/* ── SIDEBAR ADS (all Dave, all CSS) ─────────────── */
.b-sidebar {
  padding: clamp(20px, 3vw, 24px);
  background: #0a0a0a;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.b-ad-box {
  border: 4px solid #0a0a0a;
  background: #ffffff;
  overflow: hidden;
}

.b-ad-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #0a0a0a;
  padding: 6px 10px;
  border-bottom: 1px solid #ddd;
  background: #DEDEDE;
}

/* Built ad "creative" panel — replaces the old <img> */
.b-ad-creative {
  background: #fff;
  color: #0a0a0a;
  padding: 28px 18px;
  text-align: center;
  position: relative;
}

.b-ad-creative-kicker {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #cc0000;
  margin-bottom: 8px;
}

.b-ad-creative-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.b-ad-creative-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0a0a0a;
  margin-top: 10px;
}

/* Red variant for visual variety between ad units */
.b-ad-creative.b-ad-red { background: #cc0000; }
.b-ad-creative.b-ad-red .b-ad-creative-kicker { color: #fff; }
.b-ad-creative.b-ad-red .b-ad-creative-sub { color: #fff; }
.b-ad-creative.b-ad-red .b-ad-creative-title { color: #fff; }
.b-ad-caption {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 10px;
  background: #DEDEDE;
  color: #0a0a0a;
}

/* ── QUIZ ────────────────────────────────────────── */
.b-quiz {
  background: #0a0a0a;
  padding: 32px;
  margin: 32px 0;
  border: 4px solid #0a0a0a;
}

.b-quiz-header {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 32px;
  text-transform: uppercase;
  color: #ffffff;
  border-bottom: 3px solid #cc0000;
  padding-bottom: 10px;
  margin-bottom: 24px;
}

.b-quiz-question {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
}

.b-quiz-progress {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #cccccc;
  margin-bottom: 8px;
}

.b-quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.b-quiz-option {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  background: #ffffff;
  color: #0a0a0a;
  border: none;
  padding: 14px 20px;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.b-quiz-option:hover { background: #cc0000; color: #ffffff; }

.b-quiz-result-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  text-transform: uppercase;
  line-height: 1;
  color: #cc0000;
  margin-bottom: 12px;
}

.b-quiz-result-text {
  font-size: 17px;
  line-height: 1.7;
  color: #cccccc;
  margin-bottom: 24px;
  max-width: 560px;
}

.b-quiz-restart {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 10px 24px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.b-quiz-restart:hover { background: #ffffff; color: #0a0a0a; }

/* ── MERCH PRODUCTS (inner page) ─────────────────── */
.b-merch-product {
  border: 3px solid #0a0a0a;
  background: #ffffff;
}

.b-merch-product-img {
  background: #0a0a0a;
  color: #cccccc;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 48px);
  text-align: center;
  padding: 40px 20px;
  letter-spacing: 0.05em;
}

.b-merch-product-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(16px, 1.6vw, 22px);
  text-transform: uppercase;
  padding: 14px 16px 4px;
  color: #cc0000;
}

.b-merch-product-desc {
  font-size: 15px;
  line-height: 1.5;
  padding: 0 16px 10px;
  color: #444;
}

.b-merch-product-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 28px;
  padding: 0 16px 12px;
  color: #0a0a0a;
}

.b-merch-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #cc0000;
  color: #ffffff;
  border: none;
  width: 100%;
  padding: 14px;
  cursor: pointer;
  transition: background 0.15s;
}

.b-merch-btn:hover { background: #0a0a0a; }

/* ── NARROW SCREENS (under 600px) ───────────────── */
@media (max-width: 600px) {
  .b-hero-row { grid-template-columns: 1fr; }
  .b-hero-divider { display: none; }
  .b-ud-strip { border-bottom: 4px solid #0a0a0a; }
  .b-editorial-row { grid-template-columns: 1fr; }
  .b-editorial { border-right: none; border-bottom: 4px solid #0a0a0a; }
  .b-editorial:last-child { border-bottom: none; }
  .b-stats { grid-template-columns: 1fr; }
  .b-stat { border-right: none; border-bottom: 1px solid #cccccc; padding: 16px 0; }
  .b-stat:last-child { border-bottom: none; }
  .b-stat:not(:first-child) { padding-left: 0; }
  .b-page-row { grid-template-columns: 1fr; }
  .b-page-row.b-page-row-split { grid-template-columns: 1fr; }
  .b-page-content { border-right: none; }
  .b-sidebar { border-top: 4px solid #0a0a0a; }
  .b-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .b-nav-item {
    border-right: none;
    border-bottom: 3px solid #0a0a0a;
  }

  .b-nav-item:nth-child(odd) {
    border-right: 3px solid #0a0a0a;
  }

  .b-nav-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

}

/* ── IMAGE MODAL ─────────────────────────────────── */
.b-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.b-modal-overlay.is-open {
  display: flex;
}
.b-modal-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.b-modal-img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border: 4px solid #ffffff;
}
.b-modal-caption {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-align: center;
}
.b-modal-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 36px;
  height: 36px;
  background: #cc0000;
  color: #ffffff;
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.b-modal-close:hover { background: #0a0a0a; }
.b-ad-box[data-modal-img] { cursor: pointer; }
a[data-modal-img]         { cursor: pointer; }
