/* ============================================================
   Chili's Sound — Global Stylesheet
   Design direction: Clean, buyer-first, premium used gear.
   Not a music shop vibe. Think certified pre-owned, not pawn shop.
   ============================================================ */

:root {
  --black:      #111111;
  --off-white:  #f7f4ef;
  --warm-white: #ffffff;
  --accent:     #c05a1e;
  --accent-dark:#9e4717;
  --text:       #222222;
  --text-muted: #6b6b6b;
  --border:     #e2ddd6;
  --bg-light:   #f2ede6;
  --bg-dark:    #1a1a1a;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Georgia', 'Times New Roman', serif;
  --radius:     4px;
  --max-width:  1200px;
  --nav-h:      64px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Typography ── */
h1 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--text-muted); line-height: 1.75; }
p.lead { font-size: 1.2rem; color: var(--text); max-width: 680px; }

/* ── Layout ── */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 120px 0; }
.section--dark { background: var(--bg-dark); color: var(--off-white); }
.section--dark p { color: #aaaaaa; }
.section--tint { background: var(--bg-light); }

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo img {
  height: 44px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.15s;
}
.nav__links a:hover { color: var(--accent); }
.nav__links a.active { color: var(--accent); }
.nav__cta {
  background: var(--black);
  color: var(--warm-white) !important;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  transition: background 0.15s !important;
}
.nav__cta:hover { background: var(--accent) !important; color: var(--warm-white) !important; }

/* Dropdown */
.nav__item { position: relative; }
.nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 0;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
/* Invisible bridge fills the 12px gap so hover isn't lost moving from link to dropdown */
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav__item:hover .nav__dropdown { display: block; }
.nav__dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  color: var(--text);
}
.nav__dropdown a:hover { background: var(--bg-light); color: var(--accent); }
.nav__dropdown .divider { height: 1px; background: var(--border); margin: 4px 0; }

/* Mobile nav toggle */
.nav__toggle { display: none; background: none; border: none; padding: 4px; }
.nav__toggle svg { width: 24px; height: 24px; }

/* Close button injected inside full-screen mobile menu */
.nav__menu-close {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--text);
  position: absolute;
  top: 14px;
  right: 24px;
}
.nav__menu-close svg { width: 28px; height: 28px; display: block; }

/* Chevron for mobile sub-menu accordion (hidden on desktop) */
.nav__chevron { display: none; background: none; border: none; padding: 4px 6px; cursor: pointer; color: var(--text-muted); flex-shrink: 0; }
.nav__chevron svg { width: 16px; height: 16px; display: block; transition: transform 0.2s; }
.nav__item--open > .nav__chevron svg { transform: rotate(180deg); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.15s;
  border: 2px solid transparent;
}
.btn--primary { background: var(--black); color: var(--warm-white); }
.btn--primary:hover { background: var(--accent); }
.btn--outline { border-color: var(--black); color: var(--black); background: transparent; }
.btn--outline:hover { background: var(--black); color: var(--warm-white); }
.btn--accent { background: var(--accent); color: var(--warm-white); }
.btn--accent:hover { background: var(--accent-dark); }
.btn--ghost { background: transparent; color: var(--text); padding: 10px 0; }
.btn--ghost:hover { color: var(--accent); }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--sm { padding: 8px 16px; font-size: 0.875rem; }

/* ── Hero ── */
.hero {
  background: var(--bg-dark);
  color: var(--off-white);
  padding: 100px 0 80px;
}
.hero__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero h1 { color: var(--warm-white); margin-bottom: 24px; max-width: 760px; }
.hero p.lead { color: #cccccc; margin-bottom: 40px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .btn--outline { border-color: var(--warm-white); color: var(--warm-white); }
.hero .btn--outline:hover { background: var(--warm-white); color: var(--black); }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8125rem;
  color: #cccccc;
  margin-top: 48px;
}
.hero__badge::before { content: ''; width: 6px; height: 6px; background: #4caf50; border-radius: 50%; }

/* ── Trust Bar ── */
.trust-bar {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-bar__items {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}
.trust-bar__item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

/* ── Grid layouts ── */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

/* ── Cards ── */
.card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
.card__img { aspect-ratio: 4/3; background: var(--bg-light); overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 20px; }
.card__badge {
  display: inline-block;
  background: var(--bg-light);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.card__badge--certified { background: #e8f5e9; color: #2e7d32; }
.card__title { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.card__desc { font-size: 0.875rem; margin-bottom: 16px; }
.card__price { font-size: 1.25rem; font-weight: 700; color: var(--black); }
.card__price span { font-size: 0.875rem; font-weight: 400; color: var(--text-muted); margin-left: 4px; }

/* ── Feature blocks ── */
.feature { display: flex; gap: 48px; align-items: center; }
.feature--reverse { flex-direction: row-reverse; }
.feature__content { flex: 1; }
.feature__visual {
  flex: 1;
  aspect-ratio: 4/3;
  background: var(--bg-light);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.feature__content h2 { margin-bottom: 16px; }
.feature__content p { margin-bottom: 24px; }

/* ── Process steps ── */
.steps { display: grid; gap: 32px; }
.steps--3 { grid-template-columns: repeat(3, 1fr); }
.step { padding: 32px; background: var(--bg-light); border-radius: var(--radius); }
.step__number {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 10px; }

/* ── Option cards ── */
.option-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.option-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--warm-white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.option-card:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(192,90,30,0.1); }
.option-card--featured { border-color: var(--black); background: var(--black); color: var(--off-white); }
.option-card--featured p { color: #aaaaaa; }
.option-card__icon { font-size: 2rem; margin-bottom: 16px; }
.option-card h3 { margin-bottom: 8px; }
.option-card .rate { font-size: 2rem; font-weight: 700; color: var(--accent); margin: 16px 0 8px; }
.option-card--featured .rate { color: var(--off-white); }

/* ── Section header ── */
.section-header { margin-bottom: 48px; }
.section-header .eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p { max-width: 580px; }
.section-header--center { text-align: center; }
.section-header--center p { margin: 0 auto; }

/* ── Blog ── */
.post-card {
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}
.post-card:last-child { border-bottom: none; }
.post-card__meta { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 8px; }
.post-card__meta span { color: var(--accent); font-weight: 600; }
.post-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.post-card h3 a:hover { color: var(--accent); }
.post-card p { font-size: 0.9375rem; max-width: 600px; }
.post-card__arrow { font-size: 1.25rem; color: var(--text-muted); padding-top: 6px; }

/* ── Inline article ── */
.article { max-width: 720px; margin: 0 auto; }
.article h1 { margin-bottom: 20px; }
.article .article-meta { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 40px; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
.article h2 { margin: 48px 0 16px; }
.article h3 { margin: 32px 0 12px; }
.article p { margin-bottom: 20px; color: var(--text); }
.article ul, .article ol { margin: 0 0 20px 24px; color: var(--text-muted); line-height: 1.8; }
.article ul { list-style: disc; }
.article ol { list-style: decimal; }
.article blockquote {
  border-left: 3px solid var(--accent);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--bg-light);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article blockquote p { font-size: 1.1rem; color: var(--text); font-style: italic; margin: 0; }

/* ── Forms ── */
.form { display: grid; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__field label { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.form__field input,
.form__field select,
.form__field textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--warm-white);
  transition: border-color 0.15s;
  width: 100%;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus { outline: none; border-color: var(--black); }
.form__field textarea { resize: vertical; min-height: 120px; }

/* ── Page header ── */
.page-header {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 64px;
}
.page-header .eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.page-header h1 { margin-bottom: 16px; }
.page-header p.lead { color: var(--text-muted); }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb__sep { color: var(--border); }

/* ── Stat blocks ── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.stat { background: var(--warm-white); padding: 32px; text-align: center; }
.stat__value { font-size: 2.5rem; font-weight: 700; color: var(--black); line-height: 1; margin-bottom: 8px; }
.stat__label { font-size: 0.875rem; color: var(--text-muted); }

/* ── Banner / CTA strip ── */
.cta-strip {
  background: var(--black);
  color: var(--off-white);
  padding: 64px 0;
  text-align: center;
}
.cta-strip h2 { color: var(--warm-white); margin-bottom: 16px; }
.cta-strip p { color: #aaaaaa; margin-bottom: 32px; }
.cta-strip .btn--outline { border-color: rgba(255,255,255,0.3); color: var(--warm-white); }
.cta-strip .btn--outline:hover { background: var(--warm-white); color: var(--black); }

/* ── Footer ── */
.footer {
  background: var(--bg-dark);
  color: #aaaaaa;
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand { max-width: 280px; }
.footer__logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 12px;
}
.footer__logo span { color: var(--accent); }
.footer__tagline { font-size: 0.875rem; line-height: 1.6; margin-bottom: 20px; }
.footer__col h4 { color: var(--warm-white); font-size: 0.875rem; font-weight: 600; margin-bottom: 16px; letter-spacing: 0.05em; text-transform: uppercase; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a { font-size: 0.875rem; color: #888888; transition: color 0.15s; }
.footer__col ul a:hover { color: var(--warm-white); }
.footer__bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}
.footer__bottom a:hover { color: var(--warm-white); }

/* ── Utility ── */
.text-accent { color: var(--accent); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.inline-flex { display: inline-flex; align-items: center; gap: 8px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats   { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--warm-white);
    padding: 72px 24px 40px;
    gap: 0;
    z-index: 200;
    overflow-y: auto;
  }
  .nav__links.open .nav__menu-close { display: block; }

  /* Close button row at top of full-screen menu */
  .nav__links.open::before {
    content: '';
    display: block;
    height: var(--nav-h);
    flex-shrink: 0;
  }

  /* Each top-level link row */
  .nav__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid var(--border);
  }
  .nav__item > a {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    padding: 18px 0;
  }

  /* Non-item links (About, CTA) */
  .nav__links > li:not(.nav__item) > a {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
  }

  /* CTA button in menu */
  .nav__links > li:last-child { border-bottom: none; margin-top: 24px; }
  .nav__links > li:last-child .nav__cta {
    display: block;
    text-align: center;
    padding: 14px 24px;
    font-size: 1rem !important;
  }

  /* Sub-menu accordion */
  .nav__dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 8px 16px;
    width: 100%;
    display: none;
    background: transparent;
  }
  .nav__dropdown.open { display: block; }
  .nav__dropdown a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 10px 0;
    display: block;
  }
  .nav__dropdown .divider { display: none; }

  /* Chevron */
  .nav__chevron { display: flex; align-items: center; padding: 18px 4px; }
  .nav__logo img { height: 36px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .option-cards { grid-template-columns: 1fr; }
  .steps--3 { grid-template-columns: 1fr; }
  .feature, .feature--reverse { flex-direction: column; }
  .form__row { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr !important; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .post-card { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}

/* ── Blog callout boxes ── */
.info-box, .tip-box, .warning-box, .cost-note {
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0;
}
.info-box {
  background: #eef4fb;
  border-left: 3px solid #3b82f6;
}
.info-box h3, .info-box strong { color: #1d4ed8; }
.tip-box {
  background: var(--bg-light);
  border-left: 3px solid var(--accent);
}
.tip-box h3, .tip-box strong { color: var(--accent); }
.warning-box {
  background: #fef9ec;
  border-left: 3px solid #d97706;
}
.warning-box h3, .warning-box strong { color: #92400e; }
.cost-note {
  background: #f0fdf4;
  border-left: 3px solid #16a34a;
}
.cost-note h3, .cost-note strong { color: #15803d; }
.info-box p, .tip-box p, .warning-box p, .cost-note p { color: var(--text); margin-bottom: 0; }
.info-box p + p, .tip-box p + p, .warning-box p + p, .cost-note p + p { margin-top: 10px; }

/* ── Blog article above-fold CTA bar ── */
.article-cta-bar {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.article-cta-bar p { color: var(--text); font-size: 0.9375rem; margin: 0; }

/* ── Blog article FAQ ── */
.faq { margin: 48px 0; }
.faq__item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__question { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.faq__answer { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.75; }

/* ── FAQ Grid (section variant — homepage, sell hub, etc.) ── */
.faq--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 40px 0 0;
}
.faq--grid .faq__item {
  background: var(--warm-white);
  border: 1px solid var(--border) !important;
  border-radius: var(--radius);
  padding: 24px 28px;
}
.faq--grid .faq__item:first-child { border-top: 1px solid var(--border); }
.faq--grid .faq__question { font-size: 0.9375rem; }
.faq--grid .faq__answer { font-size: 0.875rem; }
@media (max-width: 768px) {
  .faq--grid { grid-template-columns: 1fr; }
}

/* ── Blog related posts ── */
.related-posts { margin: 48px 0; }
.related-posts h3 { margin-bottom: 20px; }

/* ── Sticky floating CTA ── */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background: var(--accent);
  color: var(--warm-white);
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: background 0.15s, transform 0.15s;
  text-decoration: none;
}
.floating-cta:hover { background: var(--accent-dark); transform: translateY(-2px); color: var(--warm-white); }

@media (max-width: 768px) {
  .article-cta-bar { flex-direction: column; align-items: flex-start; }
  .floating-cta { bottom: 16px; right: 16px; padding: 10px 16px; }
}

/* ── Comparison table in articles ── */
.comparison-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.9375rem; }
.comparison-table th { background: var(--bg-dark); color: var(--warm-white); padding: 10px 14px; text-align: left; font-size: 0.875rem; }
.comparison-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--text); }
.comparison-table tr:nth-child(even) td { background: var(--bg-light); }

/* ── Review Cards ── */
.review-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card__stars {
  color: #c05a1e;
  font-size: 1rem;
  letter-spacing: 2px;
}
.review-card__body {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.review-card__meta {
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.review-card__author {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}
.review-card__detail {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Product Detail Page ── */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.product-gallery { position: sticky; top: calc(var(--nav-h) + 24px); }
.product-gallery__main {
  aspect-ratio: 1/1;
  background: var(--bg-light);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
}
.product-gallery__thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.product-gallery__thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: none;
  transition: border-color 0.15s;
  flex-shrink: 0;
}
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-gallery__thumb:hover { border-color: var(--text-muted); }
.product-gallery__thumb.active { border-color: var(--accent); }

/* ── Product Description ── */
.product-description h1,
.product-description h2,
.product-description h3,
.product-description h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 24px 0 8px;
}
.product-description h1:first-child,
.product-description h2:first-child,
.product-description h3:first-child { margin-top: 0; }
.product-description p { margin: 0 0 12px; color: var(--text); line-height: 1.75; font-size: 0.9375rem; }
.product-description p:last-child { margin-bottom: 0; }
.product-description ul,
.product-description ol { padding-left: 20px; margin: 0 0 12px; }
.product-description li { color: var(--text); font-size: 0.9375rem; line-height: 1.75; margin-bottom: 4px; }
.product-description strong { font-weight: 600; color: var(--text); }
.product-description a { color: var(--accent); text-decoration: underline; }
.product-description br + br { display: none; }

/* ── YouTube Video Block ── */
.product-video-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #ff000010;
  border: 1px solid #ff000030;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: background 0.15s, border-color 0.15s;
  margin-top: 32px;
}
.product-video-link:hover { background: #ff000018; border-color: #ff000060; }
.product-video-link svg { flex-shrink: 0; color: #ff0000; }
.product-video-link span { line-height: 1.3; }
.product-video-link small { display: block; font-size: 0.8125rem; font-weight: 400; color: var(--text-muted); }

.variant-btn {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--warm-white);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.variant-btn:hover { border-color: var(--black); }
.variant-btn.active { border-color: var(--black); background: var(--black); color: var(--warm-white); }
.variant-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.card--link { cursor: pointer; }
.card--link:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }

/* ── Cart Drawer ── */
.cart-drawer { position: fixed; inset: 0; z-index: 500; pointer-events: none; }
.cart-drawer.open { pointer-events: all; }

.cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.25s;
}
.cart-drawer.open .cart-drawer__overlay { opacity: 1; }

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--warm-white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  box-shadow: -4px 0 32px rgba(0,0,0,0.12);
}
.cart-drawer.open .cart-drawer__panel { transform: translateX(0); }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
  display: flex;
  align-items: center;
}
.cart-drawer__close:hover { color: var(--text); }

.cart-drawer__body { flex: 1; overflow-y: auto; }
.cart-drawer__footer { flex-shrink: 0; }

@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr; gap: 40px; }
  .product-gallery { position: static; }
}
@media (max-width: 600px) {
  .product-gallery__thumb { width: 60px; height: 60px; }
}
