/**
 * BORMASH industrial — TornadoTool: латунь + графит (перебивает :root premium).
 * Включается только при SHOP_VISUAL_THEME=bormash_industrial (класс на <html>).
 */

html.theme-bormash-industrial {
  --bg: #0f1113;
  --panel: #1a1d20;
  --panel2: #1a1d20;
  --text: #ffffff;
  --muted: #b0b3b8;
  --line: #2a2e33;
  /* Латунь логотипа: основной / тень / свет (hover) */
  --gold: #d6b55a;
  --gold-deep: #b7923a;
  --gold-bright: #e6cc73;
  --brand: #d6b55a;
  --brand2: #b7923a;
  /* Перебить premium --accent:#F4A000 — ссылки по умолчанию */
  --accent: #d6b55a;
  --btn-text: #1a1d20;
  --danger: #b85a64;
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  --shadow2: 0 8px 24px rgba(0, 0, 0, 0.28);
  --footer-bg: #0f1113;
  --footer-border: #2a2e33;
  --footer-text: #ffffff;
  --footer-muted: #b0b3b8;
}

/* Фон страницы — нейтральный графит */
html.theme-bormash-industrial body {
  background: radial-gradient(ellipse 100% 70% at 50% -10%, #14171a 0%, var(--bg) 55%);
  color: var(--text);
}

html.theme-bormash-industrial body::before {
  opacity: 0.06;
  mix-blend-mode: soft-light;
  filter: grayscale(0.4) contrast(1.1);
}

/* ─── Шапка, drawer, дропдаун ─── */
html.theme-bormash-industrial .sitehdr {
  background: #0f1113;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

html.theme-bormash-industrial .sitehdr__burger {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
}

html.theme-bormash-industrial .sitehdr__burger-line {
  background: var(--text);
}

html.theme-bormash-industrial .sitehdr__logo {
  border: 1px solid var(--line);
  background: var(--panel);
  object-fit: contain;
  padding: 4px;
}

/* Квадратный SVG-логотип (Pic → bormash_logo.svg) — без обрезки круга */
html.theme-bormash-industrial .sitehdr__drawer-brand-icon,
html.theme-bormash-industrial .footer__logo-icon {
  object-fit: contain;
}

html.theme-bormash-industrial .sitehdr__input {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--text);
}

html.theme-bormash-industrial .sitehdr__input::placeholder {
  color: rgba(176, 179, 184, 0.5);
}

html.theme-bormash-industrial .sitehdr__btn:not(.sitehdr__btn--icon) {
  background: var(--gold);
  color: var(--btn-text);
  border: 1px solid var(--gold-deep);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}

html.theme-bormash-industrial .sitehdr__btn:not(.sitehdr__btn--icon):hover {
  background: var(--gold-bright);
  border-color: var(--gold-deep);
}

html.theme-bormash-industrial .sitehdr__btn:not(.sitehdr__btn--icon):active {
  background: var(--gold-deep);
  color: var(--btn-text);
}

html.theme-bormash-industrial .sitehdr__btn.sitehdr__btn--icon {
  color: var(--muted);
}

html.theme-bormash-industrial .sitehdr__link {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
}

html.theme-bormash-industrial .sitehdr__link:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(214, 181, 90, 0.08);
}

html.theme-bormash-industrial .sitehdr__link--login {
  border-color: var(--line);
  background: transparent;
}

html.theme-bormash-industrial .sitehdr__drawer-backdrop {
  background: rgba(6, 8, 7, 0.72);
}

html.theme-bormash-industrial .sitehdr__drawer {
  background: #0f1113;
  border-right: 1px solid var(--line);
  box-shadow: 12px 0 40px rgba(0, 0, 0, 0.45);
}

html.theme-bormash-industrial .sitehdr__drawer-brand-wordmark {
  color: var(--text);
}

/* premium задаёт светлый фон чипов — при --text:#fff текст нечитаем; тёмная панель + золото на hover */
html.theme-bormash-industrial .sitehdr__drawer-link {
  color: var(--text);
  background: var(--panel);
  border: 1px solid var(--line);
}

html.theme-bormash-industrial .sitehdr__drawer-link:hover {
  background: rgba(214, 181, 90, 0.12);
  border-color: rgba(214, 181, 90, 0.35);
  color: var(--gold-bright);
}

html.theme-bormash-industrial .sitehdr__drawer-close,
html.theme-bormash-industrial .sitehdr__drawer-settings {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
}

html.theme-bormash-industrial .sitehdr__dropdown {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

html.theme-bormash-industrial .sitehdr__dropdownTitle {
  color: var(--text);
}

html.theme-bormash-industrial .sitehdr__controlRow label {
  color: var(--muted);
}

html.theme-bormash-industrial .sitehdr__controlRow select {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--text);
}

html.theme-bormash-industrial .sitehdr__ruBadge {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--muted);
}

html.theme-bormash-industrial .badge {
  background: var(--gold);
  border: 1px solid var(--gold-deep);
  color: var(--btn-text);
  font-weight: 700;
}

/* Компактная шапка на мобилке — меньше высоты до hero */
@media (max-width: 920px) {
  html.theme-bormash-industrial .sitehdr__express {
    display: none !important;
  }
}

@media (max-width: 720px) {
  html.theme-bormash-industrial .sitehdr .sitehdr__row {
    gap: 6px 6px !important;
    padding: 6px 10px !important;
    align-items: center;
  }

  html.theme-bormash-industrial .sitehdr__title {
    font-size: 17px !important;
    line-height: 1.08 !important;
  }

  html.theme-bormash-industrial .sitehdr__logo {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px;
    padding: 3px !important;
  }

  html.theme-bormash-industrial .sitehdr__brand {
    gap: 6px !important;
  }

  html.theme-bormash-industrial .sitehdr__input {
    min-height: 40px;
    padding: 8px 11px !important;
    font-size: 15px !important;
  }

  html.theme-bormash-industrial .sitehdr__search {
    margin-top: 2px;
  }

  html.theme-bormash-industrial .sitehdr__burger {
    width: 34px !important;
    height: 34px !important;
  }

  html.theme-bormash-industrial .sitehdr__link--nav {
    padding: 6px 8px !important;
    min-width: 34px !important;
    min-height: 34px !important;
  }
}

/* Главная BORMASH: на мобилке без дубля ссылок с mobilebar */
@media (max-width: 720px) {
  html.theme-bormash-industrial body.page-home .footer__top {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "company";
    gap: 14px;
  }

  html.theme-bormash-industrial body.page-home .footer__col--customer {
    display: none;
  }
}

/* ─── Футер ─── */
html.theme-bormash-industrial .footer {
  background: var(--footer-bg);
  border-top-color: var(--footer-border);
  color: var(--footer-text);
}

html.theme-bormash-industrial .footer__brand-note,
html.theme-bormash-industrial .footer__muted,
html.theme-bormash-industrial .footer a[href]:not(:hover) {
  color: var(--footer-muted);
}

html.theme-bormash-industrial .footer a:hover {
  color: var(--gold-bright);
}

/* ─── Кнопки, пилюли, ссылки ─── */
html.theme-bormash-industrial .btn {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  box-shadow: var(--shadow2);
}

html.theme-bormash-industrial .btn--primary {
  background: var(--gold);
  color: var(--btn-text);
  border: 1px solid var(--gold-deep);
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}

html.theme-bormash-industrial .btn--primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-deep);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.34);
}

html.theme-bormash-industrial .btn--primary:active {
  background: var(--gold-deep);
  color: var(--btn-text);
}

html.theme-bormash-industrial .btn--secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: none;
}

html.theme-bormash-industrial .btn--secondary:hover {
  border-color: var(--gold);
  background: rgba(214, 181, 90, 0.06);
}

html.theme-bormash-industrial .btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--muted);
}

html.theme-bormash-industrial .btn--ghost:hover {
  border-color: rgba(200, 208, 218, 0.45);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

html.theme-bormash-industrial .pill {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
}

html.theme-bormash-industrial .pill--ok {
  border: 1px solid var(--gold-deep);
  background: rgba(214, 181, 90, 0.12);
  color: var(--text);
}

html.theme-bormash-industrial .link {
  color: var(--gold);
}

html.theme-bormash-industrial .link:hover {
  color: var(--gold-bright);
}

html.theme-bormash-industrial .h1,
html.theme-bormash-industrial .h2 {
  color: var(--text);
}

html.theme-bormash-industrial .lead,
html.theme-bormash-industrial .muted {
  color: var(--muted);
}

/* ─── Карточки, панели, типовые блоки ─── */
html.theme-bormash-industrial .card,
html.theme-bormash-industrial .summary,
html.theme-bormash-industrial .line,
html.theme-bormash-industrial .hero__copy,
html.theme-bormash-industrial .hero__card,
html.theme-bormash-industrial .product__media,
html.theme-bormash-industrial .product__info,
html.theme-bormash-industrial .panel {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
}

html.theme-bormash-industrial .panel__title {
  color: var(--gold);
}

html.theme-bormash-industrial .crumbs,
html.theme-bormash-industrial .crumbs a {
  color: var(--muted);
}

html.theme-bormash-industrial .crumbs a:hover {
  color: var(--gold-bright);
}

html.theme-bormash-industrial .crumbs__current {
  color: var(--text);
}

/* ─── Главная / hero ─── */
html.theme-bormash-industrial .hero__copy {
  background: var(--panel);
  border: 1px solid var(--line);
}

html.theme-bormash-industrial .hero__accent {
  color: var(--gold);
}

html.theme-bormash-industrial .kpi {
  background: var(--panel);
  border: 1px solid var(--line);
}

/* ─── Карточка товара (PDP) ─── */
html.theme-bormash-industrial .pdp__mediaShell,
html.theme-bormash-industrial .pdp__thumb,
html.theme-bormash-industrial .pdp__main,
html.theme-bormash-industrial .detail__identity {
  border-color: var(--line);
}

html.theme-bormash-industrial .pdp__thumb.is-active {
  box-shadow: 0 0 0 2px var(--gold);
}

html.theme-bormash-industrial .pdp__nav {
  background: var(--panel);
  color: var(--text);
  border: 1px solid var(--line);
}

html.theme-bormash-industrial .pdp__counter {
  color: var(--muted);
}

/* ─── Каталог: карточка товара ─── */
html.theme-bormash-industrial .product {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
}

html.theme-bormash-industrial .product:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
  border-color: #3a3f46;
  filter: none;
}

html.theme-bormash-industrial .product__priceVal {
  color: var(--gold);
}

html.theme-bormash-industrial #catalog .catalog-empty {
  background: var(--panel);
  border-color: var(--line);
}

html.theme-bormash-industrial .product__priceUnit {
  color: var(--muted);
}

/* ─── Корзина ─── */
html.theme-bormash-industrial .cart__bulk-bar {
  border-top-color: var(--line) !important;
}

html.theme-bormash-industrial .line__title a {
  color: var(--text);
}

html.theme-bormash-industrial .line__title a:hover {
  color: var(--gold-bright);
}

html.theme-bormash-industrial .line__placeholder {
  background: var(--bg);
  color: var(--muted);
}

html.theme-bormash-industrial .price {
  color: var(--gold);
}

/* ─── Checkout: вертикальный степпер (inline-стили в шаблоне) ─── */
html.theme-bormash-industrial .cstep.is-done .cstep__dot {
  box-shadow: 0 0 0 3px rgba(214, 181, 90, 0.22);
}

html.theme-bormash-industrial .cstep.is-active .cstep__dot {
  box-shadow: 0 0 0 3px rgba(214, 181, 90, 0.16);
}

html.theme-bormash-industrial .cstep.is-done .cstep__vline {
  background: rgba(214, 181, 90, 0.4);
}

html.theme-bormash-industrial .cstep.is-done .cstep__panel {
  border-color: rgba(214, 181, 90, 0.35);
}

html.theme-bormash-industrial .cstep.is-active .cstep__panel {
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
}

html.theme-bormash-industrial .checkout__summary .summary {
  box-shadow: var(--shadow2);
}

/* ─── Кабинет (переменные из inline cabinet.html) ─── */
html.theme-bormash-industrial .cabinet-page {
  --cab-bg: #0f1113;
  --cab-card: #1a1d20;
  --cab-text: #ffffff;
  --cab-muted: #b0b3b8;
  --cab-line: #2a2e33;
  --cab-brand: #d6b55a;
  --cab-brand2: #b7923a;
  --cab-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  --cab-shadow-card: 0 8px 24px rgba(0, 0, 0, 0.28);
  background: radial-gradient(ellipse 90% 50% at 50% 0%, #14171a 0%, var(--cab-bg) 55%);
}

html.theme-bormash-industrial .cabinet-page .cabinet-hero {
  background: var(--cab-card);
}

html.theme-bormash-industrial .cabinet-page .stat-pill {
  background: rgba(214, 181, 90, 0.12);
  border-color: rgba(183, 146, 58, 0.32);
}

html.theme-bormash-industrial .cabinet-page .cabinet-hero__cta .btn--primary {
  background: var(--gold);
  color: var(--btn-text);
  border: 1px solid var(--gold-deep);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

html.theme-bormash-industrial .cabinet-page .cabinet-hero__cta .btn--primary:hover {
  background: var(--gold-bright);
  transform: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

html.theme-bormash-industrial .cabinet-page .cabinet-hero__cta .btn--secondary:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

/* ─── Инфо-страницы, блог, простой контент ─── */
html.theme-bormash-industrial .prose,
html.theme-bormash-industrial .article-body,
html.theme-bormash-industrial .site-page {
  color: var(--text);
}

html.theme-bormash-industrial .login-page .auth-card,
html.theme-bormash-industrial .auth-card {
  background: var(--panel);
  border-color: var(--line);
}

/* Страница «заказ оформлен» */
html.theme-bormash-industrial .successHero__main {
  background: var(--panel);
  border-color: var(--line);
}

html.theme-bormash-industrial .successHero__icon {
  background: var(--gold);
  color: var(--btn-text);
  border: 1px solid var(--gold-deep);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

html.theme-bormash-industrial .successHero__details {
  background: var(--bg);
  border: 1px solid var(--line);
}

html.theme-bormash-industrial .successHero__row {
  border-bottom-color: var(--line);
}

html.theme-bormash-industrial .successHero__row span {
  color: var(--muted);
}

html.theme-bormash-industrial .successHero__row strong {
  color: var(--text);
}

/* ─── Главная: hero--full (как тёмная тема premium, не белая «органик»-карточка) ─── */
html.theme-bormash-industrial .hero--full .hero__shade {
  background:
    radial-gradient(55% 65% at 22% 35%, rgba(6, 6, 8, 0.9), rgba(6, 6, 8, 0.58) 60%, transparent 100%),
    linear-gradient(180deg, rgba(10, 10, 12, 0.55), rgba(6, 6, 8, 0.78));
}

html.theme-bormash-industrial .hero--full .hero__content {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

html.theme-bormash-industrial .hero--full .hero__title {
  color: var(--text);
}

html.theme-bormash-industrial .hero--full .hero__subtitle {
  color: var(--muted);
}

html.theme-bormash-industrial .hero--full .hero__hl {
  color: var(--gold-bright);
  background: rgba(214, 181, 90, 0.1);
  border: 1px solid var(--gold-deep);
}

html.theme-bormash-industrial .hero--full .fact {
  background: var(--panel);
  border: 1px solid var(--line);
}

html.theme-bormash-industrial .hero--full .fact__top {
  color: var(--text);
}

html.theme-bormash-industrial .hero--full .fact__bot {
  color: var(--muted);
}

/* premium скрывает .hero .pill — на полноширинном hero для BORMASH показываем */
html.theme-bormash-industrial .hero--full .pill {
  display: inline-block;
}

/* ─── Нижняя мобильная панель (перебиваем premium @720px: светлый фон + светлый --text) ─── */
html.theme-bormash-industrial .mobilebar {
  background: transparent;
  border-top: none;
}

html.theme-bormash-industrial .mobilebar__item {
  border: 1px solid var(--line) !important;
  background: var(--panel) !important;
  box-shadow: var(--shadow2) !important;
  color: var(--text) !important;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 8px 8px 7px !important;
}

html.theme-bormash-industrial .mobilebar__icon {
  color: var(--muted) !important;
  text-shadow: none !important;
}

html.theme-bormash-industrial .mobilebar__text {
  color: var(--text) !important;
}

html.theme-bormash-industrial .mobilebar__badge {
  background: var(--gold) !important;
  border: 1px solid var(--gold-deep) !important;
  color: var(--btn-text) !important;
  font-weight: 800 !important;
}

@media (max-width: 720px) {
  html.theme-bormash-industrial .mobilebar__item {
    border: 1px solid var(--line) !important;
    background: var(--panel) !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3) !important;
  }

  html.theme-bormash-industrial .mobilebar__icon {
    color: var(--muted) !important;
  }

  html.theme-bormash-industrial .mobilebar__text {
    color: var(--text) !important;
  }
}

/* ─── Фокус для доступности ─── */
html.theme-bormash-industrial .sitehdr__input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-color: var(--gold);
}

html.theme-bormash-industrial .btn:focus-visible,
html.theme-bormash-industrial .sitehdr__link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ─── Шапка: компактная навигация, глифы вместо эмодзи ─── */
html.theme-bormash-industrial .sitehdr__nav--industrial {
  gap: 6px !important;
}

html.theme-bormash-industrial .sitehdr__nav--industrial .sitehdr__link--nav {
  border-radius: 2px !important;
  padding: 6px 10px !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent !important;
}

html.theme-bormash-industrial .sitehdr__nav--industrial .sitehdr__link--nav:hover,
html.theme-bormash-industrial .sitehdr__nav--industrial .sitehdr__link--nav:focus-visible {
  color: var(--gold) !important;
  border-bottom-color: var(--gold) !important;
}

html.theme-bormash-industrial .sitehdr__link:hover .sitehdr__glyph {
  color: var(--gold);
}

html.theme-bormash-industrial .sitehdr__glyph {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  position: relative;
  color: var(--muted);
}

html.theme-bormash-industrial .sitehdr__glyph--kits::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 2px solid currentColor;
  transform: rotate(45deg);
}

html.theme-bormash-industrial .sitehdr__glyph--catalog::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 2px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 4px 0 currentColor, 0 8px 0 currentColor;
}

html.theme-bormash-industrial .sitehdr__glyph--cart::before {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 1px;
  height: 7px;
  border: 2px solid currentColor;
  border-top: none;
  border-radius: 0 0 3px 3px;
}

html.theme-bormash-industrial .sitehdr__glyph--cart::after {
  content: "";
  position: absolute;
  top: 0;
  left: 3px;
  right: 3px;
  height: 3px;
  border: 2px solid currentColor;
  border-bottom: none;
  border-radius: 3px 3px 0 0;
}

html.theme-bormash-industrial .sitehdr__search-glyph {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
  vertical-align: middle;
  box-sizing: border-box;
}

html.theme-bormash-industrial .sitehdr__search-glyph::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 2px;
  background: currentColor;
  right: -3px;
  bottom: -1px;
  transform: rotate(45deg);
  border-radius: 1px;
}

html.theme-bormash-industrial .sitehdr__btn--icon {
  color: var(--muted) !important;
}

/* ─── Модалка региона (industrial) ─── */
html.theme-bormash-industrial .region-modal.region-modal--industrial {
  background: var(--panel) !important;
  color: var(--text) !important;
  border-radius: 2px !important;
  border: 1px solid var(--line) !important;
  box-shadow: var(--shadow) !important;
}

html.theme-bormash-industrial .region-modal.region-modal--industrial .region-modal__title {
  color: var(--text) !important;
}

html.theme-bormash-industrial .region-modal.region-modal--industrial .region-modal__text,
html.theme-bormash-industrial .region-modal.region-modal--industrial .region-modal__note,
html.theme-bormash-industrial .region-modal.region-modal--industrial .region-modal__hint {
  color: var(--muted) !important;
  opacity: 1 !important;
}

html.theme-bormash-industrial .region-modal.region-modal--industrial .region-modal__heroCircle {
  background: var(--bg) !important;
  border: 1px solid var(--line) !important;
}

html.theme-bormash-industrial .region-modal.region-modal--industrial .region-modal__btn {
  background: var(--panel) !important;
  border: 1px solid var(--line) !important;
  border-radius: 2px !important;
  color: var(--text) !important;
}

html.theme-bormash-industrial .region-modal.region-modal--industrial .region-modal__btn:hover {
  border-color: var(--gold) !important;
  background: rgba(214, 181, 90, 0.08) !important;
  color: var(--gold-bright) !important;
}

html.theme-bormash-industrial .region-modal.region-modal--industrial .region-modal__glyph {
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 800;
}

html.theme-bormash-industrial .region-modal.region-modal--industrial .region-modal__close {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--text) !important;
}

/* ─── FAB заказа ─── */
html.theme-bormash-industrial .fabcart--industrial {
  border-radius: 2px !important;
  background: var(--gold) !important;
  color: var(--btn-text) !important;
  border: 1px solid var(--gold-deep) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35) !important;
}

html.theme-bormash-industrial .fabcart--industrial:hover {
  background: var(--gold-bright) !important;
}

html.theme-bormash-industrial .fabcart--industrial:active {
  background: var(--gold-deep) !important;
}

html.theme-bormash-industrial .fabcart--industrial .fabcart__icon {
  background: rgba(0, 0, 0, 0.08) !important;
  border: 1px solid var(--gold-deep) !important;
}

html.theme-bormash-industrial .fabcart--industrial .fabcart__meta {
  color: rgba(26, 29, 32, 0.75) !important;
}

html.theme-bormash-industrial .fabcart--industrial .fabcart__count,
html.theme-bormash-industrial .fabcart--industrial .fabcart__sum,
html.theme-bormash-industrial .fabcart--industrial .fabcart__cur {
  color: var(--btn-text) !important;
}

html.theme-bormash-industrial .fabcart--industrial .fabcart__chev {
  color: var(--btn-text) !important;
  opacity: 0.75 !important;
}

html.theme-bormash-industrial .fabcart__glyph {
  display: inline-block;
  width: 18px;
  height: 16px;
  position: relative;
  vertical-align: middle;
  color: var(--btn-text);
}

html.theme-bormash-industrial .fabcart__glyph::before {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 0;
  height: 9px;
  border: 2px solid currentColor;
  border-top: none;
  border-radius: 0 0 4px 4px;
}

html.theme-bormash-industrial .fabcart__glyph::after {
  content: "";
  position: absolute;
  top: 0;
  left: 3px;
  right: 3px;
  height: 4px;
  border: 2px solid currentColor;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
}

/* ─── Кнопки и футер: жёстче радиусы ─── */
html.theme-bormash-industrial .btn--primary {
  border-radius: 2px !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em;
}

html.theme-bormash-industrial .footer__panel {
  border-radius: 2px !important;
  border: 1px solid var(--line) !important;
}

html.theme-bormash-industrial .footer__mailto {
  color: var(--gold) !important;
}

html.theme-bormash-industrial .sitehdr__dropdown {
  border-radius: 2px !important;
}

/* ─── Типографика: убрать Cormorant Garamond (serif) ─── */
html.theme-bormash-industrial {
  --font-display: "Manrope", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

html.theme-bormash-industrial .h1,
html.theme-bormash-industrial .h2,
html.theme-bormash-industrial h1,
html.theme-bormash-industrial h2,
html.theme-bormash-industrial h3,
html.theme-bormash-industrial .hero__title,
html.theme-bormash-industrial .bormash-hero__title,
html.theme-bormash-industrial .bormash-hero__headline {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  font-weight: 800;
}

/* ─── Каталог: исправления organic-стилей premium.css ─── */

/* 1. Hover карточки: lift вместо glow */
html.theme-bormash-industrial .product:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45) !important;
  border-color: #3a3f46 !important;
  filter: none !important;
}

html.theme-bormash-industrial #catalog .product:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45) !important;
}

/* 2. Кнопка «В корзину»: не пилюля, не зелёная тень */
html.theme-bormash-industrial #catalog .btn--primary,
html.theme-bormash-industrial #hits .btn--primary {
  border-radius: 2px !important;
  background: var(--gold) !important;
  color: var(--btn-text) !important;
  border: 1px solid var(--gold-deep) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3) !important;
}

html.theme-bormash-industrial #catalog .btn--primary:hover,
html.theme-bormash-industrial #hits .btn--primary:hover {
  background: var(--gold-bright) !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35) !important;
  transform: none !important;
}

html.theme-bormash-industrial #catalog .btn--primary:focus-visible,
html.theme-bormash-industrial #hits .btn--primary:focus-visible {
  outline: 2px solid var(--gold) !important;
  outline-offset: 2px !important;
}

/* 3. Блок отзывов: нейтральный фон, без зелени */
html.theme-bormash-industrial .product__reviewsBlock {
  background: rgba(255, 255, 255, 0.03) !important;
  border-color: var(--line) !important;
  border-radius: 2px !important;
}

/* 4. Медиа-зона карточки: тёмный фон вместо белого */
html.theme-bormash-industrial #catalog .product__media,
html.theme-bormash-industrial #hits .product__media,
html.theme-bormash-industrial .product__media {
  background: var(--bg) !important;
}

/* 5. Убрать зелёную виньетку «для фруктов» */
html.theme-bormash-industrial #catalog .product__media::after,
html.theme-bormash-industrial #hits .product__media::after {
  display: none !important;
}

/* ─── Активный пункт меню: подчёркивание #D6B55A ─── */
html.theme-bormash-industrial .sitehdr__link--nav[aria-current="page"],
html.theme-bormash-industrial .sitehdr__link--nav.is-active {
  color: var(--gold) !important;
  border-bottom: 2px solid var(--gold) !important;
  background: rgba(214, 181, 90, 0.06) !important;
}
