:root {
  --primary-red: #bb2124;
  --primary-red-dark: #8f1418;
  --primary-green: #2f7a45;
  --primary-gold: #ffcc00;
  --primary-orange: #f7931e;
  --bg-body: #f5f5f5;
  --bg-soft: #fafafa;
  --text-dark: #111;
  --text-gray: #4c4c4c;
  --border-light: #e9e9e9;
  --radius-lg: 12px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  --header-offset: 92px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 18px;
  background: var(--bg-body);
}
h1, h2, h3, h4 { font-family: "Outfit", sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.content-width { max-width: 1100px; margin: 0 auto 42px; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}
.navbar-logo { height: 50px; }
.nav-list { display: flex; align-items: center; gap: 12px; }
.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-gray);
  font-weight: 600;
  font-size: 14px;
  transition: 0.2s ease;
}
.nav-link:hover { color: var(--primary-red); background: rgba(187,33,36,0.08); }
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 32px; height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  gap: 5px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-dark); }

/* ===== HERO ===== */
.hero-section { width: 100%; }
.banner-wrapper {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17,17,17,0.62) 0%, rgba(45,11,13,0.56) 45%, rgba(93,18,20,0.48) 100%),
    url("./media/260415-P06-EN-1990340-916-YXY-pid-9216.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.advertorial-tag {
  position: absolute; top: 15px; right: 20px; z-index: 10;
  font-size: 10px; font-weight: 800; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6); text-transform: uppercase; pointer-events: none;
}

.hero-overlay-content {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  min-height: 300px;
}
.hero-text-side {
  color: #fff;
  text-align: center;
}
.hero-overlay-title {
  font-size: 48px; line-height: 1.1; font-weight: 800;
  text-shadow: 0 4px 20px rgba(0,0,0,0.35);
  white-space: nowrap;
}
.hero-overlay-subtitle-tested {
  font-size: 22px; font-weight: 600;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-overlay-subtitle {
  font-size: 24px; line-height: 1.3; margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.last-updated {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; font-size: 15px; font-weight: 700;
  background: rgba(0,0,0,0.28); padding: 8px 16px; border-radius: 999px;
}
.icon-check {
  width: 20px; height: 20px;
  background: url("./media/color-success.svg") no-repeat center;
  background-size: contain; display: inline-block;
}
.icon-inline {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: -5px;
  flex-shrink: 0;
}
.disclosure-trigger {
  background: none; border: none; color: #fff;
  font-size: 13px; font-weight: 500; text-decoration: underline;
  cursor: pointer; opacity: 0.85; transition: opacity 0.2s; padding: 0;
}
.disclosure-trigger:hover { opacity: 1; }

/* ===== MODAL ===== */
.disclosure-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.disclosure-modal.is-active { opacity: 1; visibility: visible; }
.modal-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
}
.modal-container {
  position: relative; z-index: 2; width: 90%; max-width: 500px;
  background: #fff; border-radius: 16px; padding: 40px 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transform: translateY(20px); transition: transform 0.3s ease;
}
.disclosure-modal.is-active .modal-container { transform: translateY(0); }
.modal-close {
  position: absolute; top: 15px; right: 15px;
  width: 32px; height: 32px; background: #f5f5f5;
  border: none; border-radius: 50%; font-size: 24px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: #eee; }
.modal-body p { color: var(--text-gray); font-size: 16px; line-height: 1.6; margin-bottom: 16px; }
.modal-body p:last-child { margin-bottom: 0; }
/* ===== MAIN CONTENT ===== */
.review-page-container { margin-top: 0; }
.main-content-area { max-width: 1400px; margin: 40px auto; padding: 0 20px; }

/* ===== INTRO SECTION ===== */
.intro-section {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 32px;
}
.intro-text-content .intro-main-text {
  color: var(--text-gray); margin-bottom: 18px; line-height: 1.7;
}
.inline-link { color: var(--primary-red); text-decoration: underline; font-weight: 700; }
.inline-link:hover { color: var(--primary-red-dark); }

/* ===== REVIEW CARDS ===== */
.reviews { margin-bottom: 28px; }
.review-card {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin-bottom: 24px; position: relative; overflow: visible;
  border: 1px solid var(--border-light);
}
.review-card.featured {
  border: 3px solid var(--primary-red);
  box-shadow: 0 8px 20px rgba(187,33,36,0.12);
}

/* Rank badges */
.rank-badge {
  position: absolute; top: -15px; left: -10px;
  padding: 5px 15px; border-radius: 6px;
  font-weight: 800; font-size: 14px; z-index: 10;
  color: #fff;
}
.rank-best { background: var(--primary-green); box-shadow: 0 4px 12px rgba(47,122,69,0.3); }
.rank-normal { background: #888; }

/* Review inner grid */
.review-inner {
  display: grid;
  grid-template-columns: 1.2fr 3fr 1fr;
  gap: 0; align-items: stretch;
}
.review-inner.compact {
  grid-template-columns: 1.2fr 3fr 1fr;
}

.review-col-img {
  padding: 20px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  border-right: 1px solid var(--border-light);
}
.product-shot {
  display: block; width: 100%; max-height: 220px;
  object-fit: contain; border-radius: 8px; background: #fff;
  margin-bottom: 12px;
}
.featured-shot { max-height: 280px; }
.read-review-link {
  color: var(--primary-red); font-size: 14px;
  text-decoration: none; margin-top: 8px;
}
.read-review-link:hover { text-decoration: underline; }

.review-col-details {
  padding: 24px 20px;
  border-right: 1px solid var(--border-light);
}
.review-product-title {
  font-size: 22px; font-weight: 800; margin-bottom: 16px;
  font-family: "Outfit", sans-serif;
}
.pros-list, .cons-list {
  list-style: none; padding: 0; margin: 0 0 12px 0; font-size: 15px;
}
.pros-list li, .cons-list li {
  margin-bottom: 8px; color: var(--text-gray); line-height: 1.5;
  padding-left: 4px;
}

/* Verdict boxes */
.verdict-box {
  padding: 16px 20px; border-radius: 8px;
  font-size: 15px; line-height: 1.6; color: var(--text-gray);
  margin-top: 16px;
}
.verdict-green { background: #edf7ed; border: 1px solid #c8e6c9; }
.verdict-gray { background: #f5f5f5; border: 1px solid #e0e0e0; }

/* CTA column */
.review-col-cta {
  padding: 20px 16px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px; text-align: center;
}
.score-image { display: block; width: 100%; max-width: 180px; height: auto; }

/* Sale tag */
.sale-tag {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  color: var(--primary-red); font-weight: 700; font-size: 14px;
}
.sale-percent { font-size: 18px; font-weight: 800; }
.sale-ends { font-size: 13px; }

/* Visit buttons */
.btn-visit-orange {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; min-height: 52px; padding: 14px 20px;
  border-radius: 50px; font-weight: 800; font-size: 16px;
  text-align: center; text-decoration: none;
  background: var(--primary-orange); color: #fff;
  box-shadow: 0 4px 12px rgba(247,147,30,0.3);
  transition: all 0.2s ease;
}
.btn-visit-orange:hover {
  background: var(--primary-green);
  box-shadow: 0 6px 16px rgba(47,122,69,0.3);
  transform: translateY(-1px);
}
.btn-visit-gray {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; min-height: 48px; padding: 12px 18px;
  border-radius: 50px; font-weight: 800; font-size: 15px;
  text-align: center; text-decoration: none;
  background: #888; color: #fff;
  transition: all 0.2s ease;
}
.btn-visit-gray:hover {
  background: var(--primary-green);
  box-shadow: 0 4px 12px rgba(47,122,69,0.3);
  transform: translateY(-1px);
}
/* ===== BEST CHOICE LAYOUT (with sidebar) ===== */
.best-choice-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 20px;
  align-items: start;
}
.best-choice-section {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 32px;
  margin: 0;
}
.section-title {
  font-size: 36px; line-height: 1.1; margin-bottom: 14px;
}
.section-copy {
  color: var(--text-gray); margin-bottom: 18px; line-height: 1.7;
}
.sub-section-title {
  font-size: 24px; font-weight: 700; margin-top: 28px; margin-bottom: 12px;
}
.availability-link a {
  color: var(--primary-red); font-weight: 700;
}
.availability-link a:hover { color: var(--primary-red-dark); }

/* Editor's Note Box */
.editor-note-box {
  margin-top: 28px; padding: 24px;
  background: #fff9e6; border: 2px solid #f0d060;
  border-radius: var(--radius-lg);
}
.editor-note-box .editor-note-label {
  font-size: 14px; font-weight: 800; color: var(--primary-red);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px;
}
.editor-note-box p {
  color: var(--text-gray); font-size: 16px; line-height: 1.6; margin-bottom: 16px;
}
.btn-editor-cta {
  display: flex; align-items: center; justify-content: center;
  width: 100%; min-height: 52px; padding: 14px 32px;
  border-radius: 50px; font-weight: 800; font-size: 16px;
  background: var(--primary-green); color: #fff;
  box-shadow: 0 4px 12px rgba(47,122,69,0.3);
  transition: all 0.2s ease; text-decoration: none;
}
.btn-editor-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(47,122,69,0.4);
}

/* ===== SIDEBAR (Desktop only) ===== */
.sidebar-card {
  position: sticky; top: 100px;
  background: #fff; border: 2px solid var(--primary-green);
  border-radius: var(--radius-lg); padding: 16px;
  box-shadow: var(--shadow);
}
.sidebar-badge {
  display: inline-block; padding: 5px 12px;
  background: var(--primary-green); color: #fff;
  border-radius: var(--radius-lg) 0 var(--radius-lg) 0; font-weight: 800; font-size: 13px;
  margin-bottom: 16px;
  position: absolute; top: -1px; left: -1px;
}
.sidebar-product-img {
  width: 100%; border-radius: 8px; margin-bottom: 20px; margin-top: 32px; padding: 0 35px;
}
.sidebar-ratings { margin-bottom: 20px; }
.rating-row {
  display: flex; flex-direction: column;
  gap: 3px; margin-bottom: 5px;
}
.rating-row-header {
  display: flex; justify-content: space-between; align-items: center;
}
.rating-label { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.rating-bar-wrap {
  height: 15px; background: #e9e9e9; overflow: hidden; width: 100%;
}
.rating-bar {
  height: 100%; background: var(--primary-green);
}
.rating-value { font-size: 14px; font-weight: 800; color: var(--text-dark); }

.sidebar-pros { margin-bottom: 20px; }
.sidebar-pros-title { font-weight: 700; font-size: 15px; margin-bottom: 10px; }
.sidebar-pros ul { list-style: none; padding: 0; margin: 0; }
.sidebar-pros li {
  font-size: 15px; line-height: 1.5; color: var(--text-gray);
  margin-bottom: 8px; padding-left: 4px;
}

.btn-sidebar-cta {
  display: flex; align-items: center; justify-content: center;
  width: 100%; min-height: 52px; padding: 14px 20px;
  border-radius: 50px; font-weight: 800; font-size: 16px;
  background: var(--primary-orange); color: #fff;
  box-shadow: 0 4px 12px rgba(247,147,30,0.3);
  transition: all 0.2s ease; text-decoration: none;
}
.btn-sidebar-cta:hover {
  background: var(--primary-green);
  box-shadow: 0 6px 16px rgba(47,122,69,0.3);
  transform: translateY(-1px);
}

.desktop-only { display: block; }

/* ===== FAQ ===== */
.faq-section {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 32px;
  max-width: 1400px;
}
.faq-list { display: grid; gap: 14px; margin-top: 20px; }
.faq-item {
  padding: 0 20px; border: 1px solid var(--border-light);
  border-radius: 12px; background: var(--bg-soft);
}
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 0; font-weight: 700;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding-bottom: 20px; color: var(--text-gray); }

/* ===== EXPERT RECOMMEND ===== */
.expert-recommend-card {
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: start;
  background: #f7f4eb; border-radius: var(--radius-lg);
  padding: 32px 40px; box-shadow: var(--shadow);
}
.expert-stars { color: var(--primary-gold); font-size: 20px; letter-spacing: 2px; margin-bottom: 12px; }
.expert-quote {
  font-size: 20px; font-weight: 700; line-height: 1.45;
  margin: 0 0 12px 0; color: var(--text-dark);
}
.expert-attribution { font-weight: 700; font-size: 17px; margin-bottom: 16px; color: var(--text-dark); }
.expert-bio { font-size: 16px; line-height: 1.65; color: var(--text-dark); margin: 0; }
.expert-recommend-photo { text-align: center; flex-shrink: 0; }
.expert-recommend-photo img {
  width: 200px; height: auto; border-radius: 8px;
  border: 1px solid var(--border-light); background: #fff;
  display: block; margin: 0 auto 12px;
}
.expert-name { font-weight: 700; font-size: 17px; margin-bottom: 4px; color: var(--text-dark); }
.expert-title { font-size: 14px; color: var(--text-gray); margin: 0; line-height: 1.4; }

/* ===== AUTHOR ===== */
.author-section {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 32px;
  max-width: 1400px;
}
.author-card {
  display: flex; gap: 24px; align-items: flex-start;
}
.author-avatar { flex-shrink: 0; }
.author-avatar img {
  width: 100px; height: 100px; border-radius: 50%;
  object-fit: cover; border: 3px solid var(--border-light);
}
.author-written-by { font-size: 16px; margin-bottom: 4px; }
.author-stars { color: #f5a623; font-size: 18px; margin-bottom: 12px; }
.author-bio { font-size: 15px; line-height: 1.65; color: var(--text-gray); margin-bottom: 12px; }

/* ===== LAB / TESTING TEAM ===== */
.lab-section {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 32px;
  max-width: 1400px;
}
.lab-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}
.lab-text-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lab-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lab-team-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark); color: #94a3b8; padding: 80px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr 2fr 1.2fr;
  gap: 80px; margin-bottom: 60px; align-items: start;
}
.footer-about { display: flex; flex-direction: column; }
.footer-logo { color: #fff; margin-bottom: 0; font-size: 1.75rem; }
.footer-logo-img { height: 80px; width: auto; filter: invert(1); }
.footer-desc { line-height: 1.6; color: #fff; font-size: 1.05rem; max-width: 500px; }
.footer-desc p { color: #fff; margin: 0; }
.footer-links { justify-items: end; }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a {
  color: #fff; font-size: 1rem; font-weight: 500; opacity: 0.9; transition: all 0.3s ease;
}
.footer-links ul li a:hover { color: #fff; padding-left: 5px; opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px; text-align: left; font-size: 0.875rem;
}
.footer-bottom p { color: #94a3b8; margin: 0; text-align: center; }

/* ===== MOBILE BOTTOM BANNER (hidden on desktop) ===== */
.mobile-bottom-banner { display: none; }

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 1100px) {
  .best-choice-layout {
    grid-template-columns: 1fr;
  }
  .desktop-only { display: none !important; }
  .review-inner, .review-inner.compact {
    grid-template-columns: 1fr;
  }
  .review-col-img { border-right: none; border-bottom: 1px solid var(--border-light); }
  .review-col-details { border-right: none; border-bottom: 1px solid var(--border-light); }
  .expert-recommend-card { grid-template-columns: 1fr; }
  .expert-recommend-photo { order: -1; }
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 768px) {
  body { font-size: 16px; }
  .container { padding: 0 16px; }
  html { scroll-padding-top: 120px; }

  /* Header */
  .header-container {
    min-height: auto; flex-wrap: wrap;
    padding: 8px 16px; gap: 0;
    position: relative;
  }
  .navbar-logo { height: 30px; }
  .nav-toggle {
    display: flex;
  }
  .nav-list {
    display: none; flex-direction: column; width: 100%;
    gap: 0; padding: 8px 0;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 100;
  }
  .nav-list.is-open {
    display: flex;
  }
  .nav-link {
    padding: 12px 16px; text-align: left;
    font-size: 14px; width: 100%;
    border-radius: 6px;
  }
  .nav-link:hover {
    background: rgba(187,33,36,0.06);
  }

  /* Hero */
  .banner-wrapper {
    background:
      linear-gradient(180deg, rgba(17,17,17,0.54) 0%, rgba(45,11,13,0.42) 55%, rgba(93,18,20,0.32) 100%),
      url("./media/260415-P07-EN-1990340-916-YXY-pid-9216.webp");
    background-size: cover; background-position: center center; background-repeat: no-repeat;
  }
  .hero-overlay-content {
    min-height: 200px; padding-top: 40px; padding-bottom: 20px;
  }
  .hero-overlay-title { font-size: 26px; line-height: 1.15; white-space: normal; }
  .hero-overlay-subtitle-tested { font-size: 16px; }
  .hero-overlay-subtitle { font-size: 14px; line-height: 1.4; margin-bottom: 10px; }
  .last-updated { font-size: 13px; padding: 6px 12px; }
  .icon-check { width: 16px; height: 16px; }

  /* Main content */
  .main-content-area { padding: 0 16px; margin: 24px auto; }
  .intro-section, .best-choice-section, .faq-section,
  .author-section, .lab-section, .review-card {
    padding: 20px 16px; margin-bottom: 20px;
  }
  .section-title { font-size: 24px; line-height: 1.2; margin-bottom: 16px; }
  .section-copy { font-size: 15px; line-height: 1.6; }
  .sub-section-title { font-size: 20px; margin-top: 20px; }

  /* Lab / Testing Team */
  .lab-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .lab-team-img {
    border-radius: 8px;
  }

  /* Review cards */
  .review-inner, .review-inner.compact {
    grid-template-columns: 1fr;
  }
  .review-col-img {
    border-right: none; border-bottom: 1px solid var(--border-light);
    padding: 16px;
  }
  .review-col-details {
    border-right: none; border-bottom: 1px solid var(--border-light);
    padding: 16px;
  }
  .review-col-cta { padding: 16px; }
  .product-shot, .featured-shot { max-height: 200px; }
  .review-product-title { font-size: 18px; }
  .rank-badge { top: -16px; left: -8px; font-size: 16px; padding: 4px 12px; }

  /* Best choice */
  .best-choice-layout { grid-template-columns: 1fr; }
  .desktop-only { display: none !important; }

  /* Author */
  .author-card { flex-direction: column; align-items: center; text-align: center; }
  .author-avatar img { width: 80px; height: 80px; }

  /* Expert */
  .expert-recommend-card {
    grid-template-columns: 1fr; padding: 24px 20px; gap: 24px;
  }
  .expert-recommend-photo { order: -1; text-align: center; }
  .expert-recommend-photo img { width: 140px; margin: 0 auto 12px; }
  .expert-quote { font-size: 17px; }

  /* FAQ */
  .faq-item { padding: 0 16px; }
  .faq-item summary { padding: 16px 0; font-size: 16px; }
  .faq-item p { padding-bottom: 16px; font-size: 15px; }

  /* Footer */
  .footer { padding: 50px 0 24px; }
  .footer-grid {
    grid-template-columns: 1fr; gap: 32px;
    text-align: center; margin-bottom: 40px;
  }
  .footer-about, .footer-desc, .footer-links {
    display: flex; flex-direction: column; align-items: center;
  }
  .footer-logo-img { height: 60px; }
  .footer-desc { font-size: 0.95rem; }

  /* Mobile Bottom Banner */
  .mobile-bottom-banner {
    display: flex;
    position: fixed; bottom: 0; left: 0; right: 0;
    background: #000; border-top: 1px solid #333;
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
    z-index: 1000;
    align-items: center; justify-content: space-between; gap: 12px;
    animation: bounce 2s ease-in-out infinite;
  }
  .mobile-banner-content {
    display: flex; align-items: center; gap: 10px; flex: 1;
  }
  .mobile-banner-badge {
    display: inline-block; background: #ffd700; color: #1e5a30;
    font-weight: 800; font-size: 16px; padding: 3px 8px;
    border-radius: 4px; letter-spacing: 0.5px; flex-shrink: 0;
  }
  .mobile-banner-text-wrap {
    display: flex; flex-direction: column; gap: 2px;
  }
  .mobile-banner-name {
    color: #fff; font-weight: 700; font-size: 15px; line-height: 1.3;
  }
  .mobile-banner-sub {
    color: #aaa; font-size: 14px; font-weight: 600;
  }
  .mobile-banner-btn {
    background: var(--primary-orange); color: #fff;
    font-weight: 800; font-size: 12px; padding: 10px 14px;
    border-radius: 6px; white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.2s ease; text-decoration: none;
  }
  .mobile-banner-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  body { padding-bottom: 80px; }

  /* Editor note */
  .editor-note-box { padding: 20px 16px; }
  .btn-editor-cta { width: 100%; justify-content: center; }
}