/*
 * Celena CMS — Default theme (Bunzo style)
 * Светлая/тёмная — управляется ядром через [data-theme="dark"] на <html>.
 * CSS-переменные ядра (--bg, --surface, --text, ...) определены в /public/assets/runtime/celena.css.
 */

/* ───── Переменные темы ───── */
:root {
  --bunzo-page: #f5f3ee;
  --bunzo-surface: #ffffff;
  --bunzo-soft: #f9f8f5;
  --bunzo-text: #1a1a1a;
  --bunzo-muted: #8a8d94;
  --bunzo-border: #ececec;
  --bunzo-accent: #f5a065;       /* персиковый акцент */
  --bunzo-accent-soft: #fee9d6;
  --bunzo-dark: #1a1a1a;         /* topbar, footer */
  --bunzo-dark-text: #ffffff;
  --bunzo-tag-bg: #fee9d6;
  --bunzo-tag-text: #b35a14;
  --bunzo-radius: 14px;
  --bunzo-radius-sm: 8px;
  --bunzo-shadow: 0 2px 8px rgba(0,0,0,0.04);
  --bunzo-shadow-md: 0 8px 24px rgba(0,0,0,0.06);
  --bunzo-font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --bunzo-content-max: 1240px;
  --bunzo-gap: 28px;
}

[data-theme="dark"] {
  --bunzo-page: #0e1018;
  --bunzo-surface: #161922;
  --bunzo-soft: #12141d;
  --bunzo-text: #e7e9f0;
  --bunzo-muted: #9da2ab;
  --bunzo-border: #262936;
  --bunzo-accent: #f5a065;
  --bunzo-accent-soft: #3a2a1d;
  --bunzo-dark: #0a0c12;
  --bunzo-tag-bg: #3a2a1d;
  --bunzo-tag-text: #f5a065;
  --bunzo-shadow: 0 2px 8px rgba(0,0,0,0.32);
  --bunzo-shadow-md: 0 8px 24px rgba(0,0,0,0.42);
}

/* ───── Глобальная типографика ───── */
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--bunzo-font);
  background: var(--bunzo-page);
  color: var(--bunzo-text);
  line-height: 1.55;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--bunzo-accent); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.25; margin: 0 0 .5em; color: var(--bunzo-text); }
.bz-muted { color: var(--bunzo-muted); }

/* ───── Контейнер ───── */
.bz-container {
  max-width: var(--bunzo-content-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

/* ───── Top bar (чёрная плашка с языком/контактами/погодой) ───── */
.bz-topbar {
  background: var(--bunzo-dark);
  color: var(--bunzo-dark-text);
  font-size: 13px;
}
.bz-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 0;
}
.bz-topbar-left, .bz-topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.bz-topbar a { color: var(--bunzo-dark-text); opacity: .85; }
.bz-topbar a:hover { color: var(--bunzo-accent); opacity: 1; }
.bz-topbar .bz-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--bunzo-dark-text); opacity: .4; }
.bz-topbar .bz-icon-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.bz-topbar .icon { width: 14px; height: 14px; }

/* ───── Header ───── */
.bz-header {
  background: var(--bunzo-surface);
  border-bottom: 1px solid var(--bunzo-border);
}
.bz-header-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
}
.bz-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 26px;
  font-weight: 700;
  color: var(--bunzo-text);
}
.bz-logo svg { color: var(--bunzo-accent); }
.bz-promo {
  background: var(--bunzo-soft);
  border-radius: var(--bunzo-radius-sm);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 560px;
  margin: 0 auto;
}
.bz-promo-text strong { display: block; font-size: 15px; }
.bz-promo-text span { font-size: 13px; color: var(--bunzo-muted); }
.bz-promo-img { width: 90px; height: 50px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.bz-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bz-icon-btn {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border: 1px solid var(--bunzo-border);
  background: var(--bunzo-surface);
  border-radius: 50%;
  color: var(--bunzo-text);
  position: relative;
}
.bz-icon-btn:hover { border-color: var(--bunzo-accent); color: var(--bunzo-accent); }
.bz-icon-btn .icon { width: 18px; height: 18px; }
.bz-cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--bunzo-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center; justify-content: center;
  line-height: 1;
}

/* Навигация */
.bz-header-nav {
  border-top: 1px solid var(--bunzo-border);
  background: var(--bunzo-surface);
}
.bz-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.bz-nav-social {
  display: flex;
  gap: 8px;
}
.bz-nav-social a {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: var(--bunzo-soft);
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--bunzo-text);
}
.bz-nav-social a:hover { background: var(--bunzo-accent); color: #fff; }
.bz-nav-social .icon { width: 16px; height: 16px; }

.bz-nav-menu {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.bz-nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--bunzo-text);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.bz-nav-menu a.is-active { color: var(--bunzo-accent); }
.bz-nav-menu a.is-active::after {
  content: ''; position: absolute; bottom: -16px; left: 0; right: 0;
  height: 2px; background: var(--bunzo-accent);
}
/* MenuTag добавляет .menu-item .is-active .has-children + вложенный .menu-sub */
.bz-nav-menu .menu-item.is-active > a { color: var(--bunzo-accent); }
.bz-nav-menu .menu-item { position: relative; }
.bz-nav-menu .menu-item.has-children > a::after { content: ''; display: inline-block; width: 6px; height: 6px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-left: 4px; opacity: .6; }
.bz-nav-menu .menu-sub {
  display: none; position: absolute; top: 100%; left: 0; min-width: 200px;
  list-style: none; margin: 8px 0 0; padding: 8px 0;
  background: var(--bunzo-surface); border: 1px solid var(--bunzo-border);
  border-radius: 8px; box-shadow: var(--bunzo-shadow-md); z-index: 40;
}
.bz-nav-menu .menu-item.has-children:hover > .menu-sub,
.bz-nav-menu .menu-item.has-children:focus-within > .menu-sub { display: block; }
.bz-nav-menu .menu-sub a { display: block; padding: 8px 16px; font-size: 13px; }
.bz-nav-menu .menu-sub a:hover { background: var(--bunzo-surface-2, rgba(0,0,0,.04)); }
.bz-nav-menu .menu-divider { border-top: 1px solid var(--bunzo-border); margin: 6px 0; }
.bz-burger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--bunzo-border);
  background: var(--bunzo-surface);
  border-radius: 8px;
  align-items: center; justify-content: center;
  color: var(--bunzo-text);
}

/* ───── Hero ───── */
.bz-hero {
  background: var(--bunzo-soft);
  border-radius: var(--bunzo-radius);
  padding: 28px;
  margin: 32px 0;
  display: grid;
  /* thumbs ~95px + main (расширен) + side ~30% общей ширины */
  grid-template-columns: 95px 2.1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.bz-hero-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: space-between;
}
.bz-hero-thumb {
  border-radius: var(--bunzo-radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
  background: var(--bunzo-border);
  border: 2px solid transparent;
  transition: border-color .2s, transform .2s;
  padding: 0;
  flex: 0 0 auto;
}
.bz-hero-thumb img { width: 100%; height: 100%; object-fit: cover; }
.bz-hero-thumb.is-active { border-color: var(--bunzo-accent); }
.bz-hero-thumb:hover { border-color: var(--bunzo-accent); transform: translateY(-2px); }

.bz-hero-main {
  border-radius: var(--bunzo-radius);
  overflow: hidden;
  position: relative;
  background: var(--bunzo-border);
  min-height: 540px;
  display: block;
  text-decoration: none;
  color: #fff;
}
.bz-hero-main img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: opacity .2s; }
.bz-hero-main::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.05) 55%);
  pointer-events: none;
}
.bz-hero-caption {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
}
.bz-hero-caption .bz-tag {
  align-self: flex-start;
  background: var(--bunzo-accent);
  color: #fff;
}
.bz-hero-caption h2 {
  color: #fff;
  font-size: 26px;
  line-height: 1.25;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.bz-hero-caption .bz-card-meta { color: rgba(255,255,255,.85); }
.bz-hero-caption .bz-card-meta a { color: #fff; }
.bz-hero-read {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 9px 22px;
  background: var(--bunzo-accent);
  color: #fff;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s;
}
.bz-hero-read:hover { background: #e58850; color: #fff; }

.bz-hero-side { display: flex; flex-direction: column; gap: 12px; }
.bz-hero-side-card {
  background: var(--bunzo-surface);
  border-radius: var(--bunzo-radius-sm);
  padding: 12px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 0;
  color: var(--bunzo-text);
  text-decoration: none;
  transition: transform .18s, box-shadow .18s;
}
.bz-hero-side-card:hover { transform: translateY(-2px); box-shadow: var(--bunzo-shadow); color: var(--bunzo-text); }
.bz-hero-side-card:hover .bz-card-title { color: var(--bunzo-accent); }
.bz-hero-side-card .bz-tag { align-self: flex-start; font-size: 11px; padding: 3px 10px; }
.bz-hero-side-card .bz-by { font-size: 12px; margin-left: 0; }
.bz-hero-side-card .bz-card-title {
  font-size: 14px;
  margin: 2px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bz-hero-side-card .bz-card-meta { font-size: 12px; gap: 8px; }

/* ───── Карточки статей ───── */
.bz-tag {
  display: inline-block;
  background: var(--bunzo-tag-bg);
  color: var(--bunzo-tag-text);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: capitalize;
}
.bz-by { font-size: 13px; color: var(--bunzo-muted); margin-left: 8px; }
.bz-by b { color: var(--bunzo-text); font-weight: 500; }
.bz-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--bunzo-text);
  line-height: 1.4;
  margin: 6px 0;
}
.bz-card-title a { color: inherit; }
.bz-card-title a:hover { color: var(--bunzo-accent); }
.bz-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--bunzo-muted);
}
.bz-card-meta .icon { width: 14px; height: 14px; }
.bz-card-meta-actions { margin-left: auto; display: flex; gap: 10px; }
.bz-card-meta-actions button {
  width: 28px; height: 28px;
  border: 1px solid var(--bunzo-border);
  background: transparent;
  border-radius: 6px;
  color: var(--bunzo-muted);
  display: inline-flex; align-items: center; justify-content: center;
}
.bz-card-meta-actions button:hover { color: var(--bunzo-accent); border-color: var(--bunzo-accent); }
.bz-card-short {
  font-size: 13px;
  color: var(--bunzo-muted);
  margin: 4px 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ───── Секции ───── */
.bz-section { margin: 48px 0; }
.bz-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}
.bz-section-title { font-size: 20px; font-weight: 700; margin: 0; }
.bz-section-arrows { display: flex; gap: 8px; }
.bz-section-arrows button {
  width: 36px; height: 36px;
  border: 1px solid var(--bunzo-border);
  border-radius: 50%;
  background: var(--bunzo-surface);
  color: var(--bunzo-text);
  display: inline-flex; align-items: center; justify-content: center;
}
.bz-section-arrows button:hover { background: var(--bunzo-accent); border-color: var(--bunzo-accent); color: #fff; }

/* Trending Article — горизонтальные карточки 2 колонки × 3 ряда */
.bz-trending-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.bz-trending-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: start;
}
.bz-trending-card-img {
  border-radius: var(--bunzo-radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bunzo-border);
}
.bz-trending-card-img img { width: 100%; height: 100%; object-fit: cover; }

/* From Following — крупные тёмные карточки + правый блок автора */
.bz-following-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}
.bz-following-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.bz-following-card {
  background: var(--bunzo-surface);
  border-radius: var(--bunzo-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bz-following-card .bz-cover {
  aspect-ratio: 16/10;
  background: var(--bunzo-border);
  position: relative;
  overflow: hidden;
}
.bz-following-card .bz-cover img { width: 100%; height: 100%; object-fit: cover; }
.bz-following-card .bz-body { padding: 16px; }

/* Sidebar (right) на главной и в news_full */
.bz-sidebar { display: flex; flex-direction: column; gap: 24px; }
.bz-sidebar-card {
  background: var(--bunzo-surface);
  border-radius: var(--bunzo-radius);
  padding: 22px;
}
.bz-author-card { text-align: center; }
.bz-author-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--bunzo-accent-soft);
  margin: 0 auto 12px;
  overflow: hidden;
}
.bz-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.bz-author-name { font-size: 17px; font-weight: 700; margin: 0 0 4px; }
.bz-author-role { font-size: 13px; color: var(--bunzo-muted); margin: 0 0 12px; }
.bz-author-bio { font-size: 13px; color: var(--bunzo-muted); margin: 0 0 16px; line-height: 1.55; }
.bz-author-social {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}
.bz-author-social a {
  width: 34px; height: 34px;
  border-radius: 6px;
  background: var(--bunzo-soft);
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--bunzo-text);
}
.bz-author-social a:hover { background: var(--bunzo-accent); color: #fff; }
.bz-author-social .icon { width: 14px; height: 14px; }
.bz-btn-pill {
  display: inline-flex;
  align-items: center; gap: 8px;
  padding: 9px 22px;
  background: var(--bunzo-accent-soft);
  color: var(--bunzo-accent);
  border-radius: 30px;
  border: 0;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}
.bz-btn-pill:hover { background: var(--bunzo-accent); color: #fff; }

.bz-side-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 16px;
}
.bz-side-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
}
.bz-side-list .bz-side-img {
  width: 64px; height: 64px;
  border-radius: var(--bunzo-radius-sm);
  background: var(--bunzo-border);
  overflow: hidden;
}
.bz-side-list .bz-side-img img { width: 100%; height: 100%; object-fit: cover; }
.bz-side-list .bz-side-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 4px;
}
.bz-side-list .bz-side-title a { color: var(--bunzo-text); }
.bz-side-list .bz-side-title a:hover { color: var(--bunzo-accent); }
.bz-side-list .bz-side-date { font-size: 12px; color: var(--bunzo-muted); display: inline-flex; align-items: center; gap: 4px; }
.bz-side-list .bz-side-date .icon { width: 12px; height: 12px; }

/* Stay In Touch — соц-сетевая сетка */
.bz-social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.bz-social-tile {
  background: var(--bunzo-soft);
  border-radius: var(--bunzo-radius-sm);
  padding: 14px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--bunzo-text);
}
.bz-social-tile.is-fb { background: #2563eb; color: #fff; }
.bz-social-tile.is-tw { background: #1da1f2; color: #fff; }
.bz-social-tile.is-be { background: #1769ff; color: #fff; }
.bz-social-tile.is-yt { background: #ff0000; color: #fff; }
.bz-social-tile.is-dr { background: #ea4c89; color: #fff; }
.bz-social-tile.is-li { background: #0a66c2; color: #fff; }
.bz-social-tile .icon { width: 18px; height: 18px; }

/* Trending Topic — карусель категорий */
.bz-topics-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.bz-topics-row::-webkit-scrollbar { display: none; }
.bz-topic {
  flex: 0 0 calc(20% - 13px);
  min-width: 180px;
  height: 130px;
  border-radius: var(--bunzo-radius-sm);
  overflow: hidden;
  position: relative;
  background: var(--bunzo-border);
  scroll-snap-align: start;
}
.bz-topic img { width: 100%; height: 100%; object-fit: cover; }
.bz-topic::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.05) 60%);
}
.bz-topic-label {
  position: absolute;
  bottom: 14px; left: 16px; right: 16px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  z-index: 1;
}

/* Newsletter */
.bz-newsletter {
  background: var(--bunzo-soft);
  border-radius: var(--bunzo-radius);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 18px;
  align-items: center;
}
.bz-newsletter-title { font-size: 18px; font-weight: 700; margin: 0; }
.bz-newsletter-form { display: flex; gap: 10px; }
.bz-newsletter-form input {
  flex: 1;
  height: 46px;
  border: 1px solid var(--bunzo-border);
  background: var(--bunzo-surface);
  color: var(--bunzo-text);
  border-radius: var(--bunzo-radius-sm);
  padding: 0 16px;
  font-size: 14px;
}
.bz-newsletter-form input:focus { outline: 2px solid var(--bunzo-accent); outline-offset: -1px; }
.bz-newsletter-form button {
  height: 46px;
  border: 0;
  background: var(--bunzo-accent-soft);
  color: var(--bunzo-accent);
  font-weight: 600;
  padding: 0 22px;
  border-radius: var(--bunzo-radius-sm);
  font-size: 14px;
}
.bz-newsletter-form button:hover { background: var(--bunzo-accent); color: #fff; }
.bz-newsletter-msg { grid-column: 1 / -1; font-size: 13px; color: var(--bunzo-muted); margin-top: 4px; }
.bz-newsletter-img { justify-self: end; max-height: 80px; opacity: .8; }

/* Featured Video */
.bz-video-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr;
  gap: 24px;
}
.bz-video-main {
  border-radius: var(--bunzo-radius);
  overflow: hidden;
  background: #b8d8d4;
  aspect-ratio: 16/11;
  position: relative;
  cursor: pointer;
}
.bz-video-main img { width: 100%; height: 100%; object-fit: cover; }
.bz-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.bz-play span {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bunzo-accent);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(245,160,101,.5);
}
.bz-play .icon { width: 24px; height: 24px; }
.bz-video-side {
  display: flex; flex-direction: column; gap: 16px;
}
.bz-video-card {
  background: var(--bunzo-surface);
  border-radius: var(--bunzo-radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.bz-video-card .bz-cover { aspect-ratio: 16/9; }
.bz-video-card .bz-cover img { width: 100%; height: 100%; object-fit: cover; }
.bz-video-card .bz-play span { width: 42px; height: 42px; }
.bz-video-card .bz-body { padding: 12px; }

/* Promo card в самом низу страницы */
.bz-bottom-promo {
  background: var(--bunzo-soft);
  border-radius: var(--bunzo-radius);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.bz-bottom-promo h3 { margin: 0; font-size: 20px; }
.bz-bottom-promo p { margin: 0; color: var(--bunzo-muted); font-size: 13px; }
.bz-bottom-promo img { max-height: 80px; }

/* ───── Footer ───── */
.bz-footer {
  background: var(--bunzo-dark);
  color: var(--bunzo-dark-text);
  padding: 60px 0 24px;
  margin-top: 60px;
}
.bz-footer a { color: var(--bunzo-dark-text); opacity: .8; }
.bz-footer a:hover { color: var(--bunzo-accent); opacity: 1; }
.bz-footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.bz-footer h4 {
  color: var(--bunzo-dark-text);
  font-size: 16px;
  margin: 0 0 18px;
  font-weight: 600;
}
.bz-footer-about p { font-size: 13px; opacity: .7; line-height: 1.6; margin: 14px 0 18px; }
.bz-footer-about .bz-logo { color: var(--bunzo-dark-text); margin-bottom: 8px; }
.bz-footer-social { display: flex; gap: 8px; }
.bz-footer-social a {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.08);
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 1;
}
.bz-footer-social a:hover { background: var(--bunzo-accent); }
.bz-footer-social .icon { width: 14px; height: 14px; }
.bz-footer-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
}
.bz-footer-subscribe input {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 0;
  border-radius: var(--bunzo-radius-sm);
  padding: 12px 14px;
  color: var(--bunzo-dark-text);
  font-size: 13px;
  margin-bottom: 10px;
  font-family: inherit;
  box-sizing: border-box;
}
.bz-footer-subscribe input::placeholder { color: rgba(255,255,255,.5); }
.bz-footer-subscribe button {
  width: 100%;
  background: var(--bunzo-accent-soft);
  color: var(--bunzo-accent);
  border: 0;
  padding: 12px;
  border-radius: var(--bunzo-radius-sm);
  font-weight: 600;
  font-size: 13px;
}
.bz-footer-subscribe button:hover { background: var(--bunzo-accent); color: #fff; }
.bz-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 13px;
  opacity: .65;
  flex-wrap: wrap;
  gap: 12px;
}
.bz-share-thinking {
  background: var(--bunzo-accent-soft);
  color: var(--bunzo-accent);
  padding: 10px 22px;
  border-radius: 30px;
  border: 0;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bz-share-thinking:hover { background: var(--bunzo-accent); color: #fff; }

/* ───── Article (news_full) ───── */
.bz-article-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  margin: 32px 0;
}
.bz-article-cover {
  width: 100%;
  border-radius: var(--bunzo-radius);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--bunzo-border);
  margin-bottom: 24px;
}
.bz-article-cover img { width: 100%; height: 100%; object-fit: cover; }
.bz-article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--bunzo-muted);
  margin: 16px 0;
}
.bz-article-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  margin: 16px 0 24px;
}
.bz-article-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--bunzo-muted);
}
.bz-article-body h2, .bz-article-body h3 { color: var(--bunzo-text); margin: 1.6em 0 .6em; }
.bz-article-body p { margin: 0 0 1.2em; }
.bz-article-body blockquote {
  background: var(--bunzo-soft);
  border-radius: var(--bunzo-radius);
  padding: 32px 40px;
  margin: 32px 0;
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  color: var(--bunzo-text);
  line-height: 1.5;
  position: relative;
  border-left: 0;
  font-style: normal;
}
.bz-article-body blockquote::before {
  content: '"';
  display: block;
  font-size: 56px;
  color: var(--bunzo-accent);
  line-height: .5;
  margin-bottom: 12px;
  font-family: serif;
}
.bz-article-body img { border-radius: var(--bunzo-radius-sm); margin: 1em 0; }
.bz-article-body a { color: var(--bunzo-accent); text-decoration: underline; }

.bz-tags-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 32px 0 24px;
  flex-wrap: wrap;
}
.bz-tags { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; font-size: 14px; }
.bz-tags b { color: var(--bunzo-text); }
.bz-tags a { color: var(--bunzo-accent); }
.bz-share-row { display: flex; gap: 8px; }
.bz-share-row a {
  width: 36px; height: 36px;
  border: 1px solid var(--bunzo-border);
  border-radius: var(--bunzo-radius-sm);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--bunzo-text);
}
.bz-share-row a:hover { background: var(--bunzo-accent); color: #fff; border-color: var(--bunzo-accent); }
.bz-share-row .icon { width: 14px; height: 14px; }

/* Comments */
.bz-comments {
  background: var(--bunzo-surface);
  border-radius: var(--bunzo-radius);
  padding: 32px;
  margin: 32px 0;
}
.bz-comments h2 { font-size: 22px; margin: 0 0 24px; }
.bz-comment {
  border-bottom: 1px solid var(--bunzo-border);
  padding: 20px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
}
.bz-comment:last-child { border-bottom: 0; }
.bz-comment-avatar {
  width: 48px; height: 48px;
  border-radius: 8px;
  background: var(--bunzo-dark);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.bz-comment-head { display: flex; gap: 12px; align-items: baseline; margin-bottom: 6px; font-size: 13px; }
.bz-comment-head b { color: var(--bunzo-text); font-size: 14px; }
.bz-comment-head .bz-muted { color: var(--bunzo-muted); }
.bz-comment-body { color: var(--bunzo-text); font-size: 14px; line-height: 1.6; }
.bz-comment-form {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}
.bz-comment-form .bz-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bz-comment-form input:not([type="radio"]):not([type="checkbox"]),
.bz-comment-form textarea {
  width: 100%;
  border: 1px solid var(--bunzo-border);
  background: var(--bunzo-soft);
  color: var(--bunzo-text);
  border-radius: var(--bunzo-radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  box-sizing: border-box;
}
.bz-comment-form input[type="radio"],
.bz-comment-form input[type="checkbox"] {
  width: auto; padding: 0; margin: 0; flex-shrink: 0; accent-color: var(--bunzo-accent);
}
.bz-comment-form textarea { min-height: 110px; resize: vertical; }
.bz-comment-form input:focus,
.bz-comment-form textarea:focus { outline: 2px solid var(--bunzo-accent); outline-offset: -1px; }
.bz-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--bunzo-accent);
  color: #fff;
  border: 0;
  border-radius: var(--bunzo-radius-sm);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  justify-self: start;
}
.bz-btn-primary:hover { background: #e58850; color: #fff; }
.bz-alert {
  padding: 12px 16px;
  border-radius: var(--bunzo-radius-sm);
  font-size: 14px;
  margin-bottom: 12px;
}
.bz-alert.success { background: #dcfce7; color: #166534; }
.bz-alert.info { background: #dbeafe; color: #1e40af; }
.bz-alert.error { background: #fee2e2; color: #991b1b; }

/* ───── Checkout: радио способов доставки/оплаты, промокод ───── */
.bz-radio-group { display: grid; gap: 8px; margin-bottom: 14px; }
.bz-radio {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border: 1px solid var(--bunzo-border, #e5e7eb);
  border-radius: 10px; cursor: pointer; background: #fff;
  transition: border-color .15s, background .15s;
}
.bz-radio:hover { border-color: var(--bunzo-accent); }
.bz-radio:has(input:checked) { border-color: var(--bunzo-accent); background: #fafaff; }
.bz-radio input[type="radio"] { margin: 0; accent-color: var(--bunzo-accent); }
.bz-radio__body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.bz-radio__title { font-weight: 600; font-size: 14px; color: var(--bunzo-text, #111); }
.bz-radio__desc { font-size: 12px; color: var(--bunzo-muted, #6b7280); }
.bz-radio__price { font-weight: 700; color: var(--bunzo-accent); white-space: nowrap; }
.bz-promo { display: flex; flex-direction: column; gap: 8px; margin-bottom: 10px; }
.bz-promo__row { display: flex; gap: 8px; align-items: stretch; }
.bz-promo__row > input { flex: 1; }
.bz-btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 18px; background: #fff; color: var(--bunzo-text);
  border: 1px solid var(--bunzo-border); border-radius: var(--bunzo-radius-sm);
  font-weight: 600; font-size: 14px; cursor: pointer; white-space: nowrap;
  transition: border-color .15s, color .15s;
}
.bz-btn-secondary:hover { border-color: var(--bunzo-accent); color: var(--bunzo-accent); }
.bz-promo__status { font-size: 13px; padding: 8px 12px; border-radius: 6px; }
.bz-promo__status.is-ok { background: #dcfce7; color: #166534; }
.bz-promo__status.is-err { background: #fee2e2; color: #991b1b; }
@keyframes bz-total-bump {
  0%   { transform: scale(1);    color: var(--bunzo-text, #111); }
  35%  { transform: scale(1.08); color: var(--bunzo-accent); }
  100% { transform: scale(1);    color: var(--bunzo-text, #111); }
}
.bz-total--bump { animation: bz-total-bump .45s ease; display: inline-block; }

/* ───── Pagination ───── */
.bz-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 32px 0;
}
.bz-pagination a, .bz-pagination span {
  display: inline-flex;
  align-items: center; justify-content: center;
  min-width: 38px; height: 38px;
  padding: 0 12px;
  border: 1px solid var(--bunzo-border);
  border-radius: var(--bunzo-radius-sm);
  font-size: 14px;
  color: var(--bunzo-text);
  background: var(--bunzo-surface);
}
.bz-pagination a:hover { border-color: var(--bunzo-accent); color: var(--bunzo-accent); }
.bz-pagination .current { background: var(--bunzo-accent); color: #fff; border-color: var(--bunzo-accent); }

/* ───── Page title (для news_list/category/search/page) ───── */
.bz-page-head {
  background: var(--bunzo-soft);
  border-radius: var(--bunzo-radius);
  padding: 36px 32px;
  margin: 32px 0;
}
.bz-page-head h1 { font-size: 32px; margin: 0 0 8px; }
.bz-page-head p { margin: 0; color: var(--bunzo-muted); }
.bz-page-head .bz-breadcrumbs { font-size: 13px; color: var(--bunzo-muted); margin-top: 8px; }
.bz-page-head .bz-breadcrumbs a { color: var(--bunzo-accent); }

/* ───── 404 ───── */
.bz-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 56vh;
  padding: 64px 24px 80px;
}
.bz-404-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
/* мягкое акцентное пятно за цифрой — адаптируется к light/dark через accent-soft */
.bz-404-art::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  max-width: 82vw;
  max-height: 82vw;
  border-radius: 50%;
  background: radial-gradient(circle, var(--bunzo-accent-soft) 0%, transparent 70%);
  z-index: 0;
}
.bz-404-num {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(110px, 26vw, 220px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--bunzo-accent);
  text-shadow: 0 12px 32px rgba(245, 160, 101, 0.28);
}
.bz-404-title {
  font-size: clamp(22px, 4vw, 30px);
  margin: 0 0 10px;
}
.bz-404-text {
  max-width: 460px;
  margin: 0 0 28px;
  color: var(--bunzo-muted);
}
.bz-404-search {
  width: 100%;
  margin: 0 auto 28px;
}
.bz-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.bz-404-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: center;
  margin-top: 28px;
  font-size: 14px;
}
.bz-404-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--bunzo-muted);
  transition: color .15s;
}
.bz-404-links a:hover { color: var(--bunzo-accent); }

/* ───── Search form (общий вид) ───── */
.bz-search-form { display: flex; gap: 8px; max-width: 540px; margin: 0 auto 24px; }
.bz-search-form input {
  flex: 1; height: 46px; padding: 0 16px;
  border: 1px solid var(--bunzo-border);
  border-radius: var(--bunzo-radius-sm);
  background: var(--bunzo-surface); color: var(--bunzo-text);
  font-size: 14px;
}
.bz-search-form button {
  height: 46px; padding: 0 22px;
  background: var(--bunzo-accent); color: #fff;
  border: 0; border-radius: var(--bunzo-radius-sm);
  font-weight: 600;
}

/* ───── Shop overrides ───── */
.bz-shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  margin: 32px 0;
}
.bz-shop-side { display: flex; flex-direction: column; gap: 18px; }
.bz-shop-side h4 { margin: 0 0 8px; font-size: 14px; text-transform: uppercase; letter-spacing: .03em; color: var(--bunzo-muted); }
.bz-shop-cats { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.bz-shop-cats a {
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--bunzo-text);
  font-size: 14px;
}
.bz-shop-cats a:hover, .bz-shop-cats a.is-active { background: var(--bunzo-soft); color: var(--bunzo-accent); }

.bz-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.bz-product-card {
  background: var(--bunzo-surface);
  border-radius: var(--bunzo-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bz-product-cover {
  aspect-ratio: 1;
  background: var(--bunzo-soft);
  position: relative;
  overflow: hidden;
}
.bz-product-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.bz-product-card:hover .bz-product-cover img { transform: scale(1.04); }
.bz-product-cover .no-cover {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--bunzo-muted); font-size: 28px;
}
.bz-product-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.bz-product-title {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}
.bz-product-title a { color: var(--bunzo-text); }
.bz-product-title a:hover { color: var(--bunzo-accent); }
.bz-product-price {
  font-weight: 700;
  font-size: 16px;
  color: var(--bunzo-accent);
}
.bz-product-price .old {
  text-decoration: line-through;
  color: var(--bunzo-muted);
  font-weight: 400;
  font-size: 13px;
  margin-left: 8px;
}
.bz-product-card .bz-btn-primary { width: 100%; justify-content: center; padding: 10px; font-size: 13px; }

/* Product page */
.bz-product-page {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  background: var(--bunzo-surface);
  border-radius: var(--bunzo-radius);
  padding: 32px;
  margin: 32px 0;
}
.bz-product-gallery {
  border-radius: var(--bunzo-radius-sm);
  background: var(--bunzo-soft);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bz-product-gallery img { width: 100%; height: 100%; object-fit: cover; }
.bz-product-info h1 { font-size: 28px; margin: 0 0 12px; }
.bz-product-info .bz-price-big {
  font-size: 32px;
  font-weight: 700;
  color: var(--bunzo-accent);
  margin: 16px 0;
}
.bz-product-info .bz-price-big .old { font-size: 18px; color: var(--bunzo-muted); text-decoration: line-through; margin-left: 12px; }
.bz-add-row { display: flex; gap: 12px; margin: 24px 0; }
.bz-add-row input[type="number"] {
  width: 80px; height: 46px;
  border: 1px solid var(--bunzo-border);
  border-radius: var(--bunzo-radius-sm);
  text-align: center;
  background: var(--bunzo-surface);
  color: var(--bunzo-text);
  font-size: 15px;
}
.bz-add-row .bz-btn-primary { padding: 0 32px; height: 46px; }
.bz-variation-options { display: flex; flex-direction: column; gap: 10px; margin: 18px 0; }
.bz-variation-options .variation-option { display: flex; align-items: center; gap: 12px; }
.bz-variation-options .variation-option-name { font-weight: 600; min-width: 80px; font-size: 14px; }
.bz-variation-options select {
  flex: 1; height: 38px; padding: 0 12px;
  border: 1px solid var(--bunzo-border);
  border-radius: var(--bunzo-radius-sm);
  background: var(--bunzo-surface);
  color: var(--bunzo-text);
}

/* Cart / Checkout */
.bz-cart-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin: 32px 0;
}
.bz-cart-table { width: 100%; border-collapse: collapse; background: var(--bunzo-surface); border-radius: var(--bunzo-radius); overflow: hidden; }
.bz-cart-table th, .bz-cart-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--bunzo-border); font-size: 14px; }
.bz-cart-table th { background: var(--bunzo-soft); font-size: 12px; text-transform: uppercase; letter-spacing: .03em; color: var(--bunzo-muted); }
.bz-cart-table tr:last-child td { border-bottom: 0; }
.bz-cart-table .cart-qty { width: 70px; padding: 6px; border: 1px solid var(--bunzo-border); border-radius: 6px; text-align: center; }
.bz-cart-table .cart-del { background: transparent; border: 0; color: var(--bunzo-muted); cursor: pointer; font-size: 18px; }
.bz-cart-table .cart-del:hover { color: #ef4444; }

.bz-cart-summary {
  background: var(--bunzo-surface);
  border-radius: var(--bunzo-radius);
  padding: 22px;
  height: fit-content;
}
.bz-cart-summary h3 { font-size: 16px; margin: 0 0 16px; }
.bz-cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--bunzo-border);
  font-size: 14px;
}
.bz-cart-summary-row.total { border-bottom: 0; padding-top: 16px; font-weight: 700; font-size: 16px; }
.bz-cart-summary-row.total .val { color: var(--bunzo-accent); }
.bz-cart-summary .bz-btn-primary { width: 100%; justify-content: center; margin-top: 16px; }

.bz-empty-state {
  background: var(--bunzo-surface);
  border-radius: var(--bunzo-radius);
  padding: 60px 24px;
  text-align: center;
  color: var(--bunzo-muted);
}
.bz-empty-state .bz-empty-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--bunzo-soft);
  margin: 0 auto 16px;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--bunzo-accent);
}
.bz-empty-state .bz-empty-icon .icon { width: 32px; height: 32px; }
.bz-empty-state h3 { font-size: 18px; margin: 0 0 8px; color: var(--bunzo-text); }

.bz-breadcrumbs {
  font-size: 13px;
  color: var(--bunzo-muted);
  margin: 24px 0 16px;
}
.bz-breadcrumbs a { color: var(--bunzo-text); }
.bz-breadcrumbs a:hover { color: var(--bunzo-accent); }

/* Theme switcher in topbar */
.bz-theme-switch {
  display: inline-flex;
  gap: 4px;
  border-radius: 20px;
  padding: 2px;
  background: rgba(255,255,255,.08);
}
.bz-theme-switch button {
  background: transparent;
  border: 0;
  color: var(--bunzo-dark-text);
  width: 26px; height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  opacity: .6;
}
.bz-theme-switch button:hover, .bz-theme-switch button[aria-pressed="true"] { opacity: 1; background: var(--bunzo-accent); }
.bz-theme-switch .icon { width: 14px; height: 14px; }

/* ───── Video modal ───── */
.bz-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.85);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
  padding: 32px;
}
.bz-modal[hidden] { display: none; }
.bz-modal-inner {
  position: relative;
  width: 100%;
  max-width: 880px;
  aspect-ratio: 16/9;
}
.bz-modal-close {
  position: absolute;
  top: -40px; right: 0;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}
.bz-modal iframe { width: 100%; height: 100%; border: 0; border-radius: var(--bunzo-radius); }

/* ───── Mobile ───── */
@media (max-width: 1024px) {
  .bz-hero { grid-template-columns: 1fr; }
  .bz-hero-thumbs { flex-direction: row; overflow-x: auto; }
  .bz-hero-thumb { flex: 0 0 90px; }
  .bz-hero-main { min-height: 360px; }
  .bz-hero-caption h2 { font-size: 20px; }
  .bz-hero-side { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .bz-following-layout { grid-template-columns: 1fr; }
  .bz-article-layout { grid-template-columns: 1fr; }
  .bz-video-grid { grid-template-columns: 1fr; }
  .bz-cart-layout { grid-template-columns: 1fr; }
  .bz-product-page { grid-template-columns: 1fr; padding: 20px; }
  .bz-shop-layout { grid-template-columns: 1fr; }
  .bz-products-grid { grid-template-columns: repeat(2, 1fr); }
  .bz-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .bz-footer-about { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .bz-burger { display: inline-flex; }
  .bz-nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--bunzo-surface); padding: 16px; gap: 16px; box-shadow: var(--bunzo-shadow-md); z-index: 50; }
  .bz-nav-menu.is-open { display: flex; }
  .bz-nav-row { position: relative; }
  .bz-nav-social { display: none; }
  .bz-trending-grid { grid-template-columns: 1fr; }
  .bz-trending-card { grid-template-columns: 110px 1fr; }
  .bz-following-grid { grid-template-columns: 1fr; }
  .bz-newsletter { grid-template-columns: 1fr; text-align: center; }
  .bz-newsletter-img { display: none; }
  .bz-section-head { flex-wrap: wrap; }
  .bz-header-top { grid-template-columns: 1fr auto; }
  .bz-promo { display: none; }
  .bz-products-grid { grid-template-columns: 1fr 1fr; }
  .bz-comment-form .bz-row { grid-template-columns: 1fr; }
  .bz-topbar-left, .bz-topbar-right { gap: 10px; }
  .bz-topbar { font-size: 11px; }
  .bz-footer-grid { grid-template-columns: 1fr; }
  .bz-comments { padding: 20px; }
  .bz-article-title { font-size: 22px; }
}
@media (max-width: 480px) {
  .bz-products-grid { grid-template-columns: 1fr; }
  .bz-trending-grid { grid-template-columns: 1fr; }
  .bz-trending-card { grid-template-columns: 1fr; }
  .bz-trending-card-img { aspect-ratio: 16/9; }
  .bz-topic { flex: 0 0 calc(50% - 8px); }
  .bz-bottom-promo { flex-direction: column; text-align: center; }
}
