:root {
  --bz-primary: #333A7B;
  --bz-primary-dark: #252A5C;
  --bz-primary-soft: #EEF0F8;
  --bz-accent: #70C6C7;
  --bz-gold: #D4A017;
  --bz-bg: #F4F5F9;
  --bz-card: #FFFFFF;
  --bz-text: #1C1F3A;
  --bz-muted: #6B7280;
  --bz-border: #E6E8F0;
  --bz-danger: #E11D48;
  --bz-success: #16A34A;
  --bz-shadow: 0 10px 30px rgba(51, 58, 123, 0.08);
  --bz-radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body.bz-body {
  margin: 0;
  font-family: "Almarai", "Segoe UI", Tahoma, sans-serif;
  background: var(--bz-bg);
  color: var(--bz-text);
  direction: rtl;
  overflow-x: clip;
  min-width: 0;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }
input[type="search"],
input[type="text"] {
  -webkit-appearance: none;
  appearance: none;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.bz-wrap { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.bz-wrap-wide { width: min(1280px, calc(100% - 24px)); margin-inline: auto; }

.bz-header {
  position: sticky; top: 0; z-index: 80;
  background: #fff;
  border-bottom: 1px solid var(--bz-border);
  box-shadow: 0 8px 24px rgba(51,58,123,.06);
  overflow: visible;
}
.bz-header-top {
  display: flex; align-items: center; gap: 18px;
  padding: 14px 0 12px;
}
.bz-logo { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.bz-logo img { height: 40px; width: auto; }
.bz-logo span { font-weight: 800; color: var(--bz-primary); font-size: 22px; }

.bz-search {
  flex: 1;
  display: flex;
  align-items: stretch;
  background: #FBFBFE;
  border: 1.5px solid #D5D8EA;
  border-radius: 18px;
  overflow: visible;
  min-width: 0;
  max-width: 720px;
  height: 58px;
  box-shadow: 0 10px 28px rgba(51,58,123,.08);
  position: relative;
  z-index: 95;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.bz-search:focus-within,
.bz-search.is-suggesting {
  background: #fff;
  border-color: var(--bz-primary);
  box-shadow: 0 12px 32px rgba(51,58,123,.14), 0 0 0 4px rgba(51,58,123,.08);
}
.bz-search-cat, .bz-search-q {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.bz-search-cat {
  flex: 0 0 auto;
  position: relative;
  height: 100%;
  border-left: 1px solid var(--bz-border);
  color: var(--bz-primary);
  background: linear-gradient(180deg, #F4F6FD 0%, #EEF1FA 100%);
  border-radius: 0 16px 16px 0;
}
.bz-search-cat-btn {
  height: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  cursor: pointer;
  color: var(--bz-primary);
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
  max-width: 190px;
  line-height: 1.8;
}
.bz-search-cat-btn [data-cat-label] {
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.8;
  padding: 2px 0 4px;
}
.bz-dd-caret { font-size: 11px; opacity: .7; margin-right: 2px; }
.bz-search-q {
  flex: 1;
  padding: 0 12px;
  color: var(--bz-muted);
  align-self: stretch;
  overflow: visible;
}
.bz-search-ico {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bz-primary-soft);
  color: var(--bz-primary);
  flex: 0 0 auto;
  font-size: 13px;
}
.bz-search-q input {
  flex: 1;
  min-width: 0;
  min-height: 0;
  height: 32px;
  border: 0;
  background: transparent;
  outline: none;
  padding: 0 0 4px;
  color: var(--bz-text);
  font-size: 15px;
  line-height: 2;
}
.bz-search > button[type="submit"] {
  background: var(--bz-primary); color: #fff; border: 0;
  padding: 0 20px 3px;
  cursor: pointer; font-weight: 800; font-size: 15px;
  transition: .2s ease; border-radius: 16px 0 0 16px;
  line-height: 1.8;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.bz-search > button[type="submit"] i { font-size: 13px; }
.bz-search > button[type="submit"]:hover { background: var(--bz-primary-dark); }

.bz-dd {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 280px;
  max-width: min(360px, 92vw);
  background: #fff;
  border: 1px solid var(--bz-border);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(28,31,58,.16);
  padding: 8px;
  z-index: 120;
}
.bz-dd-wrap.open > .bz-dd, .bz-sselect.open > .bz-dd { display: block; }
.bz-dd-search {
  display: flex; align-items: center; gap: 8px;
  background: #F6F7FC; border-radius: 12px; padding: 8px 10px; margin-bottom: 6px;
  color: var(--bz-muted);
}
.bz-dd-search input {
  flex: 1; border: 0; background: transparent; outline: none; min-width: 0;
  color: var(--bz-text); font-size: 13px;
}
.bz-dd-list { max-height: 280px; overflow: auto; }
.bz-dd-item {
  width: 100%;
  display: flex; align-items: center; gap: 10px;
  border: 0; background: transparent; text-align: right;
  padding: 9px 10px; border-radius: 12px; cursor: pointer;
  color: var(--bz-text); font-weight: 700; font-size: 14px;
  font-family: inherit;
}
.bz-dd-item:hover, .bz-dd-item.is-active { background: var(--bz-primary-soft); color: var(--bz-primary); }
.bz-dd-empty { display: none; padding: 16px 8px; text-align: center; color: var(--bz-muted); font-size: 13px; }
.bz-dd-empty.is-on { display: block; }

.bz-sselect { position: relative; }
.bz-sselect-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  border: 1px solid var(--bz-border); border-radius: 12px; padding: 11px 12px;
  background: #fff; cursor: pointer; font-family: inherit; font-weight: 700;
  color: var(--bz-text); text-align: right;
}
.bz-sselect.open .bz-sselect-btn { border-color: var(--bz-primary); }
.bz-sselect .bz-dd { left: 0; right: 0; min-width: 0; max-width: none; }
select.bz-select-hidden {
  position: absolute !important; opacity: 0; pointer-events: none;
  width: 1px; height: 1px; inset: 0;
}

.bz-header-actions { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }
.bz-header-actions .bz-btn-ghost span {
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bz-userchip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bz-primary);
  font-weight: 700;
  font-size: 14px;
  max-width: 180px;
  padding: 4px 8px 4px 4px;
  border: 1px solid #D5DAEE;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(51, 58, 123, .08);
}
.bz-userchip img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 36px;
  background: #EEF0F8;
}
.bz-userchip span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.bz-userchip:hover {
  border-color: #B8C0E0;
  box-shadow: 0 6px 16px rgba(51, 58, 123, .12);
}

.bz-nav-bar {
  display: flex;
  align-items: center;
  padding: 0 0 2px;
  border-top: 1px solid #F0F1F6;
  overflow: visible;
}
.bz-nav {
  display: flex;
  align-items: stretch;
  gap: 2px;
  width: 100%;
  min-width: 0;
  overflow: visible;
  flex-wrap: nowrap;
}
.bz-nav a, .bz-more > summary {
  white-space: nowrap;
  padding: 12px 14px 16px;
  color: var(--bz-muted);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.9;
  background: none;
  border: 0;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  overflow: visible;
}
.bz-more > summary::-webkit-details-marker { display: none; }
.bz-more > summary i { font-size: 11px; transition: transform .2s ease; }
.bz-more[open] > summary i { transform: rotate(180deg); }
.bz-nav a:hover, .bz-more > summary:hover { color: var(--bz-primary); }
.bz-nav a.active, .bz-more > summary.active, .bz-more[open] > summary { color: var(--bz-primary); }
.bz-nav a.active::after, .bz-more > summary.active::after, .bz-more[open] > summary::after {
  content: "";
  position: absolute;
  right: 12px; left: 12px; bottom: 4px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--bz-primary);
}
.bz-more { position: relative; flex: 0 0 auto; z-index: 91; margin: 0; }
.bz-more-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--bz-border);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(28,31,58,.12);
  padding: 8px;
  z-index: 92;
}
.bz-more-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--bz-text);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
.bz-more-menu a:hover, .bz-more-menu a.active { background: var(--bz-primary-soft); color: var(--bz-primary); }
.bz-more-ico {
  width: 30px; height: 30px; border-radius: 9px;
  display: grid; place-items: center;
  background: var(--cat-bg, var(--bz-primary-soft));
  color: var(--cat-color, var(--bz-primary));
  font-size: 13px; flex: 0 0 auto;
}

.bz-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; border-radius: 12px; padding: 10px 16px; cursor: pointer; font-weight: 700;
  transition: .2s ease;
}
.bz-btn i { width: 1.15em; text-align: center; }
.bz-btn-whatsapp { background: #25D366; color: #fff; }
.bz-btn-whatsapp:hover { background: #1EBE5A; }
.bz-btn-primary { background: var(--bz-primary); color: #fff; }
.bz-btn-primary:hover { background: var(--bz-primary-dark); }
.bz-btn-ghost { background: var(--bz-primary-soft); color: var(--bz-primary); }
.bz-btn-accent { background: var(--bz-gold); color: #1C1F3A; }
.bz-btn-outline { background: transparent; border: 1px solid var(--bz-border); color: var(--bz-text); }
.bz-btn-danger { background: var(--bz-danger); color: #fff; }
.bz-btn-danger:hover { filter: brightness(.95); }
.bz-owner-banner {
  background: #EEF0F8;
  color: var(--bz-primary);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}
.bz-owner-box { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.bz-owner-note {
  background: #F7F8FD;
  color: var(--bz-primary);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13.5px;
  font-weight: 800;
}
.bz-owner-note i { margin-left: 6px; color: var(--bz-gold); }
.bz-owner-cta { margin-top: 0; }
.bz-owner-cta form { margin: 0; }
.bz-btn-success { background: var(--bz-success); color: #fff; }
.bz-btn-sm { padding: 7px 12px; font-size: 13px; border-radius: 10px; }
.bz-btn-block { width: 100%; }

.bz-hero {
  background: linear-gradient(135deg, #333A7B 0%, #4B54A0 55%, #70C6C7 140%);
  color: #fff; padding: 48px 0 40px; position: relative; overflow: visible;
  z-index: 6;
}
.bz-hero h1 { margin: 0 0 8px; font-size: 32px; line-height: 1.35; }
.bz-hero p { margin: 0 0 22px; opacity: .9; }
.bz-hero-search {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 18px;
  overflow: visible;
  max-width: 760px;
  min-height: 62px;
  height: 62px;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  position: relative;
  z-index: 40;
  border: 2px solid rgba(255,255,255,.55);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.bz-hero-search:focus-within,
.bz-hero-search.is-suggesting {
  border-color: var(--bz-gold);
  box-shadow: 0 22px 48px rgba(0,0,0,.22), 0 0 0 4px rgba(212,160,23,.28);
}
.bz-hero-search .bz-search-q {
  padding: 0 14px;
}
.bz-hero-search .bz-search-q input {
  height: 36px;
  font-size: 16px;
  line-height: 2.1;
}
.bz-hero-search .bz-search-q input::placeholder {
  line-height: 2.1;
  color: #8B90A5;
}
.bz-hero-search button[type="submit"] {
  border: 0;
  background: var(--bz-primary);
  color: #fff;
  padding: 0 24px;
  font-weight: 800;
  cursor: pointer;
  line-height: 1.4;
  border-radius: 16px 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.bz-hero-search button[type="submit"]:hover { background: var(--bz-primary-dark); }

.bz-suggest {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  background: #fff;
  color: var(--bz-text);
  border: 1px solid #E4E7F2;
  border-radius: 20px;
  box-shadow: 0 24px 54px rgba(28,31,58,.16);
  padding: 8px;
  z-index: 130;
  max-height: min(440px, 72vh);
  overflow: auto;
}
.bz-search.is-suggesting > .bz-suggest,
.bz-hero-search.is-suggesting > .bz-suggest { display: block; }
.bz-suggest-sec {
  padding: 6px 6px 10px;
}
.bz-suggest-sec + .bz-suggest-sec {
  border-top: 1px solid #EEF0F6;
  margin-top: 2px;
  padding-top: 10px;
}
.bz-suggest-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 2px 4px 10px;
  font-size: 12px;
  font-weight: 800;
  color: var(--bz-muted);
}
.bz-suggest-head b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bz-primary);
  font-size: 13px;
}
.bz-suggest-head b i { color: var(--bz-gold); font-size: 12px; }
.bz-suggest-clear {
  border: 0;
  background: #F6F7FC;
  color: var(--bz-muted);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 999px;
}
.bz-suggest-clear:hover { background: #FEECEC; color: var(--bz-danger); }
.bz-suggest-recents {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bz-suggest-recent {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: auto;
  max-width: 100%;
  border: 1px solid #F0E2B0;
  background: #FFF8E6;
  color: #3D3416;
  border-radius: 999px;
  padding: 6px 8px 6px 6px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}
.bz-suggest-recent:hover,
.bz-suggest-recent.is-on {
  border-color: #E2C56A;
  background: #FFF1C9;
}
.bz-suggest-recent > span {
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bz-suggest-x {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: rgba(61,52,22,.08);
  color: #7A7048;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  padding: 0;
  flex: 0 0 auto;
}
.bz-suggest-x:hover { background: #FEECEC; color: var(--bz-danger); }
.bz-suggest-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.bz-suggest-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  background: #F6F7FC;
  text-align: right;
  padding: 8px 10px;
  border-radius: 14px;
  cursor: pointer;
  color: var(--bz-text);
  font-weight: 800;
  font-size: 13px;
  font-family: inherit;
  min-width: 0;
}
.bz-suggest-item:hover,
.bz-suggest-item.is-on {
  background: var(--bz-primary-soft);
  border-color: #D9DEF0;
  color: var(--bz-primary);
}
.bz-suggest-item span { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bz-suggest-item small {
  color: var(--bz-muted);
  font-size: 11px;
  font-weight: 700;
  flex: 0 0 auto;
}
.bz-suggest-ico {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--bz-primary);
  flex: 0 0 auto;
  font-size: 12px;
  box-shadow: 0 1px 0 rgba(51,58,123,.06);
}
.bz-suggest-ico.is-clock { background: #F6E7B8; color: #A57B12; box-shadow: none; width: 22px; height: 22px; border-radius: 50%; font-size: 11px; }
.bz-suggest-ico.is-fire { background: #FFF1E8; color: #EA580C; }
.bz-suggest-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bz-suggest-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--bz-border);
  background: #fff;
  color: var(--bz-text);
  border-radius: 999px;
  padding: 7px 12px 7px 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.bz-suggest-chip:hover,
.bz-suggest-chip.is-on {
  border-color: var(--bz-primary);
  background: var(--bz-primary-soft);
  color: var(--bz-primary);
}
.bz-suggest-empty {
  padding: 18px 10px;
  text-align: center;
  color: var(--bz-muted);
  font-size: 13px;
  font-weight: 700;
}
.bz-hero-stats { display:flex; gap:12px; margin-top:22px; flex-wrap:wrap; }
.bz-hero-stat {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 12px 16px 12px 18px;
  min-width: 160px;
}
.bz-hero-stat i {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.18);
  font-size: 16px;
}
.bz-hero-stat b { display: block; font-size: 22px; line-height: 1.2; }
.bz-hero-stat span { font-size: 13px; opacity: .85; }

.bz-section { padding: 32px 0; }
.bz-section-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.bz-section-head h1,
.bz-section-head h2 { margin: 0; font-size: 22px; color: var(--bz-primary); }
.bz-link { color: var(--bz-primary); font-weight: 700; }

.bz-cats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.bz-subnav-wrap {
  position: relative;
  margin: 0 0 6px;
}
.bz-subnav-wrap::before,
.bz-subnav-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 14px;
  width: 42px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity .2s ease;
}
.bz-subnav-wrap.has-more-right::before {
  right: 0;
  background: linear-gradient(to left, var(--bz-bg) 18%, transparent);
  opacity: 1;
}
.bz-subnav-wrap.has-more-left::after {
  left: 0;
  background: linear-gradient(to right, var(--bz-bg) 18%, transparent);
  opacity: 1;
}
.bz-subnav-btn {
  position: absolute;
  top: calc(50% - 7px);
  transform: translateY(-50%);
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 1px solid var(--bz-border);
  border-radius: 50%;
  background: #fff;
  color: var(--bz-primary);
  box-shadow: 0 6px 16px rgba(51, 58, 123, .1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: .18s ease;
}
.bz-subnav-btn.is-right { right: 0; }
.bz-subnav-btn.is-left { left: 0; }
.bz-subnav-wrap.is-overflow .bz-subnav-btn:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
}
.bz-subnav-btn:hover {
  background: var(--bz-primary);
  border-color: var(--bz-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(51, 58, 123, .18);
}
.bz-subnav-btn:active { transform: translateY(-50%) scale(.96); }
.bz-subnav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 0 6px;
  margin: 0;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.bz-subnav-wrap.is-overflow .bz-subnav { padding-inline: 40px; }
.bz-subnav::-webkit-scrollbar { display: none; }
.bz-drill-stack { display: flex; flex-direction: column; gap: 6px; margin: 0 0 10px; }
.bz-drill-stack .bz-subnav-wrap { margin: 0; }
.bz-drill-stack .bz-subnav-wrap::before,
.bz-drill-stack .bz-subnav-wrap::after { bottom: 6px; }
.bz-subnav-btn { top: 50%; }
.bz-subnav .bz-cat-letter,
.bz-chip-letter {
  width: 18px; height: 18px; border-radius: 50%;
  display: inline-grid; place-items: center;
  background: var(--bz-primary-soft);
  color: var(--bz-primary);
  font-size: 11px; font-weight: 800; line-height: 1;
}
.bz-subnav a.is-on .bz-cat-letter { background: rgba(255,255,255,.2); color: #fff; }
.bz-subnav a img, .bz-subnav .bz-cat-letter { flex: 0 0 auto; }
.bz-cat-letter {
  display: grid; place-items: center;
  font-weight: 800; line-height: 1;
}
.bz-subnav a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--bz-border);
  color: var(--bz-text);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  transition: .18s ease;
}
.bz-subnav a img {
  width: 20px; height: 20px; object-fit: contain; border-radius: 50%;
  background: #fff; padding: 1px;
}
.bz-subnav a:hover { border-color: var(--bz-primary); color: var(--bz-primary); }
.bz-subnav a.is-on {
  background: var(--bz-primary);
  border-color: var(--bz-primary);
  color: #fff;
}
.bz-cat {
  background: #fff; border: 1px solid var(--bz-border); border-radius: 18px;
  padding: 18px 10px 16px; text-align: center; box-shadow: var(--bz-shadow);
  transition: .2s ease;
}
.bz-cat:hover {
  transform: translateY(-4px);
  border-color: var(--cat-color, var(--bz-primary));
  box-shadow: 0 14px 28px color-mix(in srgb, var(--cat-color, #333A7B) 18%, transparent);
}
.bz-cat-icon {
  width: 62px; height: 62px; margin: 0 auto 12px;
  border-radius: 18px;
  display: grid; place-items: center;
  background: var(--cat-bg, var(--bz-primary-soft));
  color: var(--cat-color, var(--bz-primary));
  font-size: 26px;
  box-shadow: inset 0 -6px 12px rgba(255,255,255,.35);
}
.bz-cat:hover .bz-cat-icon {
  transform: scale(1.06);
  background: var(--cat-color, var(--bz-primary));
  color: #fff;
}
.bz-cat-icon img, .bz-more-ico img, .bz-suggest-ico img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  display: block;
}
.bz-cat:hover .bz-cat-icon.has-img {
  background: #fff;
}
.bz-cat b { display: block; font-size: 14px; color: var(--bz-text); }

.bz-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.bz-grid-3 { grid-template-columns: repeat(3, 1fr); }
.bz-card {
  background: #fff; border: 1px solid var(--bz-border); border-radius: var(--bz-radius);
  overflow: hidden; box-shadow: var(--bz-shadow); display: flex; flex-direction: column;
  transition: .2s ease;
}
.bz-card:hover { transform: translateY(-4px); }
.bz-card-img { position: relative; height: 170px; background: #eee; overflow: hidden; }
.bz-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bz-badge {
  position: absolute; top: 10px; right: 10px; background: rgba(28,31,58,.75); color: #fff;
  border-radius: 999px; padding: 4px 8px; font-size: 12px;
}
.bz-heart {
  position: absolute; top: 10px; left: 10px; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.96); display: grid; place-items: center;
  color: #6B7280; border: 0; cursor: pointer;
  box-shadow: 0 6px 16px rgba(28,31,58,.16);
  z-index: 3;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.bz-heart i { font-size: 16px; line-height: 1; pointer-events: none; }
.bz-heart:hover { color: var(--bz-danger); transform: scale(1.08); }
.bz-heart.is-on {
  color: var(--bz-danger);
  background: #fff;
  animation: bzHeartGlow 1.25s ease-in-out infinite;
}
.bz-heart.is-pop { animation: bzHeartPop .55s cubic-bezier(.2, .85, .3, 1.25); }
.bz-wish-btn i { margin-left: 6px; }
.bz-wish-btn.is-on i {
  color: var(--bz-danger);
  animation: bzHeartIconGlow 1.25s ease-in-out infinite;
}
.bz-wish-btn.is-pop i { animation: bzHeartPop .55s cubic-bezier(.2, .85, .3, 1.25); }
@keyframes bzHeartGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(225, 29, 72, 0), 0 6px 16px rgba(28,31,58,.16);
    color: #E11D48;
  }
  50% {
    box-shadow: 0 0 0 8px rgba(225, 29, 72, .16), 0 0 18px rgba(225, 29, 72, .55);
    color: #FF4D6D;
  }
}
@keyframes bzHeartIconGlow {
  0%, 100% { text-shadow: 0 0 0 rgba(225, 29, 72, 0); transform: scale(1); color: #E11D48; }
  50% { text-shadow: 0 0 10px rgba(225, 29, 72, .9), 0 0 18px rgba(255, 77, 109, .55); transform: scale(1.2); color: #FF4D6D; }
}
@keyframes bzHeartPop {
  0% { transform: scale(1); }
  30% { transform: scale(1.38); }
  55% { transform: scale(.88); }
  100% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .bz-heart.is-on, .bz-wish-btn.is-on i, .bz-heart.is-pop, .bz-wish-btn.is-pop i { animation: none; }
}
.bz-card-body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.bz-price { color: var(--bz-primary); font-weight: 800; font-size: 18px; }
.bz-title {
  font-weight: 800;
  font-size: 15px;
  line-height: 1.45;
  color: var(--bz-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.9em;
}
.bz-meta { color: var(--bz-muted); font-size: 13px; display: flex; gap: 8px; flex-wrap: wrap; }

.bz-layout { display: grid; grid-template-columns: 280px 1fr; gap: 18px; }
.bz-filters, .bz-panel, .bz-box {
  background: #fff; border: 1px solid var(--bz-border); border-radius: var(--bz-radius);
  padding: 16px; box-shadow: var(--bz-shadow);
}
.bz-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.bz-field label { font-weight: 700; font-size: 13px; color: var(--bz-primary); }
.bz-field input, .bz-field select, .bz-field textarea {
  border: 1px solid var(--bz-border); border-radius: 12px; padding: 11px 12px; outline: none; background: #fff;
  width: 100%; max-width: 100%;
}
.bz-field input:focus, .bz-field select:focus, .bz-field textarea:focus { border-color: var(--bz-primary); }
.bz-field.is-invalid input, .bz-field.is-invalid select, .bz-field.is-invalid textarea { border-color: #DC2626; }
.bz-req { color: #DC2626; font-size: 11px; font-weight: 800; margin-right: 4px; }
.bz-hint { color: var(--bz-muted); font-size: 12px; font-weight: 500; }
.bz-err { color: #DC2626; font-size: 12.5px; font-weight: 700; }
.bz-contact-form { position: relative; margin-top: 18px; }
.bz-hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.bz-create-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 12px; }
.bz-cat-pick { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.bz-cat-pick button {
  border: 1px solid var(--bz-border); background: #fff; border-radius: 14px;
  padding: 12px 8px; cursor: pointer; font-weight: 800; font-size: 13px; color: var(--bz-text);
  display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 0;
}
.bz-cat-pick button.is-on { border-color: var(--bz-primary); background: var(--bz-primary-soft); color: var(--bz-primary); }
.bz-cat-pick button:disabled { opacity: .45; cursor: not-allowed; }
.bz-cat-pick button.is-on:disabled { opacity: 1; cursor: default; }
.bz-create-nav { display: flex; gap: 8px; margin-top: 8px; }
.bz-create-nav .bz-btn { flex: 1; }
.bz-step-pane[hidden] { display: none !important; }
.bz-upload.is-invalid { border-color: #DC2626; background: #FEF2F2; }

.bz-ad {
  display: grid; grid-template-columns: 1.3fr .7fr; gap: 18px;
}
.bz-gallery { background: #fff; border-radius: var(--bz-radius); overflow: hidden; border: 1px solid var(--bz-border); }
.bz-gallery-stage, .bz-gallery-main {
  position: relative;
  height: 420px;
  background: #0f1226;
}
.bz-gallery-slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-24px) scale(.98);
  transition: opacity .4s ease, transform .4s ease, visibility .4s;
}
.bz-gallery-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  z-index: 1;
}
.bz-gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border: 0; border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: var(--bz-primary);
  cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
  z-index: 2;
}
.bz-gallery-btn.prev { right: 14px; }
.bz-gallery-btn.next { left: 14px; }
.bz-gallery-btn:hover { background: #fff; }
.bz-gallery-count {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(0,0,0,.58);
  color: #fff;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 800;
  z-index: 2;
}
.bz-gallery-stage { cursor: zoom-in; }
.bz-gallery-zoom {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  width: 42px; height: 42px;
  border: 0; border-radius: 12px;
  background: rgba(255,255,255,.94);
  color: var(--bz-primary);
  cursor: zoom-in;
  display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}
.bz-gallery-zoom:hover { background: #fff; }

.bz-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(8, 10, 22, .96);
  display: none;
  flex-direction: column;
  overscroll-behavior: none;
}
.bz-lightbox.is-open { display: flex; }
.bz-lightbox-viewport {
  flex: 1;
  min-height: 0;
  position: relative;
  overflow: hidden;
  touch-action: none;
  display: grid;
  place-items: center;
  cursor: zoom-in;
}
.bz-lightbox-viewport.is-zoomed { cursor: grab; }
.bz-lightbox-viewport.is-dragging { cursor: grabbing; }
.bz-lightbox-img {
  max-width: min(96vw, 100%);
  max-height: calc(100dvh - 84px);
  width: auto;
  height: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  transform-origin: center center;
  will-change: transform;
}
.bz-lightbox-close,
.bz-lightbox-nav {
  position: absolute;
  z-index: 3;
  border: 0;
  background: rgba(255,255,255,.94);
  color: var(--bz-primary);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
}
.bz-lightbox-close {
  top: 14px;
  left: 14px;
  width: 46px; height: 46px;
  border-radius: 14px;
  font-size: 18px;
}
.bz-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 18px;
}
.bz-lightbox-nav.prev { right: 16px; }
.bz-lightbox-nav.next { left: 16px; }
.bz-lightbox-nav.is-hidden { display: none; }
.bz-lightbox-bar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 16px calc(12px + env(safe-area-inset-bottom));
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}
.bz-lightbox-zoombtns { display: flex; gap: 8px; }
.bz-lightbox-zoombtns button {
  width: 40px; height: 40px;
  border: 0; border-radius: 12px;
  background: rgba(255,255,255,.12);
  color: #fff;
  cursor: pointer;
  display: grid; place-items: center;
}
.bz-lightbox-zoombtns button:hover { background: rgba(255,255,255,.22); }
.bz-lightbox-hint {
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 700;
}
.bz-thumbs { display: flex; gap: 8px; padding: 10px; overflow-x: auto; scrollbar-width: none; }
.bz-thumbs::-webkit-scrollbar { display: none; }
.bz-thumbs img { width: 76px; height: 56px; object-fit: cover; border-radius: 8px; cursor: pointer; border: 2px solid transparent; }
.bz-thumbs img.active { border-color: var(--bz-primary); }
.bz-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.bz-spec { background: var(--bz-primary-soft); border-radius: 12px; padding: 10px 12px; }
.bz-spec small { color: var(--bz-muted); display: block; }
.bz-color { display: inline-flex; align-items: center; gap: 8px; }
.bz-color i {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid rgba(22, 26, 51, .16);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55);
  display: inline-block;
}
.bz-bc {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  font-size: 13px; color: var(--bz-muted); margin: 0 0 14px; font-weight: 700;
}
.bz-bc a { color: var(--bz-primary); }
.bz-listing-lead {
  margin: -6px 0 14px; color: var(--bz-muted); line-height: 1.8; font-size: 14px;
}
.bz-city-links { display: flex; flex-wrap: wrap; gap: 8px; }
.bz-city-links a {
  background: #fff; border: 1px solid var(--bz-border); color: var(--bz-primary);
  border-radius: 999px; padding: 8px 12px; font-weight: 800; font-size: 13px;
}
.bz-city-links a:hover, .bz-city-links a.is-on { background: var(--bz-primary); color: #fff; border-color: var(--bz-primary); }
.bz-city-links-sm { margin-bottom: 16px; }
.bz-city-links-sm a { padding: 6px 10px; font-size: 12.5px; }
.bz-seo p { margin: 0 0 12px; line-height: 1.9; color: var(--bz-text); }
.bz-seo h2 { margin: 0 0 10px; color: var(--bz-primary); }
.bz-faq { margin-top: 16px; display: grid; gap: 8px; }
.bz-faq details {
  border: 1px solid var(--bz-border); border-radius: 14px; padding: 12px 14px; background: #F7F8FD;
}
.bz-faq summary { cursor: pointer; font-weight: 800; color: var(--bz-primary); }
.bz-faq details p { margin: 8px 0 0; color: var(--bz-muted); font-size: 14px; }
.bz-seller { display: flex; gap: 12px; align-items: center; }
.bz-seller img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }

.bz-avatar-edit {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 4px 0 22px;
  padding: 16px;
  background: #F7F8FD;
  border: 1px solid var(--bz-border);
  border-radius: 18px;
}
.bz-avatar-pick {
  position: relative;
  width: 112px;
  height: 112px;
  flex: 0 0 112px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  display: block;
  box-shadow: 0 8px 22px rgba(51, 58, 123, .14);
  background: #fff;
}
.bz-avatar-pick img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bz-avatar-pick input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.bz-avatar-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 31, 58, .55);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  transition: opacity .2s ease;
}
.bz-avatar-overlay i { font-size: 18px; }
.bz-avatar-overlay b { font-size: 11px; font-weight: 800; }
.bz-avatar-pick:hover .bz-avatar-overlay,
.bz-avatar-pick.is-over .bz-avatar-overlay,
.bz-avatar-pick:focus-within .bz-avatar-overlay { opacity: 1; }
.bz-avatar-pick.is-over { outline: 3px solid var(--bz-gold); }
.bz-avatar-pick.has-new { box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--bz-primary); }
.bz-avatar-copy b { display: block; color: var(--bz-primary); font-size: 15px; margin-bottom: 4px; }
.bz-avatar-copy p { margin: 0 0 6px; color: var(--bz-text); font-size: 13.5px; line-height: 1.6; }
.bz-avatar-copy small { color: var(--bz-muted); font-size: 12.5px; display: block; line-height: 1.5; }
.bz-alert { padding: 12px 14px; border-radius: 12px; margin-bottom: 14px; font-weight: 700; }
.bz-alert-error { background: #FEE2E2; color: #991B1B; }
.bz-alert-ok { background: #DCFCE7; color: #166534; }

.bz-toast-host {
  position: fixed;
  top: 18px;
  left: 16px;
  right: auto;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: min(380px, calc(100% - 32px));
  pointer-events: none;
}
.bz-toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--bz-border);
  border-radius: 16px;
  padding: 14px 14px 14px 16px;
  box-shadow: 0 16px 40px rgba(28, 31, 58, .16);
  opacity: 0;
  transform: translateY(-10px);
  transition: .25s ease;
  pointer-events: auto;
}
.bz-toast.is-on { opacity: 1; transform: none; }
.bz-toast b { display: block; font-size: 14px; margin-bottom: 2px; }
.bz-toast p { margin: 0; color: var(--bz-muted); font-size: 13px; font-weight: 500; line-height: 1.5; }
.bz-toast-ico {
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center; flex: 0 0 auto; font-size: 16px;
}
.bz-toast-ok { border-right: 4px solid #16A34A; }
.bz-toast-ok .bz-toast-ico { background: #DCFCE7; color: #16A34A; }
.bz-toast-error { border-right: 4px solid #DC2626; }
.bz-toast-error .bz-toast-ico { background: #FEE2E2; color: #DC2626; }
.bz-toast-close {
  margin-right: auto;
  border: 0; background: transparent; color: var(--bz-muted);
  cursor: pointer; width: 28px; height: 28px; border-radius: 8px;
}
.bz-toast-close:hover { background: #F4F6FB; }

.bz-dialog {
  position: fixed; inset: 0; z-index: 1300;
  background: rgba(28, 31, 58, .52);
  display: none;
  place-items: center; padding: 20px;
  backdrop-filter: blur(6px);
}
.bz-dialog.is-open { display: grid; }
.bz-dialog-card {
  width: min(420px, 100%);
  background: #fff;
  border-radius: 22px;
  padding: 26px 22px 18px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(28, 31, 58, .22);
  border: 1px solid #EEF0F8;
}
.bz-dialog-ico {
  width: 56px; height: 56px; border-radius: 18px;
  margin: 0 auto 14px;
  display: grid; place-items: center;
  background: #FEE2E2; color: #DC2626; font-size: 22px;
}
.bz-dialog-ico.is-ok {
  background: #EEF0F8; color: #333A7B;
}
.bz-dialog-card h3 { margin: 0 0 8px; font-size: 20px; color: var(--bz-primary); font-weight: 800; }
.bz-dialog-card p { margin: 0 0 20px; color: var(--bz-muted); font-size: 14px; line-height: 1.8; font-weight: 500; }
.bz-dialog-actions { display: flex; gap: 10px; }
.bz-dialog-actions .bz-btn { flex: 1; min-height: 44px; }

.bz-publish {
  position: fixed;
  inset: 0;
  z-index: 1400;
  background: rgba(22, 26, 51, .72);
  display: none;
  place-items: center;
  padding: 20px;
  backdrop-filter: blur(6px);
}
.bz-publish.is-open { display: grid; }
.bz-publish-card {
  width: min(420px, 100%);
  background: #fff;
  border-radius: 22px;
  padding: 28px 24px 22px;
  text-align: center;
  box-shadow: 0 28px 70px rgba(22, 26, 51, .28);
}
.bz-publish-ico {
  width: 58px; height: 58px; border-radius: 18px;
  margin: 0 auto 14px;
  display: grid; place-items: center;
  background: #EEF0F8;
  color: var(--bz-primary);
}
.bz-publish.is-ok .bz-publish-ico { background: #DCFCE7; color: #16A34A; }
.bz-publish.is-bad .bz-publish-ico { background: #FEE2E2; color: #DC2626; }
.bz-publish-spin {
  width: 28px; height: 28px;
  border: 3px solid #D4D9E8;
  border-top-color: var(--bz-primary);
  border-radius: 50%;
  animation: bz-spin .7s linear infinite;
}
.bz-publish.is-ok .bz-publish-spin,
.bz-publish.is-bad .bz-publish-spin { display: none; }
@keyframes bz-spin { to { transform: rotate(360deg); } }
.bz-publish-card h3 { margin: 0 0 6px; font-size: 18px; color: var(--bz-primary); font-weight: 800; }
.bz-publish-card p { margin: 0 0 18px; color: var(--bz-muted); font-size: 13.5px; line-height: 1.6; }
.bz-publish-steps { list-style: none; margin: 0 0 16px; padding: 0; text-align: right; }
.bz-publish-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 12px;
  color: var(--bz-muted);
  font-size: 13.5px;
  font-weight: 700;
}
.bz-publish-steps li i {
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  background: #EEF0F8;
  color: transparent;
  font-size: 10px;
  flex: 0 0 auto;
}
.bz-publish-steps li.is-on { background: var(--bz-primary-soft); color: var(--bz-primary); }
.bz-publish-steps li.is-on i {
  background: transparent;
  border: 2px solid var(--bz-primary);
  border-top-color: transparent;
  animation: bz-spin .7s linear infinite;
  color: transparent;
}
.bz-publish-steps li.is-done { color: #166534; }
.bz-publish-steps li.is-done i { background: #16A34A; color: #fff; animation: none; border: 0; }
.bz-publish-steps b { font-weight: 800; margin-right: 4px; }
.bz-publish-bar {
  height: 8px;
  background: #EEF0F8;
  border-radius: 99px;
  overflow: hidden;
}
.bz-publish-bar i {
  display: block;
  height: 100%;
  width: 8%;
  background: var(--bz-primary);
  border-radius: 99px;
  transition: width .25s ease;
}

.bz-auth {
  min-height: 70vh; display: grid; place-items: center; padding: 32px 0;
}
.bz-auth-card {
  width: min(460px, 100%); background: #fff; border-radius: 24px; padding: 28px;
  box-shadow: var(--bz-shadow); border: 1px solid var(--bz-border);
}
.bz-auth-card h1 { margin: 8px 0 6px; color: var(--bz-primary); }
.bz-auth-card p { color: var(--bz-muted); margin-top: 0; }
.bz-auth-or {
  display: flex; align-items: center; gap: 12px;
  margin: 18px 0 14px; color: var(--bz-muted); font-size: 13px; font-weight: 700;
}
.bz-auth-or::before, .bz-auth-or::after {
  content: ""; flex: 1; height: 1px; background: var(--bz-border);
}
.bz-social { display: flex; flex-direction: column; gap: 8px; }
.bz-social-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  border: 1px solid var(--bz-border); background: #fff; color: var(--bz-text);
  border-radius: 12px; padding: 11px 14px; cursor: pointer;
  font-weight: 800; font-size: 14px; font-family: inherit;
}
.bz-social-btn:hover { border-color: var(--bz-primary); background: #F7F8FD; }
.bz-social-btn:disabled { opacity: .6; cursor: wait; }
.bz-social-btn i { width: 18px; text-align: center; }
.bz-social-facebook { color: #1877F2; }
.bz-social-apple { color: #111; }
.bz-otp-resend { margin-top: 16px; text-align: center; }
.bz-otp-resend .bz-hint { margin: 0 0 10px; }
.bz-otp-resend b { color: var(--bz-primary); font-variant-numeric: tabular-nums; }

.bz-footer {
  background: linear-gradient(180deg, #252A5C 0%, #1C1F3A 48%);
  color: #dbe0f3;
  padding: 48px 0 0;
  margin-top: 48px;
  border-top: 4px solid var(--bz-primary);
}
.bz-footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1.05fr; gap: 28px 32px; }
.bz-footer-logo { display: inline-block; margin-bottom: 14px; }
.bz-footer-logo img { height: 42px; width: auto; display: block; filter: none; }
.bz-footer-brand p { margin: 0 0 16px; line-height: 1.8; color: #c5cbe3; max-width: 320px; }
.bz-footer-social { display: flex; gap: 8px; }
.bz-footer-social a {
  width: 32px; height: 32px; margin: 0 !important;
  border-radius: 12px;
  display: grid !important; place-items: center;
  background: rgba(255,255,255,.08); color: #fff;
}
.bz-footer-social a:hover { background: #fff; color: var(--bz-primary); }
.bz-footer h3 { color: #fff; margin: 0 0 14px; font-size: 16px; }
.bz-footer-grid > div > a {
  color: #c9d0ea;
  display: block;
  margin: 0 0 10px;
  line-height: 1.6;
}
.bz-footer-grid > div > a:hover { color: #fff; }
.bz-footer-item {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px !important;
  color: #d7dcf3;
  min-width: 0;
}
.bz-footer-item span { min-width: 0; word-break: break-word; }
.bz-footer-ico {
  width: 36px; height: 36px; flex: 0 0 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 14px;
}
.bz-footer-contact a.bz-footer-item:hover { color: #fff; }
.bz-footer-contact a.bz-footer-item:hover .bz-footer-ico { background: #fff; color: var(--bz-primary); }
.bz-contact-cards { display: grid; gap: 10px; margin: 16px 0 8px; }
.bz-footer-app-text { margin: 0 0 12px; color: #c5cbe3; display: block; }
.bz-store {
  display: flex !important; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 10px 14px;
  color: #fff !important;
  margin: 0 0 10px !important;
  max-width: 220px;
}
.bz-store i { font-size: 22px; }
.bz-store span { display: flex; flex-direction: column; line-height: 1.2; font-weight: 800; }
.bz-store small { font-size: 11px; font-weight: 700; opacity: .75; }
.bz-store:hover { background: #fff; color: var(--bz-primary) !important; }
.bz-copy {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 28px;
  padding: 16px 0;
  color: #9aa3c7;
  font-size: 13px;
}
.bz-copy-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.bz-copy-links { display: flex; gap: 16px; }
.bz-copy-links a { margin: 0; color: #9aa3c7; }
.bz-copy-links a:hover { color: #fff; }
.bz-footer-cats {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.bz-footer-cats h3 { margin: 0 0 14px; color: #fff; font-size: 16px; }
.bz-footer-cat-list { display: flex; flex-wrap: wrap; gap: 10px; }
.bz-footer-cat-list a {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); color: #fff;
  border-radius: 999px; padding: 8px 12px 8px 10px; margin: 0;
  font-weight: 700; font-size: 13px;
}
.bz-footer-cat-list a:hover { background: #fff; color: var(--bz-primary); }

.bz-bottom-nav {
  display: none; position: fixed; bottom: 0; right: 0; left: 0; background: #fff;
  border-top: 1px solid var(--bz-border); z-index: 40; padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
  justify-content: space-around;
  gap: 2px;
}
.bz-bottom-nav a { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: var(--bz-muted); font-weight: 700; min-width: 0; flex: 1; }
.bz-bottom-nav a.active { color: var(--bz-primary); }
.bz-bottom-nav .plus {
  width: 46px; height: 46px; border-radius: 50%; background: var(--bz-primary); color: #fff;
  display: grid; place-items: center; margin-top: -22px; box-shadow: 0 8px 16px rgba(51,58,123,.3);
  flex: 0 0 46px;
}

.bz-account { display: grid; grid-template-columns: 240px 1fr; gap: 18px; min-width: 0; }
.bz-account > * { min-width: 0; }
.bz-side a {
  display: flex; align-items: center; gap: 10px; padding: 11px 12px; border-radius: 12px; color: var(--bz-muted); font-weight: 700;
}
.bz-side a.active, .bz-side a:hover { background: var(--bz-primary-soft); color: var(--bz-primary); }
.bz-side-nav { display: flex; flex-direction: column; }
.bz-filters-acc { margin: 0; }
.bz-filters-acc > summary {
  display: none;
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  color: var(--bz-primary);
  align-items: center;
  gap: 8px;
  padding: 4px 0 10px;
}
.bz-filters-acc > summary::-webkit-details-marker { display: none; }
.bz-ad-cta { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.bz-contact-num {
  margin-top: 14px;
  text-align: center;
  font-weight: 800;
  letter-spacing: .4px;
  color: var(--bz-primary);
  background: #F7F8FD;
  border: 1px dashed var(--bz-border);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 16px;
}
.bz-contact-lock {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  color: inherit;
  text-decoration: none;
  isolation: isolate;
}
.bz-contact-lock-ghost {
  display: flex;
  flex-direction: column;
  gap: 8px;
  filter: blur(8px);
  transform: scale(1.03);
  pointer-events: none;
  user-select: none;
  opacity: .78;
}
.bz-contact-lock-ghost .bz-contact-num { margin-top: 0; }
.bz-contact-lock-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 12px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,.28), rgba(247,248,253,.78));
  backdrop-filter: blur(2px);
}
.bz-contact-lock-overlay i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--bz-gold);
  box-shadow: 0 8px 18px rgba(51,58,123,.12);
  margin-bottom: 4px;
}
.bz-contact-lock-overlay b {
  color: var(--bz-primary);
  font-size: 14px;
  font-weight: 800;
}
.bz-contact-lock-overlay small {
  color: var(--bz-muted);
  font-size: 12.5px;
  line-height: 1.5;
  max-width: 220px;
}
.bz-contact-lock:hover .bz-contact-lock-overlay {
  background: linear-gradient(180deg, rgba(255,255,255,.4), rgba(247,248,253,.88));
}
.bz-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.bz-mini-ad {
  display: flex; gap: 12px; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--bz-border); min-width: 0;
}
.bz-mini-ad img { width: 64px; height: 48px; object-fit: cover; border-radius: 8px; flex: 0 0 auto; }
.bz-mini-ad > div { flex: 1; min-width: 0; }
.bz-mini-ad b { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bz-chat { max-width: 760px; margin-inline: auto; }
.bz-chat-thread {
  max-height: min(52vh, 420px); overflow: auto;
  display: flex; flex-direction: column; gap: 8px;
}
.bz-chat-bubble {
  padding: 10px 12px; border-radius: 14px; max-width: min(80%, 420px); word-break: break-word;
}
.bz-chat-form { display: flex; gap: 8px; margin-top: 14px; }
.bz-chat-form input { flex: 1; min-width: 0; border: 1px solid var(--bz-border); border-radius: 12px; padding: 12px; }
.bz-auth-links { margin-top: 14px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.bz-grid > .bz-empty { grid-column: 1 / -1; }
.bz-layout, .bz-ad, .bz-header-top, .bz-search { min-width: 0; }
.bz-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.bz-stat { background: #fff; border: 1px solid var(--bz-border); border-radius: var(--bz-radius); padding: 16px; }
.bz-stat b { display: block; font-size: 24px; color: var(--bz-primary); }
.bz-table { width: 100%; border-collapse: collapse; }
.bz-table th, .bz-table td { padding: 12px; border-bottom: 1px solid var(--bz-border); text-align: right; font-size: 14px; }
.bz-table th { color: var(--bz-muted); font-size: 12px; }
.bz-chip { display: inline-flex; padding: 4px 8px; border-radius: 999px; font-size: 12px; font-weight: 800; }
.bz-chip-ok { background: #DCFCE7; color: #166534; }
.bz-chip-off { background: #FEE2E2; color: #991B1B; }
.bz-chip-gold { background: #FEF3C7; color: #92400E; }
.bz-empty { text-align: center; padding: 48px 16px; color: var(--bz-muted); }

.bz-legal { max-width: 860px; }
.bz-legal h1, .bz-legal h2 { color: var(--bz-primary); margin-top: 0; }
.bz-legal h3, .bz-legal h4 { color: var(--bz-text); margin: 22px 0 8px; }
.bz-legal p, .bz-legal li { line-height: 1.9; color: #333; }
.bz-legal ul { padding-inline-start: 18px; }
.bz-legal a { color: var(--bz-primary); font-weight: 700; }

.bz-steps { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.bz-step { flex: 1; min-width: 120px; background: var(--bz-primary-soft); color: var(--bz-primary); padding: 10px; border-radius: 12px; text-align: center; font-weight: 800; font-size: 13px; }
.bz-step.active { background: var(--bz-primary); color: #fff; }
.bz-upload {
  border: 2px dashed var(--bz-border); border-radius: 16px; padding: 22px; text-align: center; background: #fafbff; cursor: pointer;
}
.bz-upload.is-over { border-color: var(--bz-primary); background: var(--bz-primary-soft); }
.bz-upload.is-busy { opacity: .7; pointer-events: none; }
.bz-preview { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }
.bz-preview img { width: 108px; height: 108px; object-fit: cover; border-radius: 12px; display: block; pointer-events: none; }
.bz-preview-item {
  position: relative;
  width: 108px;
  cursor: grab;
  user-select: none;
}
.bz-preview-item.is-dragging { opacity: .4; }
.bz-preview-item.is-drop img { outline: 2px dashed var(--bz-primary); }
.bz-preview-item.is-cover img { outline: 2px solid var(--bz-primary); }
.bz-cover-badge {
  position: absolute;
  bottom: 30px;
  right: 6px;
  background: var(--bz-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 999px;
  pointer-events: none;
}
.bz-preview-item [data-img-del] {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 50%;
  background: #E11D48;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px rgba(225, 29, 72, .25);
  z-index: 2;
}
.bz-img-move {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin-top: 6px;
}
.bz-img-move button {
  flex: 1;
  height: 24px;
  border: 0;
  border-radius: 8px;
  background: #EEF0F8;
  color: var(--bz-primary);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 11px;
}
.bz-img-move button:disabled { opacity: .35; cursor: default; }

.bz-slider {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
  background: #1C1F3A;
  aspect-ratio: 16 / 5;
  width: 100%;
  height: auto;
  max-height: 200px;
  box-shadow: 0 10px 24px rgba(51,58,123,.1);
}
.bz-slider-track {
  height: 100%;
  position: relative;
}
.bz-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease;
}
.bz-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.bz-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.bz-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  border: 0; border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--bz-primary);
  cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
  z-index: 2;
}
.bz-slider-btn.prev { right: 10px; }
.bz-slider-btn.next { left: 10px; }
.bz-slider-dots {
  position: absolute;
  bottom: 8px;
  left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px;
  z-index: 2;
}
.bz-slider-dots button {
  width: 8px; height: 8px; border-radius: 999px; border: 0;
  background: rgba(255,255,255,.55); cursor: pointer; padding: 0;
}
.bz-slider-dots button.active { width: 22px; background: #fff; }

.bz-pag { display: flex; gap: 6px; justify-content: center; margin-top: 22px; flex-wrap: wrap; }
.bz-pag a, .bz-pag span { padding: 8px 12px; border-radius: 10px; background: #fff; border: 1px solid var(--bz-border); }
.bz-pag .active { background: var(--bz-primary); color: #fff; border-color: var(--bz-primary); }
.pagination { display:flex; gap:6px; list-style:none; padding:0; justify-content:center; margin: 18px 0; flex-wrap: wrap; }
.pagination .page-link { padding:8px 12px; border-radius:10px; background:#fff; border:1px solid var(--bz-border); display:block; color: var(--bz-text); }
.pagination .active .page-link { background: var(--bz-primary); color:#fff; border-color: var(--bz-primary); }

.admin-shell { display: grid; grid-template-columns: 268px 1fr; min-height: 100vh; background: #F3F4FB; }
.admin-side {
  background: var(--admin-side-bg, #1C1F3A);
  color: #d7dcf3;
  padding: 16px 12px 20px;
  position: sticky; top: 0; height: 100vh; overflow: auto;
}
.admin-brand { display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 14px; padding: 10px 12px; margin-bottom: 8px; }
.admin-brand img { height: 42px; width: auto; display: block; }
.admin-nav-group {
  font-size: 11px; color: #8b93b3; padding: 14px 12px 6px; font-weight: 800; letter-spacing: .04em;
}
.admin-side a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 12px; color: #c9d0ea; margin-bottom: 2px; }
.admin-side a i { width: 18px; text-align: center; opacity: .9; }
.admin-side a:hover, .admin-side a.active { background: rgba(255,255,255,.1); color: #fff; }
.admin-side-user {
  margin-top: 18px; padding: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
}
.admin-side-user b { display: block; color: #fff; font-size: 13px; }
.admin-side-user small { color: #9aa3c7; }
.admin-main { padding: 22px; min-width: 0; }
.admin-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; gap: 12px; }
.admin-top > div:first-child { display: flex; align-items: center; gap: 12px; }
.admin-top h2 { margin: 0; font-size: 22px; color: var(--bz-primary); }
.admin-top small { color: var(--bz-muted); }
.admin-top-actions { display: flex; gap: 8px; }
.admin-menu-btn {
  display: none; width: 40px; height: 40px; border: 0; border-radius: 12px;
  background: #fff; color: var(--bz-primary); cursor: pointer;
}
.admin-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 14px; }
.admin-kpis-sm { grid-template-columns: repeat(8, 1fr); }
.admin-kpi {
  background: #fff; border-radius: 18px; padding: 16px;
  border: 1px solid var(--bz-border); display: block; color: inherit;
  box-shadow: 0 8px 20px rgba(51,58,123,.04);
}
.admin-kpi:hover { border-color: #cfd3e6; }
.admin-kpi-ico {
  width: 38px; height: 38px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 10px; font-size: 15px;
}
.admin-kpi span { color: var(--bz-muted); font-size: 13px; }
.admin-kpi b { display: block; font-size: 26px; margin-top: 4px; color: var(--bz-primary); }
.admin-kpi small { display: block; margin-top: 6px; color: var(--bz-muted); font-size: 12px; }
.admin-actions { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px; }
.admin-actions a {
  background: #fff; border: 1px solid var(--bz-border); border-radius: 12px;
  padding: 10px 14px; font-weight: 700; color: var(--bz-primary);
}
.admin-actions a:hover { background: var(--bz-primary); color: #fff; }
.admin-chart { background: #fff; border-radius: 18px; padding: 16px; border: 1px solid var(--bz-border); }
.admin-chart-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.admin-chart-head h3 { margin: 0; font-size: 16px; color: var(--bz-primary); }
.admin-chart-head a { color: var(--bz-primary); font-weight: 700; font-size: 13px; }
.admin-two { display: grid; grid-template-columns: 1.35fr .65fr; gap: 14px; margin-bottom: 14px; }
.admin-three { display: grid; grid-template-columns: 1.3fr .9fr .8fr; gap: 14px; }
.admin-pie-legend { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; font-size: 13px; }
.admin-pie-legend i { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-left: 6px; }
.admin-thumb { width: 52px; height: 40px; object-fit: cover; border-radius: 8px; }
.admin-search-row {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid var(--bz-border); font-size: 13px;
}
.admin-search-row:last-child { border-bottom: 0; }

@media (max-width: 1200px) {
  .bz-cats { grid-template-columns: repeat(4, 1fr); }
  .bz-grid, .bz-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .bz-layout { grid-template-columns: 240px 1fr; }
  .admin-kpis-sm { grid-template-columns: repeat(4, 1fr); }
  .admin-three { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1100px) {
  .bz-header-actions .bz-btn span { display: none; }
  .bz-header-actions .bz-btn { padding: 10px 12px; min-width: 44px; }
  .bz-userchip span { display: none; }
  .bz-userchip { padding: 3px; max-width: none; }
  .bz-search { max-width: none; }
}
@media (max-width: 980px) {
  .bz-wrap { width: min(1180px, calc(100% - 24px)); }
  .bz-cats { grid-template-columns: repeat(4, 1fr); }
  .bz-grid, .bz-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .bz-ad, .bz-account, .admin-shell, .admin-two, .admin-three, .bz-stats, .admin-kpis, .admin-kpis-sm { grid-template-columns: 1fr; }
  .bz-footer-grid { grid-template-columns: 1fr 1fr; }
  .bz-header-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "logo actions"
      "search search";
    align-items: center;
    gap: 10px 12px;
    padding: 10px 0 12px;
  }
  .bz-logo { grid-area: logo; }
  .bz-header-actions { grid-area: actions; }
  .bz-search { width: 100%; max-width: none; grid-area: search; }
  .bz-nav {
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
  }
  .bz-nav::-webkit-scrollbar { display: none; }
  .bz-nav a, .bz-more > summary { padding: 10px 12px 14px; }
  .bz-hero { padding: 28px 0 24px; }
  .bz-hero h1 { font-size: 26px; }
  .bz-gallery-stage, .bz-gallery-main { height: min(52vw, 320px); }
  .bz-slider { aspect-ratio: 16 / 5; max-height: 160px; border-radius: 12px; }
  .bz-section { padding: 24px 0; }
  .bz-cat-pick { grid-template-columns: repeat(3, 1fr); }
  .bz-side .bz-seller, .bz-side-out { display: none; }
  .bz-side {
    padding: 10px;
    overflow: hidden;
  }
  .bz-side-nav {
    flex-direction: row;
    overflow-x: auto;
    gap: 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .bz-side-nav::-webkit-scrollbar { display: none; }
  .bz-side-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 8px 12px;
    background: #F7F8FD;
  }
  .bz-ad-cta {
    position: fixed;
    right: 0; left: 0;
    bottom: 0;
    z-index: 45;
    flex-direction: row;
    background: #fff;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    margin: 0;
    border-top: 1px solid var(--bz-border);
    box-shadow: 0 -8px 24px rgba(28,31,58,.1);
  }
  .bz-ad-cta .bz-btn { flex: 1; }
  .bz-owner-cta form { flex: 1; display: flex; }
  .bz-owner-cta form .bz-btn { width: 100%; }
  .bz-ad-cta .bz-contact-lock { flex: 1; min-width: 0; }
  .bz-ad-cta .bz-contact-lock-ghost {
    flex-direction: row;
    filter: blur(6px);
  }
  .bz-ad-cta .bz-contact-lock-ghost .bz-contact-num,
  .bz-ad-cta .bz-contact-lock-ghost .bz-btn-ghost { display: none; }
  .bz-ad-cta .bz-contact-lock-ghost .bz-btn { flex: 1; }
  .bz-ad-cta .bz-contact-lock-overlay small { display: none; }
  .bz-ad-cta .bz-contact-lock-overlay { flex-direction: row; gap: 8px; padding: 0 12px; }
  .bz-ad-cta .bz-contact-lock-overlay i { width: 30px; height: 30px; margin: 0; font-size: 12px; }
  .bz-ad.has-cta { padding-bottom: 72px; }
  .admin-side { position: relative; height: auto; display: none; }
  .admin-shell.is-nav-open .admin-side { display: block; }
  .admin-menu-btn { display: grid; place-items: center; }
  input, select, textarea { font-size: 16px !important; }
  .bz-body:has(.bz-ad-cta) { padding-bottom: 72px; }
  .bz-filters-acc > summary { display: flex; }
  .bz-filters-acc > h3 { display: none; }
  .bz-filters-acc:not([open]) > *:not(summary) { display: none; }
  .bz-panel:has(> .bz-table),
  .admin-chart:has(.bz-table),
  .admin-main:has(> .bz-table) {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .bz-table { min-width: 640px; }
  .bz-table-stack { min-width: 0; }
}
@media (min-width: 981px) {
  .bz-filters-acc > summary { display: none !important; }
  .bz-filters-acc > *:not(summary) { display: block !important; }
}
@media (max-width: 840px) {
  .bz-layout { grid-template-columns: 1fr; }
  .bz-create-grid { grid-template-columns: 1fr; }
  .bz-specs { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .bz-nav-bar { display: none; }
  .bz-bottom-nav { display: flex; }
  .bz-header-actions .bz-btn-primary { display: none; }
  .bz-hero-search { display: none; }
  .bz-body { padding-bottom: calc(78px + env(safe-area-inset-bottom)); }
  .bz-body:has(.bz-ad-cta) { padding-bottom: calc(140px + env(safe-area-inset-bottom)); }
  .bz-ad-cta { bottom: calc(58px + env(safe-area-inset-bottom)); padding-bottom: 10px; }
  .bz-ad.has-cta { padding-bottom: 84px; }
  .bz-footer { margin-top: 28px; padding-top: 32px; }
  .bz-table-stack { min-width: 0 !important; }
  .bz-table-stack thead { display: none; }
  .bz-table-stack, .bz-table-stack tbody, .bz-table-stack tr, .bz-table-stack td {
    display: block;
    width: 100%;
  }
  .bz-table-stack tr {
    border: 1px solid var(--bz-border);
    border-radius: 14px;
    padding: 12px;
    margin-bottom: 10px;
  }
  .bz-table-stack td { border: 0; padding: 6px 0; }
  .bz-table-stack td:last-child { display: flex; flex-wrap: wrap; gap: 6px; }
  .bz-lightbox-hint { display: none; }
  .bz-lightbox-nav { width: 40px; height: 40px; }
  .bz-lightbox-nav.prev { right: 8px; }
  .bz-lightbox-nav.next { left: 8px; }
  .bz-lightbox-close { top: 10px; left: 10px; width: 42px; height: 42px; }
  .bz-lightbox-img { max-height: calc(100dvh - 92px); }
}
@media (max-width: 640px) {
  .bz-avatar-edit { flex-direction: column; text-align: center; gap: 12px; }
  .bz-wrap { width: min(1180px, calc(100% - 16px)); }
  .bz-cats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .bz-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .bz-cat-pick { grid-template-columns: 1fr 1fr; }
  .bz-footer-grid { grid-template-columns: 1fr; gap: 22px; }
  .bz-slider { aspect-ratio: 16 / 6; max-height: 132px; }
  .bz-search { height: 56px; }
  .bz-search-cat { border-radius: 0 16px 16px 0; }
  .bz-search-cat-btn { max-width: 52px; padding: 0 10px; }
  .bz-search-cat-btn [data-cat-label],
  .bz-search-cat-btn .bz-dd-caret { display: none; }
  .bz-search-q { padding: 0 10px; }
  .bz-search > button[type="submit"] { padding: 0 12px; font-size: 14px; gap: 0; }
  .bz-search > button[type="submit"] i { display: none; }
  .bz-slider-btn { width: 32px; height: 32px; }
  .bz-subnav-btn { width: 30px; height: 30px; font-size: 12px; }
  .bz-subnav-wrap.is-overflow .bz-subnav { padding-inline: 34px; }
  .bz-hero h1 { font-size: 22px; }
  .bz-hero p { font-size: 14px; }
  .bz-hero-search { border-radius: 16px; min-height: 54px; height: 54px; }
  .bz-hero-search .bz-search-q input { padding: 0 0 4px; font-size: 16px; line-height: 1.9; }
  .bz-suggest-list { grid-template-columns: 1fr; }
  .bz-card-img { height: 132px; }
  .bz-title { min-height: 0; font-size: 13px; }
  .bz-price { font-size: 15px; }
  .bz-card-body { padding: 10px; }
  .bz-cat { padding: 14px 8px 12px; }
  .bz-cat-icon { width: 50px; height: 50px; font-size: 20px; border-radius: 14px; }
  .bz-auth { padding: 18px 0 28px; }
  .bz-auth-card { padding: 22px 16px; border-radius: 18px; }
  .bz-section-head h2 { font-size: 18px; }
  .bz-gallery-stage, .bz-gallery-main { height: 220px; }
  .bz-gallery-btn { width: 36px; height: 36px; }
  .bz-steps { gap: 6px; }
  .bz-step { min-width: 0; font-size: 12px; padding: 8px 6px; }
  .bz-chat-form .bz-btn { flex: 0 0 auto; padding: 10px 14px; }
  .bz-copy-inner { justify-content: center; text-align: center; }
  .bz-dd { min-width: min(280px, calc(100vw - 24px)); right: 0; left: auto; }
  .bz-more-menu { left: auto; right: 0; min-width: min(260px, calc(100vw - 24px)); }
}
@media (max-width: 420px) {
  .bz-cats { grid-template-columns: repeat(2, 1fr); }
  .bz-specs { grid-template-columns: 1fr; }
  .bz-stats { grid-template-columns: 1fr 1fr; }
  .bz-logo img { height: 34px; }
}
