@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
/* =============================================
   HOA NAM TEA — Shared Stylesheet
   Template 1: Classic E-commerce Marketplace
   ============================================= */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "Roboto","Segoe UI",Arial,sans-serif; background: var(--paper); color: var(--ink); font-size: 15px; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; }

/* === TOKENS === */
:root {
  --tea: #4a7c59;
  --tea-dark: #35603f;
  --tea-light: #6b9e78;
  --gold: #c9a227;
  --gold-light: #e3c75a;
  --cream: #f6f1e7;
  --paper: #fbf8f1;
  --ink: #2c2620;
  --muted: #7a7165;
  --red: #c0392b;
  --border: #e0d8cc;
  --white: #ffffff;
  --shadow-sm: 0 1px 4px rgba(44,38,32,.08);
  --shadow-md: 0 4px 16px rgba(44,38,32,.12);
  --radius: 8px;
  --radius-sm: 4px;
  --max-w: 1180px;
}

/* === UTILITIES === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.badge { display: inline-block; padding: 2px 8px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.badge-sale { background: var(--red); color: #fff; }
.badge-hot { background: #e67e22; color: #fff; }
.badge-new { background: var(--tea); color: #fff; }
.text-muted { color: var(--muted); }
.text-red { color: var(--red); }
.text-gold { color: var(--gold); }
.fw-bold { font-weight: 700; }
.text-center { text-align: center; }

/* === TOP BAR === */
.topbar {
  background: var(--tea-dark);
  color: rgba(255,255,255,.85);
  font-size: 12.5px;
  padding: 6px 0;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.85); }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; align-items: center; gap: 16px; }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar-right a { display: flex; align-items: center; gap: 4px; }
.topbar-divider { opacity: .3; }

/* === MAIN HEADER === */
.main-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.main-header .container { display: flex; align-items: center; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; }
.logo-mark {
  width: 46px; height: 46px;
  background: var(--tea);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px;
  flex-shrink: 0;
}
.logo-text { line-height: 1.15; }
.logo-name { font-size: 17px; font-weight: 800; color: var(--tea-dark); letter-spacing: .02em; }
.logo-tagline { font-size: 10px; color: var(--muted); letter-spacing: .02em; }
.header-search {
  flex: 1; max-width: 520px; margin: 0 auto;
  display: flex; align-items: center;
  border: 2px solid var(--tea);
  border-radius: 40px;
  overflow: hidden;
  background: var(--white);
}
.header-search input {
  flex: 1; border: none; outline: none;
  padding: 9px 16px;
  font-size: 14px;
  background: transparent;
  color: var(--ink);
}
.header-search input::placeholder { color: var(--muted); }
.header-search button {
  background: var(--tea);
  color: #fff;
  padding: 9px 18px;
  font-size: 14px;
  transition: background .2s;
  border-radius: 0 38px 38px 0;
}
.header-search button:hover { background: var(--tea-dark); }
.header-actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; margin-left: auto; }
.header-action-btn {
  display: flex; flex-direction: column; align-items: center;
  gap: 2px; padding: 6px 10px;
  color: var(--ink); font-size: 11px;
  border-radius: var(--radius-sm);
  transition: background .15s, color .15s;
  position: relative;
}
.header-action-btn:hover { background: var(--cream); color: var(--tea-dark); }
.header-action-btn .icon { font-size: 20px; line-height: 1; }
.cart-badge {
  position: absolute; top: 2px; right: 6px;
  background: var(--red);
  color: #fff;
  font-size: 10px; font-weight: 700;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* === NAVIGATION BAR === */
.nav-bar {
  background: var(--tea-dark);
  position: relative;
  z-index: 90;
}
.nav-bar .container { display: flex; align-items: stretch; }
.nav-category-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700; font-size: 13.5px;
  padding: 0 20px;
  letter-spacing: .02em;
  transition: background .2s;
  white-space: nowrap;
  border-radius: 0;
}
.nav-category-btn:hover { background: var(--gold-light); }
.nav-links { display: flex; align-items: center; flex: 1; }
.nav-links a {
  display: block;
  color: rgba(255,255,255,.9);
  font-size: 13.5px;
  font-weight: 500;
  padding: 13px 14px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,.12); color: #fff; }

/* === BREADCRUMB === */
.breadcrumb {
  padding: 10px 0;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.breadcrumb li + li::before { content: "›"; margin-right: 4px; opacity: .5; }
.breadcrumb a { color: var(--tea); }
.breadcrumb a:hover { text-decoration: underline; }

/* === SECTION HEADINGS === */
.section-heading {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.section-heading h2 {
  font-size: 20px; font-weight: 800;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
}
.section-heading::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--tea-light), transparent);
  border-radius: 2px;
}
.section-heading .heading-accent {
  width: 4px; height: 22px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

/* === PRODUCT CARD === */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  display: flex; flex-direction: column;
  position: relative;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.product-card-link { display: flex; flex-direction: column; flex: 1; color: inherit; text-decoration: none; }
.product-thumb {
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
  position: relative;
  overflow: hidden;
}
.product-badges {
  position: absolute; top: 8px; left: 8px;
  display: flex; flex-direction: column; gap: 4px;
}
.product-info { padding: 12px 14px 14px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.product-name {
  font-size: 14px; font-weight: 600; color: var(--ink);
  line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-stars { color: var(--gold); font-size: 13px; display: flex; align-items: center; gap: 4px; }
.product-stars span { color: var(--muted); font-size: 12px; }
.product-price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.price-now { font-size: 18px; font-weight: 800; color: var(--red); font-variant-numeric: tabular-nums; }
.price-old { font-size: 13px; color: var(--muted); text-decoration: line-through; font-variant-numeric: tabular-nums; }
.btn-add-cart {
  margin-top: auto;
  display: block;
  width: 100%;
  background: var(--cream);
  color: var(--tea-dark);
  border: 1.5px solid var(--tea);
  border-radius: var(--radius-sm);
  padding: 8px;
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
  transition: background .2s, color .2s;
  letter-spacing: .01em;
}
.btn-add-cart:hover { background: var(--tea); color: #fff; }

/* === PRODUCT GRID === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.product-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn-primary { background: var(--tea); color: #fff; border: 1.5px solid var(--tea); }
.btn-primary:hover { background: var(--tea-dark); border-color: var(--tea-dark); }
.btn-secondary { background: var(--white); color: var(--tea); border: 1.5px solid var(--tea); }
.btn-secondary:hover { background: var(--cream); }
.btn-gold { background: var(--gold); color: var(--ink); border: 1.5px solid var(--gold); font-weight: 700; }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-danger { background: var(--red); color: #fff; border: 1.5px solid var(--red); }
.btn-danger:hover { background: #a93226; border-color: #a93226; }
.btn-lg { padding: 13px 28px; font-size: 15px; }
.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-block { display: flex; width: 100%; }

/* === FORMS === */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.form-label .req { color: var(--red); margin-left: 2px; }
.form-control {
  display: block; width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  font-size: 14px; color: var(--ink);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-control:focus { border-color: var(--tea); box-shadow: 0 0 0 3px rgba(74,124,89,.12); }
.form-control::placeholder { color: var(--muted); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7165' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
textarea.form-control { resize: vertical; min-height: 90px; }

/* === SIDEBAR === */
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}
.sidebar-widget-title {
  background: var(--tea);
  color: #fff;
  font-size: 14px; font-weight: 700;
  padding: 10px 16px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.sidebar-widget-body { padding: 12px 16px; }
.sidebar-cat-list a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--ink);
  transition: color .15s;
}
.sidebar-cat-list a:last-child { border-bottom: none; }
.sidebar-cat-list a:hover { color: var(--tea); }
.sidebar-cat-list .count { font-size: 12px; color: var(--muted); background: var(--cream); padding: 1px 7px; border-radius: 10px; }

/* === PAGINATION === */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 24px 0; }
.page-item {
  min-width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  background: var(--white);
  transition: border-color .15s, background .15s, color .15s;
  cursor: pointer;
}
.page-item:hover { border-color: var(--tea); color: var(--tea); }
.page-item.active { background: var(--tea); border-color: var(--tea); color: #fff; font-weight: 700; }

/* === LAYOUT HELPERS === */
.two-col { display: grid; grid-template-columns: 220px 1fr; gap: 24px; }
.two-col-wide { display: grid; grid-template-columns: 1fr 340px; gap: 32px; }

/* === FOOTER === */
.footer {
  background: var(--tea-dark);
  color: rgba(255,255,255,.8);
  margin-top: 48px;
}
.footer-top { padding: 40px 0; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer-col h4 {
  color: var(--gold-light);
  font-size: 13.5px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col p { font-size: 13.5px; line-height: 1.7; margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,.8); font-size: 13.5px; display: block; margin-bottom: 7px; transition: color .15s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-newsletter-form { display: flex; gap: 8px; margin-top: 8px; }
.footer-newsletter-form input {
  flex: 1; border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius-sm);
  background: rgba(255,255,255,.1); color: #fff;
  padding: 8px 12px; font-size: 13px; outline: none;
}
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.footer-newsletter-form input:focus { border-color: var(--gold); }
.footer-newsletter-form button { background: var(--gold); color: var(--ink); border-radius: var(--radius-sm); padding: 8px 14px; font-size: 13px; font-weight: 700; transition: background .2s; border: none; }
.footer-newsletter-form button:hover { background: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 14px 0;
  text-align: center;
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
}

/* === TRUST BADGES === */
.trust-strip { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-icon { font-size: 32px; flex-shrink: 0; }
.trust-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--ink); }
.trust-text span { font-size: 12.5px; color: var(--muted); }

/* === STATUS BADGES === */
.status { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.status-processing { background: #fff3cd; color: #856404; }
.status-shipping { background: #cce5ff; color: #004085; }
.status-done { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }

/* === TABS === */
.tab-nav { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 24px; }
.tab-btn {
  padding: 10px 20px; font-size: 14.5px; font-weight: 600;
  color: var(--muted); background: none; border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px; cursor: pointer;
  transition: color .15s, border-color .15s;
}
.tab-btn:hover { color: var(--tea); }
.tab-btn.active { color: var(--tea); border-bottom-color: var(--tea); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* === STEPPER === */
.checkout-stepper { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 32px; padding: 20px 0; }
.step { display: flex; align-items: center; }
.step-circle {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  border: 2px solid var(--border);
  background: var(--white); color: var(--muted);
  transition: all .2s;
}
.step-label { font-size: 13px; color: var(--muted); margin: 0 8px; white-space: nowrap; font-weight: 500; }
.step-line { width: 40px; height: 2px; background: var(--border); flex-shrink: 0; }
.step.done .step-circle { background: var(--tea); border-color: var(--tea); color: #fff; }
.step.done .step-label { color: var(--tea); font-weight: 600; }
.step.active .step-circle { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.step.active .step-label { color: var(--ink); font-weight: 700; }

/* === QUANTITY STEPPER === */
.qty-stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.qty-btn { width: 34px; height: 36px; background: var(--cream); color: var(--ink); font-size: 18px; font-weight: 700; border: none; cursor: pointer; transition: background .15s; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: var(--border); }
.qty-input { width: 44px; height: 36px; border: none; text-align: center; font-size: 14px; font-weight: 600; color: var(--ink); background: var(--white); outline: none; }

/* === STAR RATING === */
.stars { color: var(--gold); letter-spacing: .05em; }

/* === TABLE === */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { background: var(--cream); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); padding: 10px 14px; text-align: left; border-bottom: 2px solid var(--border); }
.data-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--ink); vertical-align: middle; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--paper); }

/* === ACCOUNT LAYOUT === */
.account-layout { display: grid; grid-template-columns: 220px 1fr; gap: 24px; }
.account-menu { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; align-self: start; }
.account-menu h3 { background: var(--tea); color: #fff; padding: 12px 16px; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.account-menu a { display: flex; align-items: center; gap: 10px; padding: 11px 16px; font-size: 14px; color: var(--ink); border-bottom: 1px solid var(--border); transition: background .15s, color .15s; }
.account-menu a:last-child { border-bottom: none; }
.account-menu a:hover { background: var(--cream); color: var(--tea); }
.account-menu a.active { background: var(--cream); color: var(--tea); font-weight: 600; border-left: 3px solid var(--tea); }

/* === POST CARD === */
.post-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s, transform .2s; }
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.post-thumb { aspect-ratio: 16 / 9; display: flex; align-items: center; justify-content: center; font-size: 56px; }
.post-body { padding: 14px 16px; }
.post-cat { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--tea); background: rgba(74,124,89,.1); padding: 2px 8px; border-radius: 20px; margin-bottom: 8px; }
.post-title { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.4; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.post-title:hover { color: var(--tea); }
.post-meta { font-size: 12.5px; color: var(--muted); margin-bottom: 8px; }
.post-excerpt { font-size: 13.5px; color: var(--muted); line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.post-read-more { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 600; color: var(--tea); margin-top: 10px; transition: gap .15s; }
.post-read-more:hover { gap: 8px; }

/* === ORDER SUMMARY BOX === */
.order-summary-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.order-summary-box h3 { background: var(--tea); color: #fff; padding: 12px 16px; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.order-summary-body { padding: 16px; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; font-size: 14px; border-bottom: 1px solid var(--border); }
.summary-row:last-child { border-bottom: none; }
.summary-total { display: flex; justify-content: space-between; align-items: center; padding: 12px 0 0; font-size: 16px; font-weight: 800; color: var(--red); margin-top: 6px; border-top: 2px solid var(--border); }

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .two-col, .two-col-wide, .account-layout { grid-template-columns: 1fr; }
  .product-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .header-search { max-width: none; }
}
@media (max-width: 820px) {
  /* Header: cho ô tìm kiếm rớt xuống hàng riêng, chiếm trọn chiều ngang */
  .main-header .container { flex-wrap: wrap; row-gap: 10px; }
  .header-search { order: 3; flex-basis: 100%; max-width: none; margin: 0; }
  .header-actions { margin-left: auto; }
  /* Nav: biến hàng link thành thanh cuộn ngang thay vì ẩn đi */
  .nav-bar .container { gap: 0; }
  .nav-links {
    display: flex;
    flex: 1;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a { padding: 12px; }
  .nav-category-btn { padding: 0 14px; font-size: 12.5px; white-space: nowrap; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .topbar { display: none; }
  .checkout-stepper { gap: 0; padding: 14px 0; }
  .step-label { display: none; }
  .step-line { width: 22px; }
  .logo-tagline { display: none; }
  .section-heading h2 { font-size: 17px; }
  .container { padding: 0 12px; }
}
@media (max-width: 480px) {
  .product-grid, .product-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-thumb { font-size: 48px; }
  .product-info { padding: 10px 12px 12px; }
  .product-name { font-size: 13px; }
  .price-now { font-size: 16px; }
  .btn-add-cart { padding: 9px 6px; font-size: 12.5px; }
  .btn-lg { padding: 12px 20px; font-size: 14px; }
  .logo-mark { width: 40px; height: 40px; font-size: 19px; }
  .logo-name { font-size: 15px; }
}

/* === EMOJI IMAGE BOX === */
.emoji-img {
  width: 100%; aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  font-size: 72px;
  border-radius: var(--radius-sm);
}

/* === PROMO BANNER === */
.promo-banner {
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  position: relative;
}
.promo-banner h3 { font-size: 20px; font-weight: 800; color: #fff; text-wrap: balance; text-shadow: 0 1px 2px rgba(0,0,0,.2); }
.promo-banner p { font-size: 14px; color: rgba(255,255,255,.85); }
.promo-banner .promo-emoji { position: absolute; right: 24px; bottom: -8px; font-size: 72px; opacity: .35; pointer-events: none; }

/* === SCROLL CONTAINER === */
.overflow-x { overflow-x: auto; }
