/* ============================================
   HuntingBikes.com — Global Stylesheet
   ============================================ */

:root {
  --forest:    #1a2e1a;
  --hunter:    #2d4a1e;
  --olive:     #4a5e2a;
  --moss:      #6b7c3d;
  --tan:       #c8a96e;
  --bark:      #8b6914;
  --cream:     #f5f0e8;
  --offwhite:  #faf8f4;
  --dark:      #111810;
  --mid:       #333d24;
  --orange:    #d4611a;
  --red:       #b02a1a;
  --text:      #222;
  --muted:     #666;
  --border:    #ddd6cc;
  --shadow:    rgba(0,0,0,0.12);
  --font-head: 'Oswald', 'Impact', sans-serif;
  --font-body: 'Open Sans', 'Segoe UI', sans-serif;
  --radius:    6px;
  --transition: 0.2s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--offwhite); line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography ---- */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.2; color: var(--forest); letter-spacing: 0.03em; }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
strong { font-weight: 700; }

/* ---- Layout ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-dark { background: var(--forest); color: var(--cream); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--tan); }
.section-tan { background: var(--cream); }
.section-mid { background: var(--mid); color: var(--cream); }
.section-mid h2, .section-mid h3 { color: var(--tan); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; align-items: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.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; }

/* ---- Buttons ---- */
.btn { display: inline-block; font-family: var(--font-head); font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 14px 32px; border-radius: var(--radius); cursor: pointer; transition: all var(--transition); border: 2px solid transparent; white-space: nowrap; }
.btn-primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: #bf5510; border-color: #bf5510; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(212,97,26,0.35); }
.btn-secondary { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn-secondary:hover { background: var(--cream); color: var(--forest); }
.btn-dark { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.btn-dark:hover { background: var(--hunter); }
.btn-outline { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: #fff; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 44px; font-size: 1.1rem; }

/* ---- Nav ---- */
.nav { position: sticky; top: 0; z-index: 100; background: var(--forest); box-shadow: 0 2px 16px var(--shadow); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; height: 68px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo .logo-text { font-family: var(--font-head); font-size: 1.5rem; letter-spacing: 0.1em; color: var(--cream); }
.nav-logo .logo-accent { color: var(--tan); }
.nav-logo .logo-tagline { font-size: 0.65rem; color: var(--moss); letter-spacing: 0.12em; text-transform: uppercase; display: block; }
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-links a { color: var(--cream); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 8px 14px; border-radius: 4px; transition: all var(--transition); font-weight: 600; }
.nav-links a:hover, .nav-links a.active { color: var(--tan); }
.nav-cta { background: var(--orange); color: #fff !important; border-radius: var(--radius); padding: 10px 20px !important; margin-left: 8px; }
.nav-cta:hover { background: #bf5510 !important; color: #fff !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: all var(--transition); }
.mobile-menu { display: none; background: var(--hunter); padding: 16px 20px; flex-direction: column; gap: 4px; }
.mobile-menu a { display: block; color: var(--cream); padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.mobile-menu a.active { color: var(--tan); }
.mobile-menu .mobile-cta { color: var(--orange) !important; font-weight: 700; }

/* ---- Hero ---- */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; background: linear-gradient(135deg, #0d1a0d 0%, #1a3010 50%, #0d1a0d 100%); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('https://www.rambobikes.com/cdn/shop/files/Hellcat2.0_Kings_XK7_1_shadow.jpg?v=1754501147&width=1946'); background-size: cover; background-position: center; opacity: 0.25; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,25,10,0.88) 45%, rgba(10,25,10,0.3) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 620px; padding: 60px 0; }
.hero-badge { display: inline-block; background: var(--orange); color: #fff; font-family: var(--font-head); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 6px 14px; border-radius: 3px; margin-bottom: 20px; }
.hero h1 { color: #fff; margin-bottom: 20px; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.hero h1 span { color: var(--tan); }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15); flex-wrap: wrap; }
.hero-stat-num { font-family: var(--font-head); font-size: 1.8rem; color: var(--tan); display: block; }
.hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.65); letter-spacing: 0.1em; text-transform: uppercase; }

/* ---- Trust Bar ---- */
.trust-bar { background: var(--tan); padding: 14px 0; }
.trust-bar-inner { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--forest); font-weight: 700; }
.trust-icon { font-size: 1.1rem; }

/* ---- Section Headers ---- */
.section-header { margin-bottom: 48px; }
.section-header.text-center { max-width: 700px; margin-left: auto; margin-right: auto; margin-bottom: 48px; }
.eyebrow { display: block; font-family: var(--font-head); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.section-dark .eyebrow, .section-mid .eyebrow { color: var(--tan); }
.divider { width: 48px; height: 3px; background: var(--orange); display: block; margin: 16px 0; }
.divider-center { margin: 16px auto; }

/* ---- Bike Cards ---- */
.bike-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 16px var(--shadow); transition: all var(--transition); display: flex; flex-direction: column; border: 1px solid var(--border); }
.bike-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
.bike-card-img { position: relative; background: #f0ede7; aspect-ratio: 4/3; overflow: hidden; }
.bike-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.bike-card:hover .bike-card-img img { transform: scale(1.04); }
.bike-badge { position: absolute; top: 12px; left: 12px; background: var(--orange); color: #fff; font-family: var(--font-head); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 3px; z-index: 2; }
.bike-badge-green { background: var(--hunter); }
.bike-badge-gold { background: var(--bark); }
.bike-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.bike-card-brand { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.bike-card-name { font-family: var(--font-head); font-size: 1.25rem; color: var(--forest); margin-bottom: 8px; }
.bike-card-desc { font-size: 0.88rem; color: var(--muted); flex: 1; margin-bottom: 16px; }
.bike-card-specs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.spec-tag { background: var(--cream); border: 1px solid var(--border); border-radius: 3px; padding: 3px 8px; font-size: 0.72rem; color: var(--mid); letter-spacing: 0.05em; }
.bike-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--border); margin-top: auto; }
.bike-price { font-family: var(--font-head); font-size: 1.3rem; color: var(--forest); }
.bike-price-note { font-size: 0.7rem; color: var(--muted); display: block; font-family: var(--font-body); font-weight: 400; }

/* ---- Star Rating ---- */
.stars { color: #f4a527; font-size: 0.9rem; letter-spacing: 2px; }
.rating-line { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.rating-label { font-size: 0.8rem; color: var(--muted); min-width: 110px; }
.rating-bar { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.rating-fill { height: 100%; background: var(--orange); border-radius: 3px; }

/* ---- Comparison Table ---- */
.compare-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 16px var(--shadow); }
.compare-table th, .compare-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.compare-table th { background: var(--forest); color: var(--cream); font-family: var(--font-head); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; }
.compare-table th.rambo-col { background: var(--orange); }
.compare-table td.rambo-col { background: rgba(212,97,26,0.06); font-weight: 600; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--cream); }
.compare-table td.rambo-col:hover, .compare-table tr:hover td.rambo-col { background: rgba(212,97,26,0.1); }
.check { color: #27a44a; font-weight: 700; }
.cross { color: var(--red); }
.compare-label { font-weight: 700; color: var(--forest); background: var(--cream) !important; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* ---- Feature Blocks ---- */
.feature-block { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }
.feature-img { border-radius: 10px; overflow: hidden; box-shadow: 0 8px 32px var(--shadow); aspect-ratio: 4/3; }
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-text .eyebrow { margin-bottom: 8px; }
.feature-text h2 { margin-bottom: 16px; }
.feature-list { margin: 20px 0; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.feature-list li:last-child { border-bottom: none; }
.feature-list-icon { color: var(--orange); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

/* ---- Score Cards ---- */
.score-card { background: var(--cream); border-radius: 10px; padding: 28px; border: 1px solid var(--border); }
.score-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.score-big { font-family: var(--font-head); font-size: 3.5rem; color: var(--orange); line-height: 1; }
.score-label { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; display: block; }
.score-verdict { display: inline-block; padding: 4px 12px; border-radius: 4px; font-family: var(--font-head); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
.verdict-top { background: var(--orange); color: #fff; }
.verdict-good { background: var(--hunter); color: #fff; }
.verdict-ok { background: var(--tan); color: var(--forest); }

/* ---- Buyer's Guide TOC ---- */
.toc { background: var(--cream); border: 1px solid var(--border); border-radius: 8px; padding: 24px 28px; margin-bottom: 32px; }
.toc h4 { font-family: var(--font-head); color: var(--forest); margin-bottom: 14px; font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; }
.toc ol { counter-reset: toc-counter; list-style: none; }
.toc ol li { counter-increment: toc-counter; padding: 5px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; font-size: 0.88rem; }
.toc ol li:last-child { border-bottom: none; }
.toc ol li::before { content: counter(toc-counter, decimal-leading-zero); font-family: var(--font-head); color: var(--orange); font-size: 0.8rem; min-width: 24px; }
.toc ol li a { color: var(--forest); font-weight: 600; transition: color var(--transition); }
.toc ol li a:hover { color: var(--orange); }

/* ---- Accordion ---- */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 18px 0; cursor: pointer; background: none; border: none; font-family: var(--font-head); font-size: 1.05rem; color: var(--forest); text-align: left; letter-spacing: 0.02em; transition: color var(--transition); }
.accordion-trigger:hover { color: var(--orange); }
.accordion-icon { font-size: 1.4rem; font-weight: 300; transition: transform var(--transition); color: var(--orange); }
.accordion-icon.open { transform: rotate(45deg); }
.accordion-body { display: none; padding: 0 0 18px; font-size: 0.92rem; color: var(--muted); line-height: 1.7; }
.accordion-body.open { display: block; }

/* ---- Cards: Article/Blog ---- */
.article-card { background: #fff; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); transition: all var(--transition); }
.article-card:hover { transform: translateY(-3px); box-shadow: 0 6px 24px var(--shadow); }
.article-card-img { background: var(--cream); aspect-ratio: 16/9; overflow: hidden; }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.article-card:hover .article-card-img img { transform: scale(1.05); }
.article-card-body { padding: 20px; }
.article-tag { display: inline-block; background: var(--cream); border: 1px solid var(--border); color: var(--muted); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; margin-bottom: 10px; }
.article-card h3 { font-size: 1.05rem; color: var(--forest); margin-bottom: 8px; }
.article-card p { font-size: 0.85rem; color: var(--muted); }
.article-meta { font-size: 0.75rem; color: var(--muted); margin-top: 12px; display: flex; gap: 12px; }

/* ---- Quiz/Picker ---- */
.quiz-card { background: var(--forest); border-radius: 12px; padding: 40px; color: var(--cream); }
.quiz-card h3 { color: var(--tan); margin-bottom: 8px; }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-options { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.quiz-opt { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--cream); padding: 12px 20px; border-radius: 6px; cursor: pointer; font-size: 0.88rem; transition: all var(--transition); font-family: var(--font-body); }
.quiz-opt:hover, .quiz-opt.selected { background: var(--orange); border-color: var(--orange); }
.quiz-result { background: rgba(255,255,255,0.08); border-radius: 8px; padding: 24px; margin-top: 24px; display: none; }
.quiz-result.show { display: block; }
.quiz-result-name { font-family: var(--font-head); font-size: 1.5rem; color: var(--tan); }
.quiz-progress { display: flex; gap: 6px; margin-bottom: 24px; }
.quiz-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); transition: background var(--transition); }
.quiz-dot.done { background: var(--orange); }
.quiz-dot.active { background: var(--tan); }

/* ---- Footer ---- */
.footer { background: var(--dark); color: var(--cream); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 12px; line-height: 1.7; }
.footer h4 { font-family: var(--font-head); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tan); margin-bottom: 16px; }
.footer-links li { padding: 4px 0; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--tan); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--tan); }
.footer-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 12px; line-height: 1.6; }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: all var(--transition); }
.social-link:hover { border-color: var(--tan); color: var(--tan); }

/* ---- Sticky CTA Banner ---- */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--forest); border-top: 2px solid var(--orange); padding: 12px 20px; display: flex; justify-content: space-between; align-items: center; gap: 16px; transform: translateY(100%); transition: transform 0.35s ease; }
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta p { color: var(--cream); font-size: 0.88rem; margin: 0; }
.sticky-cta strong { color: var(--tan); }
.sticky-close { background: none; border: none; color: rgba(255,255,255,0.5); cursor: pointer; font-size: 1.2rem; padding: 4px; margin-left: 8px; }

/* ---- Alert Banner ---- */
.alert-bar { background: var(--orange); color: #fff; text-align: center; padding: 10px 20px; font-size: 0.82rem; font-family: var(--font-head); letter-spacing: 0.08em; text-transform: uppercase; }
.alert-bar a { color: #fff; text-decoration: underline; }

/* ---- Page Hero (inner pages) ---- */
.page-hero { background: linear-gradient(135deg, var(--forest) 0%, var(--hunter) 100%); padding: 72px 0 56px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="40" fill="rgba(255,255,255,0.02)"/></svg>'); pointer-events: none; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; }
.page-hero .eyebrow { color: var(--tan); }

/* ---- Breadcrumb ---- */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--tan); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* ---- Callout Box ---- */
.callout { border-left: 4px solid var(--orange); background: rgba(212,97,26,0.07); padding: 16px 20px; border-radius: 0 6px 6px 0; margin: 24px 0; }
.callout-dark { border-left-color: var(--tan); background: rgba(200,169,110,0.1); }
.callout p { margin: 0; font-size: 0.9rem; }
.callout strong { color: var(--forest); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .feature-block { grid-template-columns: 1fr; gap: 32px; }
  .feature-block.reverse { direction: ltr; }
  .hero { min-height: 70vh; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu.open { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 20px; }
  .hero-stats { gap: 20px; }
  .compare-table { font-size: 0.78rem; }
  .compare-table th, .compare-table td { padding: 10px 10px; }
  .sticky-cta { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .btn-lg { padding: 14px 28px; font-size: 1rem; }
  h1 { font-size: 2rem; }
  .section { padding: 48px 0; }
}

/* ---- Utilities ---- */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.tag-rambo { color: var(--orange); font-weight: 700; }
.highlight { background: rgba(212,97,26,0.12); padding: 2px 6px; border-radius: 3px; }
.pro { color: #27a44a; font-weight: 600; }
.con { color: var(--red); font-weight: 600; }
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.pill { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.pill-green { background: rgba(39,164,74,0.15); color: #1a7a35; }
.pill-orange { background: rgba(212,97,26,0.15); color: var(--orange); }
.pill-red { background: rgba(176,42,26,0.12); color: var(--red); }
