:root {
  --bg: #0F1415;
  --bg-2: #0F1415;
  --panel: #1a2122;
  --panel-2: #222a2b;
  --text: #f3f4f6;
  --muted: #9ca3af;
  --border: #2c3536;
  --white: #ffffff;
  --accent: #e8eaed;
  --brand: #e06b52;
  --brand-hover: #ec8068;
  --brand-soft: rgba(224, 107, 82, 0.14);
  --brand-glow: rgba(224, 107, 82, 0.35);
  --max: 1200px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
img, picture, video {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.product-card__img img,
.product-card__open img,
.product-modal__media img,
.fav-item__img img,
.banner-slide img,
.logo__img {
  pointer-events: none;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
}
body.age-locked { overflow: hidden; }
body.age-locked .site-root { filter: blur(4px); pointer-events: none; user-select: none; }
body.age-locked .site-overlays,
body.age-locked .site-overlays * { pointer-events: auto; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--white); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 16px; }
.muted { color: var(--muted); }
.section-title { font-size: 26px; font-weight: 700; margin: 0 0 20px; color: var(--white); }
.section-title--upper { text-transform: uppercase; letter-spacing: 0.02em; font-size: 20px; }

.age-gate {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, 0.82); padding: 16px;
}
.age-gate.hidden { display: none; }
.age-gate__box {
  background: var(--panel); border: 1px solid var(--border); border-radius: 12px;
  padding: 32px 28px; max-width: 420px; width: 100%; text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}
.age-gate__box h2 { margin: 16px 0 8px; font-size: 22px; }
.age-gate__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }

.topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 16px; font-size: 13px; border-bottom: 1px solid var(--border);
  background: var(--bg-2); flex-wrap: wrap; gap: 8px;
}
.topbar__nav { display: flex; flex-wrap: wrap; gap: 16px; }
.topbar__nav a { color: var(--muted); }
.topbar__nav a:hover { color: var(--white); }
.topbar__auth { display: flex; gap: 16px; }

.warning-bar {
  background: var(--panel-2); color: var(--muted); text-align: center;
  font-size: 11px; font-weight: 600; padding: 8px 12px; letter-spacing: 0.03em;
  border-bottom: 1px solid var(--border);
}

.header { border-bottom: 1px solid var(--border); background: var(--bg-2); }
.header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 0;
  align-items: center;
  padding: 6px 16px 8px;
}
.logo {
  grid-row: 1;
  grid-column: 1;
  display: flex; align-items: center; gap: 10px; font-weight: 800;
  font-size: 22px; letter-spacing: 0.04em; color: var(--white);
  text-decoration: none;
}
.logo:hover { color: var(--white); }
.logo__text {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.1;
  white-space: nowrap;
}
.logo__mark { font-size: 28px; opacity: 0.9; }
.logo__accent { color: var(--brand); }
.header__phone {
  grid-row: 1;
  grid-column: 2;
  justify-self: end;
  text-align: right;
}
.phone { display: block; font-size: 20px; font-weight: 700; white-space: nowrap; color: var(--white); }
.phone__label { font-size: 12px; color: var(--muted); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; font: inherit; font-weight: 600;
  padding: 10px 16px; border-radius: 6px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn--light { background: var(--accent); color: var(--bg); }
.btn--light:hover { background: var(--white); }
.btn--red, .btn--accent {
  background: var(--brand); color: var(--white);
  box-shadow: 0 2px 12px var(--brand-glow);
}
.btn--red:hover, .btn--accent:hover { background: var(--brand-hover); color: var(--white); }
.btn--outline { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn--outline:hover { border-color: var(--brand); color: var(--white); }
.btn--outline.btn--active, .pagination .btn--light {
  background: var(--brand); border-color: var(--brand); color: var(--white);
}
.btn--ghost { background: transparent; color: var(--muted); border: 1px solid var(--border); }
.btn--ghost:hover { color: var(--white); }
.btn--sm { padding: 8px 12px; font-size: 13px; }
.btn--block { width: 100%; }

.toolbar {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex; align-items: center; gap: 12px;
  padding: 0; flex-wrap: wrap; min-width: 0;
}
@media (max-width: 900px) {
  .header__inner {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }
  .header__phone { justify-self: start; }
}
.store-picker-btn {
  display: inline-flex; align-items: center; gap: 8px; max-width: 220px;
  background: var(--panel); border: 1px solid var(--border); color: var(--text);
  padding: 10px 14px; border-radius: 6px; cursor: pointer; font: inherit; font-size: 13px;
  text-align: left;
}
.store-picker-btn:hover { border-color: var(--brand); color: var(--white); }
.store-picker-btn__icon { flex-shrink: 0; color: var(--text); display: inline-flex; }
.store-picker-btn__icon svg { width: 18px; height: 18px; }
.store-picker-btn__text {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
@media (max-width: 700px) {
  .store-picker-btn { max-width: 100%; flex: 1 1 100%; order: -1; }
}
.store-modal h3 { margin: 0 0 8px; color: var(--white); }
.store-list { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; max-height: 50vh; overflow-y: auto; }
.store-pick {
  width: 100%; text-align: left; background: var(--panel-2); border: 1px solid var(--border);
  color: var(--text); padding: 12px 14px; border-radius: 6px; cursor: pointer; font: inherit;
  transition: border-color 0.15s, background 0.15s;
}
.store-pick:hover { border-color: var(--brand); background: var(--brand-soft); color: var(--white); }
.modal--store { max-width: 440px; }
.modal--store .modal__inner { padding: 24px; }
.catalog-btn {
  background: var(--brand); color: var(--white); font-weight: 700;
  padding: 12px 20px; border-radius: 6px; white-space: nowrap;
  border: none; cursor: pointer; font: inherit; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 2px 12px var(--brand-glow);
}
.catalog-btn:hover { background: var(--brand-hover); color: var(--white); }
.catalog-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.search-wrap { flex: 1; min-width: 200px; position: relative; }
.search {
  width: 100%; display: flex; align-items: center;
  background: var(--panel); border: 1px solid var(--border); border-radius: 6px; overflow: hidden;
}
.search:focus-within { border-color: var(--brand); box-shadow: 0 0 0 2px var(--brand-soft); }
.search input {
  flex: 1; border: none; padding: 12px 16px; font: inherit;
  background: transparent; color: var(--text); min-width: 0;
}
.search input::placeholder { color: var(--muted); }
.search__clear {
  border: none; background: transparent; color: var(--muted); padding: 0 10px;
  cursor: pointer; font-size: 18px; line-height: 1; display: none;
}
.search__clear.visible { display: inline-flex; align-items: center; }
.search__clear:hover { color: var(--white); }
.search button[type="submit"] {
  border: none; background: transparent; color: var(--text);
  padding: 0 14px; cursor: pointer; display: inline-flex; align-items: center;
}
.search button[type="submit"] svg { width: 18px; height: 18px; }
.search-hint {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px);
  background: var(--panel); border: 1px solid var(--border); border-radius: 8px;
  padding: 10px 14px; font-size: 13px; color: var(--muted); z-index: 50;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35); display: none;
}
.search-hint.visible { display: block; }
.search-hint strong { color: var(--white); font-weight: 600; }
.toolbar__icons { display: flex; gap: 8px; }
.icon-btn {
  display: flex; align-items: center; gap: 6px; text-decoration: none;
  background: var(--panel); border: 1px solid var(--border); color: var(--text);
  padding: 10px 14px; border-radius: 6px; font-style: normal; font-size: 14px;
  transition: border-color 0.15s, color 0.15s;
}
.icon-btn:hover { border-color: var(--brand); color: var(--white); }
.icon-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.icon-btn em {
  font-style: normal; background: var(--brand); min-width: 20px; height: 20px;
  border-radius: 10px; display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--white);
}
.icon-btn em:empty, .icon-btn em[data-zero="1"] { background: var(--panel-2); color: var(--muted); }
.icon-btn--pulse { animation: cart-pulse 0.5s ease; }
@keyframes cart-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); border-color: var(--brand); }
}

.hero { padding: 32px 16px; background: var(--bg); border-bottom: 1px solid var(--border); }
.hero h1 { margin: 0 0 8px; font-size: 32px; color: var(--white); }
.hero p { margin: 0; color: var(--muted); max-width: 560px; }

.catalog-section { padding: 32px 16px 48px; }
.catalog-layout { display: grid; grid-template-columns: 220px 1fr; gap: 24px; align-items: start; }
@media (max-width: 900px) { .catalog-layout { grid-template-columns: 1fr; } .catalog-sidebar { display: none; } }
.catalog-sidebar {
  background: var(--panel); border: 1px solid var(--border); border-radius: 8px;
  padding: 12px; position: sticky; top: 16px;
}
.catalog-sidebar__home {
  width: 100%; text-align: left; background: var(--panel-2); border: 1px solid var(--border);
  color: var(--white); padding: 10px 12px; border-radius: 6px; cursor: pointer;
  font: inherit; font-weight: 600; margin-bottom: 8px;
}
.catalog-sidebar__nav { display: flex; flex-direction: column; gap: 2px; }
.sidebar-link {
  display: flex; align-items: center; gap: 8px;
  width: 100%; text-align: left; background: transparent; border: none;
  color: var(--muted); padding: 8px 10px; border-radius: 4px; cursor: pointer; font: inherit; font-size: 13px;
}
.catalog-sidebar__home:hover { border-color: var(--brand); }
.sidebar-link:hover { background: var(--panel-2); color: var(--white); }
.sidebar-link.active {
  background: var(--brand-soft); color: var(--white);
  box-shadow: inset 3px 0 0 var(--brand);
}
.sidebar-link:hover, .sidebar-link.active { background: var(--brand-soft); color: var(--white); }
.sidebar-link.active { box-shadow: inset 3px 0 0 var(--brand); }
.sidebar-link:not(.active):hover { background: var(--panel-2); box-shadow: none; }

.catalog-breadcrumbs {
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
  margin-bottom: 12px; font-size: 13px; color: var(--muted);
}
.catalog-breadcrumbs button {
  background: none; border: none; color: var(--brand); cursor: pointer; font: inherit; padding: 0;
}
.catalog-breadcrumbs button:hover { color: var(--brand-hover); text-decoration: underline; }
.catalog-breadcrumbs span.sep { opacity: 0.5; }

.catalog-main {
  display: flex; flex-direction: column; gap: 24px;
}
.catalog-main--search .catalog-grid { display: none !important; }

.catalog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px;
}
.catalog-grid[hidden],
.products-grid[hidden],
.catalog-pagination[hidden] {
  display: none !important;
}
.cat-tile {
  border: 1px solid var(--border); background: var(--panel); padding: 16px 10px 14px;
  text-align: center; border-radius: 8px; transition: border-color 0.15s, background 0.15s, transform 0.15s;
  cursor: pointer; color: inherit; min-height: 130px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
}
.cat-tile:hover { border-color: var(--brand); background: var(--panel-2); transform: translateY(-2px); }
.cat-tile__icon .cat-svg { width: 56px; height: 56px; display: block; }
.cat-tile__icon {
  width: 64px; height: 64px; display: flex; align-items: center; justify-content: center;
  color: var(--text); flex-shrink: 0;
}
.cat-svg__ink { color: var(--text); }
.cat-svg__accent { color: var(--brand); }
.cat-svg__accent--fill { color: var(--brand); }
.cat-tile__icon--lg { width: 72px; height: 72px; }
.cat-tile__icon--lg .cat-svg { width: 68px; height: 68px; }
.sidebar-link__icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--muted); }
.sidebar-link__icon .cat-svg { width: 20px; height: 20px; }
.sidebar-link__icon .cat-svg__ink { color: var(--muted); }
.sidebar-link:hover .sidebar-link__icon,
.sidebar-link.active .sidebar-link__icon { color: var(--brand); }
.sidebar-link:hover .sidebar-link__icon .cat-svg__ink,
.sidebar-link.active .sidebar-link__icon .cat-svg__ink { color: var(--text); }
.cat-tile__name { font-size: 12px; font-weight: 500; line-height: 1.3; color: var(--muted); }

.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px;
}
.product-card {
  background: var(--panel); border: 1px solid var(--border); border-radius: 8px;
  overflow: hidden; display: flex; flex-direction: column;
  position: relative;
}
.product-card__img {
  aspect-ratio: 1; background: var(--bg-2);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  position: relative;
}
.product-card__img img { width: 100%; height: 100%; object-fit: contain; }
.product-fav {
  position: absolute; top: 8px; right: 8px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border); background: rgba(15, 20, 21, 0.82);
  color: var(--muted); display: grid; place-items: center;
  cursor: pointer; padding: 0; transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.product-fav svg { width: 18px; height: 18px; }
.product-fav:hover { color: var(--brand); border-color: var(--brand); }
.product-fav.is-active {
  color: #fff; background: var(--brand); border-color: var(--brand);
}
.product-fav.is-active svg { fill: currentColor; stroke: currentColor; }
.fav-item__row {
  display: flex; gap: 10px; align-items: center;
}
.fav-item__open {
  display: flex; gap: 10px; align-items: center; flex: 1; min-width: 0;
  border: none; background: transparent; color: inherit; text-align: left;
  padding: 0; cursor: pointer; font: inherit;
}
.fav-item__open:hover .fav-item__name { color: var(--brand); }
.fav-item__img {
  width: 56px; height: 56px; border-radius: 6px; background: var(--bg-2);
  display: grid; place-items: center; overflow: hidden; flex-shrink: 0;
}
.fav-item__img img { width: 100%; height: 100%; object-fit: contain; }
.fav-item__meta { flex: 1; min-width: 0; }
.fav-item__name { font-size: 13px; font-weight: 500; line-height: 1.3; }
.fav-item__price { font-size: 15px; font-weight: 700; margin-top: 4px; }
.fav-item__actions { display: flex; flex-direction: column; gap: 6px; flex-shrink: 0; }

.product-card__open {
  display: block; width: 100%; height: 100%; border: none; padding: 0;
  background: transparent; cursor: pointer;
}
.product-card__open-text {
  display: block; width: 100%; border: none; padding: 0;
  background: transparent; color: inherit; text-align: left;
  cursor: pointer; font: inherit;
}
.product-card__open-text:hover .product-card__name { color: var(--brand); }

.modal--product { max-width: 720px; width: calc(100vw - 32px); }
.product-modal__layout {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 20px; margin-bottom: 16px;
}
@media (max-width: 700px) {
  .product-modal__layout { grid-template-columns: 1fr; }
}
.product-modal__media {
  aspect-ratio: 1; background: var(--bg-2); border-radius: 10px;
  display: grid; place-items: center; overflow: hidden;
}
.product-modal__media img { width: 100%; height: 100%; object-fit: contain; }
.product-modal__noimg { padding: 24px; }
.product-modal__brand {
  font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em;
}
.product-modal__name {
  margin: 6px 0 10px; font-size: 22px; line-height: 1.25; font-weight: 700;
}
.product-modal__price { font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.product-modal__stock { margin-bottom: 10px; }
.product-modal__desc {
  margin: 12px 0 16px; color: var(--muted); font-size: 14px; line-height: 1.5;
  white-space: pre-wrap;
}
.product-modal__actions {
  margin: 12px 0; display: flex; justify-content: flex-start;
}
.product-modal__actions .btn--block,
.product-modal__actions .product-cart-control { max-width: 220px; }
.product-modal__fav { margin-top: 8px; }
.product-card__body { padding: 12px; flex: 1; display: flex; flex-direction: column; gap: 6px; align-items: stretch; }
.product-card__brand { font-size: 11px; color: var(--muted); text-transform: uppercase; }
.product-card__name { font-size: 13px; font-weight: 500; line-height: 1.35; flex: 1; }
.product-card:hover { border-color: rgba(224, 107, 82, 0.45); }
.product-card__price { font-size: 18px; font-weight: 700; color: var(--white); }
.product-card__actions .btn--accent { font-weight: 600; }
.product-card__stock { font-size: 12px; color: var(--muted); }
.product-card__stock--out { color: #f87171; }
.product-card__actions {
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.product-card__actions .btn--block {
  width: 100%;
  max-width: 168px;
}

.product-cart-control {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  max-width: 168px;
}
.product-cart-control--active {
  padding: 0;
  background: transparent;
  border: none;
}
.product-cart-control__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--brand);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-cart-stepper {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.product-cart-stepper__btn {
  flex: 1;
  min-width: 40px;
  height: 36px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.product-cart-stepper__btn:hover:not(:disabled) {
  background: var(--brand-soft);
  color: var(--brand-hover);
}
.product-cart-stepper__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.product-cart-stepper__btn:first-child { border-right: 1px solid var(--border); }
.product-cart-stepper__btn:last-child { border-left: 1px solid var(--border); }
.product-cart-stepper__qty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 0 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  background: rgba(224, 107, 82, 0.08);
}

.site-toast {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%) translateY(16px);
  z-index: 9999; padding: 12px 20px; border-radius: 10px; font-size: 14px; font-weight: 600;
  opacity: 0; pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}
.site-toast--show { opacity: 1; transform: translateX(-50%) translateY(0); }
.site-toast--success { background: #166534; color: #bbf7d0; border: 1px solid #22c55e; }
.site-toast--info { background: var(--panel); color: var(--white); border: 1px solid var(--border); }
.site-toast--warn { background: #78350f; color: #fde68a; border: 1px solid #f59e0b; }

.cart-count--pop { animation: cart-count-pop 0.45s ease; }
@keyframes cart-count-pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.35); background: #22c55e; }
}
.catalog-pagination { display: flex; gap: 8px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }

.features {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  padding: 32px 16px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
@media (max-width: 768px) { .features { grid-template-columns: repeat(2, 1fr); } }
.feature { text-align: center; font-size: 13px; color: var(--muted); }
.feature__icon {
  width: 48px; height: 48px; margin: 0 auto 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text); border: 1px solid var(--border); border-radius: 50%;
  background: var(--panel);
}
.feature__icon svg { width: 24px; height: 24px; }

.promotions-section { padding: 40px 16px; }
.promo-grid { display: grid; gap: 16px; }
.promo-card {
  border: 1px solid var(--border); background: var(--panel); padding: 16px 20px;
  border-left: 3px solid var(--brand); border-radius: 0 8px 8px 0;
}
.promo-card h3 { margin: 0 0 8px; font-size: 18px; color: var(--white); }
.promo-card p { margin: 0; color: var(--muted); font-size: 14px; }

.about-section, .blog-section, .wholesale-section { padding: 40px 16px; max-width: var(--max); margin: 0 auto; }
.wholesale-form { display: grid; gap: 12px; max-width: 480px; margin-top: 16px; }
.wholesale-form input, .wholesale-form textarea {
  font: inherit; padding: 10px 12px; border: 1px solid var(--border);
  border-radius: 6px; background: var(--panel); color: var(--text);
}
.wholesale-form input:focus, .wholesale-form textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 2px var(--brand-soft);
}

.addresses-section { background: var(--bg-2); padding: 48px 0; border-top: 1px solid var(--border); }
.addresses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.store-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 160px;
}
.store-card__city {
  font-weight: 800;
  font-size: 15px;
  color: var(--white);
  letter-spacing: 0.02em;
}
.store-card__name {
  font-size: 13px;
  color: var(--muted);
}
.store-card__addr {
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
  margin-top: 2px;
}
.store-card__phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  margin-top: 4px;
}
.store-card__phone:hover { color: var(--brand-hover); }
.store-card__maps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
}
.store-card__maps .btn {
  flex: 1 1 auto;
  min-width: 110px;
  text-decoration: none;
}

.footer { border-top: 1px solid var(--border); padding: 32px 0 16px; font-size: 13px; background: var(--bg); }
.footer__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: start; }
.footer__18 { text-align: center; }
.badge-18 {
  width: 56px; height: 56px; border: 2px solid var(--brand); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; margin: 0 auto 8px; color: var(--white);
}
.badge-18--lg { width: 72px; height: 72px; font-size: 22px; }
.footer__social {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  justify-content: center; margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--border);
}
.footer-social-link {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 110px; padding: 10px 16px; border-radius: 6px;
  border: 1px solid var(--border); background: var(--panel);
  color: var(--white); font-weight: 600; font-size: 13px;
  text-decoration: none; transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.footer-social-link:hover {
  border-color: var(--brand); color: var(--white); background: var(--brand-soft);
}
.footer__legal { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); font-size: 11px; color: var(--muted); }

.fab {
  position: fixed; border: none; cursor: pointer; border-radius: 50%;
  width: 44px; height: 44px; font-size: 20px; z-index: 100;
  background: var(--panel); color: var(--white); border: 1px solid var(--border);
}
.fab--up { right: 24px; bottom: 80px; }
.fab--up:hover { border-color: var(--brand); color: var(--brand); }
.age-gate__actions .btn--red { min-width: 160px; }

/* ——— Logo ——— */
.logo__img {
  display: block;
  height: 56px;
  width: 56px;
  max-width: 56px;
  border-radius: 12px;
  object-fit: contain;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .logo__img {
    height: 48px;
    width: 48px;
    max-width: 48px;
    border-radius: 10px;
  }
  .logo { gap: 8px; }
  .logo__text { font-size: 18px; }
}
.link-btn {
  background: none; border: none; color: var(--muted); cursor: pointer;
  font: inherit; font-size: 13px; padding: 0;
}
.link-btn:hover { color: var(--white); }

/* ——— Warning marquee ——— */
.warning-marquee {
  background: #fff; color: #111; overflow: hidden;
  border-bottom: 1px solid #e5e7eb; font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 7px 0;
}
.warning-marquee__track {
  display: flex; width: max-content;
  animation: marquee 40s linear infinite;
}
.warning-marquee__track span {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ——— Hero banners (full-bleed carousel) ——— */
.banners-hero {
  width: 100%;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.banner-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.banner-carousel[hidden] { display: none !important; }
.banner-track {
  display: flex;
  width: 100%;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.banner-track::-webkit-scrollbar { display: none; }
.banner-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  scroll-snap-align: start;
  position: relative;
  /* Короткая широкая полоса как у oshiha — каталог виден без скролла */
  height: clamp(200px, 32vh, 360px);
  max-height: 360px;
  overflow: hidden;
  background: #0F1415;
  cursor: pointer;
}
.banner-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.banner-slide__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 8px;
  padding: clamp(16px, 3vw, 28px);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  pointer-events: none;
}
.banner-slide__body:empty { display: none; }
.banner-slide__badge {
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}
.banner-slide__title {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  color: #fff;
  margin: 0;
  max-width: 36rem;
}
.banner-slide__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 32rem;
}
.banner-slide__cta {
  pointer-events: auto;
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
@media (max-width: 700px) {
  .banner-slide {
    height: clamp(160px, 28vh, 240px);
    max-height: 240px;
  }
  .banner-slide__body {
    gap: 6px;
    padding: 12px 14px 14px;
  }
  .banner-slide__title { font-size: clamp(16px, 4.5vw, 22px); max-width: 100%; }
  .banner-slide__sub { font-size: 13px; max-width: 100%; }
  .banner-slide__cta { padding: 8px 14px; font-size: 13px; }
}
.banner-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 0 16px;
}
.banner-dot {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.2s;
}
.banner-dot.active { background: var(--brand); }

/* ——— Auth ——— */
.modal--auth, .modal--cart { max-width: 440px; }
.auth-tabs { display: flex; gap: 4px; margin: 12px 0; flex-wrap: wrap; }
.auth-tab {
  flex: 1; min-width: 70px; padding: 8px; border: 1px solid var(--border);
  background: var(--panel-2); color: var(--muted); border-radius: 6px;
  font: inherit; font-size: 12px; cursor: pointer;
}
.auth-tab.active { border-color: var(--brand); color: var(--white); background: var(--brand-soft); }
.auth-panel .input, .cart-modal .input, .cart-modal select.input {
  width: 100%; margin: 8px 0; padding: 10px 12px; font: inherit;
  border: 1px solid var(--border); border-radius: 6px;
  background: var(--bg-2); color: var(--text);
}
.auth-error { color: #f87171; font-size: 13px; margin: 8px 0; }
.auth-setup-hint {
  margin-top: 12px; padding: 10px 12px; border-radius: 8px;
  background: var(--panel-2); border: 1px solid var(--border); line-height: 1.5; font-size: 12px;
}
.auth-setup-hint code { color: var(--brand); word-break: break-all; }
.auth-fallback { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
#telegram-login-widget { display: flex; justify-content: center; min-height: 44px; }
.btn--vk {
  background: #0077ff; color: #fff; font-weight: 600;
  box-shadow: 0 2px 12px rgba(0, 119, 255, 0.35);
}
.btn--vk:hover { background: #0066dd; color: #fff; }
.modal, .modal * { pointer-events: auto; }
.site-overlays { position: relative; z-index: 10001; }
.cart-items { display: flex; flex-direction: column; gap: 10px; max-height: 240px; overflow-y: auto; margin: 12px 0; }
.cart-item {
  display: grid; grid-template-columns: 1fr auto; gap: 8px; align-items: center;
  padding: 10px; background: var(--panel-2); border-radius: 8px; font-size: 13px;
}
.cart-item__qty { display: flex; align-items: center; gap: 6px; }
.cart-item__qty button {
  width: 28px; height: 28px; border: 1px solid var(--border); background: var(--panel);
  color: var(--text); border-radius: 4px; cursor: pointer; font: inherit;
}
.cart-total { font-size: 18px; font-weight: 700; margin: 12px 0; color: var(--white); }
.checkout-result { color: #4ade80; margin: 12px 0; }
.cat-tile__icon .cat-svg { filter: none; }

.modal {
  border: none; border-radius: 12px; padding: 0; max-width: 420px;
  width: calc(100% - 32px); background: var(--panel); color: var(--text);
}
.modal::backdrop { background: rgba(0, 0, 0, 0.65); }
.modal__inner { padding: 24px; }
.modal__inner h3 { margin: 0 0 8px; color: var(--white); }
.modal__inner input {
  width: 100%; margin: 12px 0; padding: 10px 12px; font: inherit;
  border: 1px solid var(--border); border-radius: 6px; background: var(--bg-2); color: var(--text);
}
.modal__actions { display: flex; gap: 8px; flex-wrap: wrap; }
