:root {
  color-scheme: light;
}

body {
  margin: 0;
  background: #ffffff;
  overflow-x: hidden;
}

#sbs-catalog-home {
  --sbs2-ink: #111820;
  --sbs2-graphite: #1e272f;
  --sbs2-steel: #66717b;
  --sbs2-line: #d9e1e7;
  --sbs2-paper: #f5f7f8;
  --sbs2-white: #ffffff;
  --sbs2-yellow: #f0b51b;
  --sbs2-orange: #d8672c;
  --sbs2-green: #637764;
  --sbs2-radius: 8px;
  color: var(--sbs2-ink);
  background: var(--sbs2-white);
  font-family: Inter, Arial, sans-serif;
  overflow-x: clip;
}

#sbs-catalog-home * {
  box-sizing: border-box;
}

#sbs-catalog-home a {
  color: inherit;
}

.sbs2-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  min-height: 92px;
  margin: 0;
  padding: 14px max(16px, calc((100% - 1280px) / 2));
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--sbs2-ink);
  background: var(--sbs2-white);
  box-shadow: 0 12px 34px rgba(17,24,32,.12);
}

.sbs2-header:before {
  content: none;
}

.sbs2-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
  flex: 0 1 380px;
  min-width: 280px;
  min-height: 64px;
  background: transparent url("/static/logo-bursistema-2026-v2.png") left center / contain no-repeat;
}

.sbs2-logo img {
  display: block;
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 0;
  background: transparent;
}

.sbs2-logo span,
.sbs2-logo strong {
  display: none;
}

.sbs2-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.sbs2-nav a,
.sbs2-header__phone {
  color: var(--sbs2-ink);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.sbs2-nav__item {
  position: relative;
  padding: 26px 0;
}

.sbs2-nav__drop {
  position: absolute;
  top: 56px;
  left: -18px;
  width: 320px;
  max-height: min(70vh, 620px);
  overflow: auto;
  padding: 10px;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-white);
  box-shadow: 0 20px 70px rgba(17,24,32,.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease;
}

.sbs2-nav__item:hover .sbs2-nav__drop,
.sbs2-nav__item:focus-within .sbs2-nav__drop {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sbs2-nav__drop a {
  display: block;
  padding: 10px 12px;
  color: var(--sbs2-ink);
  border-radius: 8px;
  font-size: 13px;
  text-transform: none;
  white-space: normal;
}

.sbs2-nav__drop a:hover {
  background: var(--sbs2-paper);
}

.sbs2-header__phone {
  padding: 12px 14px;
  border: 1px solid rgba(17,24,32,.16);
  border-radius: 999px;
  background: var(--sbs2-paper);
  text-transform: none;
}

.sbs2-admin-pill {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--sbs2-yellow);
  color: #17140a;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 20px 46px rgba(17,24,32,.22);
}

.sbs2-breadcrumbs {
  width: min(1180px, calc(100% - 32px));
  margin: 22px auto -28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--sbs2-steel);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.sbs2-breadcrumbs a,
.sbs2-breadcrumbs__current {
  min-width: 0;
  overflow-wrap: anywhere;
}

.sbs2-breadcrumbs a {
  color: var(--sbs2-steel);
  text-decoration: none;
}

.sbs2-breadcrumbs a:hover {
  color: var(--sbs2-ink);
}

.sbs2-breadcrumbs > * + *:before {
  content: "/";
  margin-right: 8px;
  color: var(--sbs2-line);
  font-weight: 900;
}

.sbs2-breadcrumbs__current {
  color: var(--sbs2-ink);
}

.public-page-grid {
  margin-bottom: 48px;
}

.sbs2-hero {
  position: relative;
  min-height: 760px;
  margin-top: 0;
  color: var(--sbs2-white);
  background: var(--sbs2-ink);
}

.sbs2-hero__media,
.sbs2-hero__media img,
.sbs2-hero__shade {
  position: absolute;
  inset: 0;
}

.sbs2-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sbs2-hero__shade {
  background:
    linear-gradient(90deg, rgba(17,24,32,.96) 0%, rgba(17,24,32,.78) 42%, rgba(17,24,32,.18) 100%),
    linear-gradient(180deg, rgba(17,24,32,.7), transparent 50%, rgba(17,24,32,.75));
}

.sbs2-hero__inner {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: 760px;
  margin: 0 auto;
  padding: 112px 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 54px;
  align-items: end;
}

.sbs2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--sbs2-yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sbs2-kicker:before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.sbs2-hero h1,
.sbs2-section h2,
.sbs2-request h2,
.cms-hero h1,
.product-info h1,
.admin-head h1,
.admin-panel h1 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.sbs2-hero h1 {
  max-width: 820px;
  font-size: clamp(46px, 7.2vw, 92px);
}

.sbs2-hero p {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 20px;
  line-height: 1.55;
}

.sbs2-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.sbs2-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.sbs2-btn:hover {
  transform: translateY(-2px);
}

.sbs2-btn--accent {
  background: var(--sbs2-yellow);
  color: #17140a;
  box-shadow: 0 18px 42px rgba(240,181,27,.24);
}

.sbs2-btn--light {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
  color: var(--sbs2-white);
}

.sbs2-btn--outline {
  border-color: var(--sbs2-line);
  color: var(--sbs2-ink);
  background: var(--sbs2-white);
}

.sbs2-btn--danger {
  background: #8e2d12;
  color: var(--sbs2-white);
  box-shadow: 0 14px 34px rgba(142,45,18,.18);
}

.sbs2-hero__panel {
  display: grid;
  gap: 10px;
}

.sbs2-hero__panel div {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 8px;
  background: rgba(17,24,32,.74);
  backdrop-filter: blur(14px);
}

.sbs2-hero__panel small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.6);
}

.sbs2-hero__panel strong {
  font-size: 24px;
}

.sbs2-trust {
  width: min(1180px, calc(100% - 32px));
  margin: -44px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(17,24,32,.14);
}

.sbs2-trust__item {
  min-height: 134px;
  padding: 26px;
  background: var(--sbs2-white);
  border-right: 1px solid var(--sbs2-line);
}

.sbs2-trust__item:last-child {
  border-right: 0;
}

.sbs2-trust__item strong,
.sbs2-trust__item span {
  display: block;
}

.sbs2-trust__item strong {
  font-size: 20px;
}

.sbs2-trust__item span {
  margin-top: 10px;
  color: var(--sbs2-steel);
  line-height: 1.45;
}

.sbs2-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 104px 0;
}

.sbs2-section__head {
  max-width: 800px;
  margin-bottom: 38px;
}

.sbs2-section h2,
.sbs2-request h2,
.cms-hero h1,
.product-info h1 {
  color: var(--sbs2-ink);
  font-size: clamp(34px, 4.7vw, 62px);
}

.sbs2-section__head p,
.sbs2-selector p,
.sbs2-production p,
.sbs2-request p,
.cms-hero p,
.product-lead {
  color: var(--sbs2-steel);
  font-size: 18px;
  line-height: 1.55;
}

.sbs2-categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.sbs2-category {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 16px;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-white);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.sbs2-category:hover,
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17,24,32,.24);
  box-shadow: 0 20px 55px rgba(17,24,32,.12);
}

.sbs2-category--large {
  grid-column: span 2;
}

.sbs2-category img,
.sbs2-category__placeholder,
.sbs-placeholder {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  border-radius: 8px;
  background: var(--sbs2-paper);
}

.sbs2-category__placeholder,
.sbs-placeholder {
  display: grid;
  place-items: center;
  color: rgba(17,24,32,.18);
  font-size: 58px;
  font-weight: 900;
}

.sbs-placeholder--large {
  min-height: 460px;
  aspect-ratio: auto;
}

.sbs2-category span {
  margin-top: 22px;
  color: var(--sbs2-orange);
  font-weight: 900;
}

.sbs2-category h3 {
  margin: 14px 0 10px;
  font-size: 26px;
  line-height: 1.08;
}

.sbs2-category p {
  margin: 0;
  color: var(--sbs2-steel);
  line-height: 1.5;
}

.sbs2-category strong {
  margin-top: auto;
  padding-top: 22px;
  color: var(--sbs2-ink);
}

.sbs2-section--split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(390px, .8fr);
  gap: 34px;
  align-items: stretch;
}

.sbs2-photo-card {
  position: relative;
  min-height: 620px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--sbs2-ink);
}

.sbs2-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sbs2-photo-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(17,24,32,.84));
}

.sbs2-photo-card div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  color: var(--sbs2-white);
}

.sbs2-photo-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 28px;
}

.sbs2-photo-card span {
  display: block;
  max-width: 520px;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}

.sbs2-selector {
  padding: 34px;
  border-radius: 8px;
  background: var(--sbs2-graphite);
  color: var(--sbs2-white);
}

.sbs2-selector h2 {
  color: var(--sbs2-white);
}

.sbs2-selector p {
  color: rgba(255,255,255,.68);
}

.sbs2-selector__grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.sbs2-selector label,
.sbs2-form label,
.admin-form label,
.admin-inline-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
}

.sbs2-selector input,
.sbs2-selector select,
.sbs2-form input,
.sbs2-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: var(--sbs2-white);
  font: inherit;
  outline: none;
}

.sbs2-selector select option {
  color: var(--sbs2-ink);
}

.sbs2-result {
  margin-top: 22px;
  padding: 22px;
  border-radius: 8px;
  background: rgba(240,181,27,.12);
  border: 1px solid rgba(240,181,27,.22);
}

.sbs2-result small,
.sbs2-result strong,
.sbs2-result a {
  display: block;
}

.sbs2-result small {
  color: var(--sbs2-yellow);
  font-weight: 900;
}

.sbs2-result strong {
  margin: 8px 0;
  font-size: 23px;
}

.sbs2-result p {
  margin: 0;
}

.sbs2-result a {
  margin-top: 16px;
  color: var(--sbs2-yellow);
  font-weight: 900;
  text-decoration: none;
}

.sbs2-section--light {
  width: 100%;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
  background: var(--sbs2-paper);
}

.sbs2-lead-grid,
.sbs2-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.sbs2-lead-grid article,
.sbs2-steps article {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-white);
}

.sbs2-lead-grid span,
.sbs2-steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(240,181,27,.18);
  color: #6d4d00;
  font-weight: 900;
}

.sbs2-lead-grid h3,
.sbs2-steps h3 {
  margin: 34px 0 10px;
  font-size: 22px;
  line-height: 1.12;
}

.sbs2-lead-grid p,
.sbs2-steps p {
  margin: 0;
  color: var(--sbs2-steel);
  line-height: 1.5;
}

.sbs2-production {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, .72fr);
  gap: 54px;
  align-items: center;
}

.sbs2-process {
  display: grid;
  gap: 10px;
}

.sbs2-process span {
  padding: 20px 22px;
  border-left: 4px solid var(--sbs2-yellow);
  border-radius: 8px;
  background: var(--sbs2-graphite);
  color: var(--sbs2-white);
  font-weight: 900;
}

.sbs2-request {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 94px;
  padding: 52px;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, .7fr);
  gap: 44px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(17,24,32,.94), rgba(30,39,47,.9)),
    var(--sbs2-graphite);
  color: var(--sbs2-white);
}

.sbs2-request h2 {
  color: var(--sbs2-white);
}

.sbs2-request p {
  color: rgba(255,255,255,.7);
}

.sbs2-request__copy a {
  display: inline-block;
  margin-top: 20px;
  color: var(--sbs2-yellow);
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
}

.sbs2-form {
  display: grid;
  gap: 14px;
}

.sbs2-form textarea {
  min-height: 104px;
  resize: vertical;
}

.captcha-wrap {
  min-height: 100px;
}

.captcha-wrap--turnstile {
  min-height: 65px;
}

.form-note {
  margin: -2px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  line-height: 1.45;
}

.sbs2-form .sbs2-btn {
  width: 100%;
}

.cms-main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 100px;
}

.cms-hero {
  padding: 72px 0 44px;
}

body:has(.catalog-layout) .cms-hero p {
  display: none;
}

.cms-hero--compact {
  max-width: 760px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.catalog-side {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-white);
}

.catalog-side__link,
.catalog-side__sub {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--sbs2-ink);
  text-decoration: none;
}

.catalog-side__sub {
  margin-left: 12px;
  color: var(--sbs2-steel);
  font-size: 14px;
}

.catalog-side__link:hover,
.catalog-side__sub:hover,
.catalog-side__link.is-active,
.catalog-side__sub.is-active {
  background: var(--sbs2-paper);
  color: var(--sbs2-ink);
}

.catalog-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-bottom: 14px;
}

.catalog-search input,
.admin-form input,
.admin-form select,
.admin-form textarea,
.admin-table input,
.admin-table textarea,
.admin-inline-form select {
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-white);
  color: var(--sbs2-ink);
  font: inherit;
}

.admin-form textarea {
  min-height: 130px;
  resize: vertical;
}

.admin-table input,
.admin-table textarea {
  width: 100%;
}

.admin-table textarea {
  min-height: 92px;
  resize: vertical;
}

.catalog-count {
  margin: 0 0 18px;
  color: var(--sbs2-steel);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-white);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.product-card__image {
  display: block;
  padding: 12px;
  background: #fbfcfd;
  text-decoration: none;
}

.product-card__image img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: contain;
  border-radius: 8px;
  background: var(--sbs2-paper);
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.product-card__content {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-card__content:visited,
.product-card__content:hover,
.product-card__content:focus,
.product-card__content *,
.product-card__content:hover *,
.product-card__content:focus * {
  color: inherit;
  text-decoration: none;
}

.product-card__category {
  color: var(--sbs2-orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card h2 {
  margin: 10px 0;
  font-size: 20px;
  line-height: 1.16;
}

.product-card p {
  margin: 0;
  color: var(--sbs2-steel);
  line-height: 1.48;
}

.product-card__cta {
  margin-top: auto;
  padding-top: 18px;
  color: var(--sbs2-ink);
  font-weight: 900;
  text-decoration: none;
}

.product-card__cta--button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  min-height: 48px;
  padding: 12px 22px;
  border: 0;
  border-radius: 8px;
  background: var(--sbs2-yellow);
  color: #17140a;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 18px 42px rgba(240,181,27,.24);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.product-card__cta--button:hover {
  background: #e7aa13;
  transform: translateY(-2px);
}

.product-card__cta--button:focus-visible {
  outline: 3px solid rgba(240,181,27,.38);
  outline-offset: 3px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.pagination a,
.pagination span {
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--sbs2-paper);
  text-decoration: none;
}

.price-modal[hidden] {
  display: none;
}

.price-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.price-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17,24,32,.58);
}

.price-modal__dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  padding: 34px;
  border-radius: 8px;
  background: var(--sbs2-white);
  box-shadow: 0 28px 86px rgba(17,24,32,.32);
}

.price-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--sbs2-ink);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.price-modal h2 {
  margin: 8px 0 8px;
  font-size: 34px;
}

.price-modal__product {
  margin: 0 48px 24px 0;
  color: var(--sbs2-steel);
  font-weight: 900;
}

.price-modal__form {
  display: grid;
  gap: 14px;
}

.price-modal__form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 900;
}

.price-modal__form input {
  width: 100%;
  min-height: 52px;
  padding: 12px 13px;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-white);
  color: var(--sbs2-ink);
  font: inherit;
}

.price-modal__consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 700 !important;
  line-height: 1.35;
}

.price-modal__consent input {
  width: 22px;
  min-height: 22px;
  margin-top: 2px;
}

.price-modal__form .captcha-wrap {
  min-height: 100px;
}

.price-modal__form .captcha-wrap--turnstile {
  min-height: 65px;
}

.price-modal__success {
  text-align: center;
}

.price-modal__success p {
  color: var(--sbs2-steel);
}

.price-modal.is-loading .price-modal__form button[type="submit"] {
  opacity: .68;
  pointer-events: none;
}

.price-modal-open {
  overflow: hidden;
}

.product-page {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .7fr);
  gap: 34px;
}

.product-gallery {
  display: grid;
  gap: 12px;
}

.product-gallery img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-paper);
}

.product-info {
  position: sticky;
  top: 100px;
  align-self: start;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.product-text,
.product-specs {
  padding: 28px;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-white);
}

.product-text p {
  color: var(--sbs2-steel);
  line-height: 1.65;
}

.product-specs table,
.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.product-specs th,
.product-specs td,
.admin-table th,
.admin-table td {
  padding: 12px;
  border-bottom: 1px solid var(--sbs2-line);
  text-align: left;
  vertical-align: top;
}

.product-specs th {
  width: 44%;
  color: var(--sbs2-steel);
}

.product-request {
  margin-top: 48px;
}

.admin-auth {
  min-height: 70vh;
  display: grid;
  place-items: center;
}

.admin-form,
.admin-panel,
.admin-head {
  padding: 28px;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-white);
}

.admin-panel {
  overflow-x: auto;
}

.admin-form {
  display: grid;
  width: min(440px, 100%);
  gap: 16px;
}

.admin-form--wide {
  width: 100%;
}

.admin-main {
  display: grid;
  gap: 18px;
}

.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--sbs2-paper);
  color: var(--sbs2-ink);
  font-weight: 900;
  text-decoration: none;
}

.admin-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.admin-links a {
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--sbs2-paper);
  font-weight: 900;
  text-decoration: none;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.admin-stats article {
  padding: 22px;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-white);
}

.admin-stats span {
  display: block;
  color: var(--sbs2-steel);
  font-size: 13px;
  font-weight: 900;
}

.admin-stats strong {
  display: block;
  margin-top: 8px;
  font-size: 34px;
}

.admin-table {
  font-size: 14px;
}

.admin-table small {
  display: block;
  margin-top: 4px;
  color: var(--sbs2-steel);
}

.admin-table th {
  background: var(--sbs2-paper);
}

.admin-table--seo {
  min-width: 1100px;
}

.admin-table--seo th:first-child,
.admin-table--seo td:first-child {
  width: 210px;
}

.lead-detail {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 12px;
  margin: 24px 0;
}

.lead-detail dt {
  color: var(--sbs2-steel);
  font-weight: 900;
}

.lead-detail dd {
  margin: 0;
}

.admin-inline-form {
  display: flex;
  align-items: end;
  gap: 10px;
}

.admin-lead-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 12px;
}

.admin-photo-alt-list {
  display: grid;
  gap: 12px;
}

.admin-photo-alt-list h3 {
  margin: 0;
  font-size: 15px;
}

.admin-photo-alt-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  align-items: center;
}

.admin-photo-alt-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-soft);
}

.check-row {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.check-row input {
  width: auto;
  min-height: 0;
}

.form-error,
.form-success {
  padding: 12px;
  border-radius: 8px;
  font-weight: 900;
}

.form-error {
  border: 1px solid #ffd1c2;
  background: #fff2ed;
  color: #8e2d12;
}

.form-success {
  border: 1px solid #cbe8d1;
  background: #effaf1;
  color: #1f6b2b;
}

.cms-empty {
  padding: 28px;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-paper);
}

.sbs2-footer {
  color: var(--sbs2-white);
  background: var(--sbs2-ink);
}

.sbs2-footer__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 38px;
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(0, .7fr));
  gap: 34px;
}

.sbs2-footer__brand img {
  display: block;
  width: min(360px, 100%);
  margin-bottom: 20px;
  background: var(--sbs2-white);
}

.sbs2-footer p {
  max-width: 430px;
  margin: 0 0 18px;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}

.sbs2-footer h2 {
  margin: 0 0 14px;
  color: var(--sbs2-yellow);
  font-size: 13px;
  text-transform: uppercase;
}

.sbs2-footer a,
.sbs2-footer span {
  color: rgba(255,255,255,.78);
}

.sbs2-footer section > a {
  display: block;
  margin: 9px 0;
  text-decoration: none;
}

.sbs2-footer section > a:hover {
  color: var(--sbs2-white);
}

.sbs2-footer__phone {
  font-weight: 900;
}

.sbs2-footer__bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: 13px;
}

@media (max-width: 980px) {
  .sbs2-header {
    flex-wrap: wrap;
    padding: 14px 16px;
  }

  .sbs2-header:before {
    inset: 8px -12px;
  }

  .sbs2-nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .sbs2-nav::-webkit-scrollbar {
    display: none;
  }

  .sbs2-nav__item {
    padding: 0;
  }

  .sbs2-nav__drop {
    display: none;
  }

  .sbs2-header__phone {
    margin-left: auto;
  }

  .sbs2-hero__inner,
  .sbs2-section--split,
  .sbs2-production,
  .sbs2-request,
  .catalog-layout,
  .product-page {
    grid-template-columns: 1fr;
  }

  .sbs2-hero__inner {
    align-items: end;
    padding-top: 170px;
  }

  .sbs2-categories,
  .sbs2-lead-grid,
  .sbs2-steps,
  .product-grid,
  .admin-stats,
  .sbs2-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sbs2-footer__brand {
    grid-column: span 2;
  }

  .sbs2-category--large {
    grid-column: span 2;
  }

  .catalog-side,
  .product-info {
    position: static;
  }
}

@media (max-width: 640px) {
  .sbs2-hero__inner,
  .sbs2-trust,
  .sbs2-section,
  .sbs2-request,
  .cms-main {
    width: min(100% - 24px, 1180px);
  }

  .sbs2-breadcrumbs {
    width: min(100% - 24px, 1180px);
    margin: 16px auto -22px;
    font-size: 12px;
  }

  .sbs2-logo strong {
    font-size: 16px;
  }

  .sbs2-logo {
    flex-basis: 100%;
    max-width: 360px;
  }

  .sbs2-header__phone {
    width: 100%;
    text-align: center;
  }

  .sbs2-hero {
    min-height: 720px;
  }

  .sbs2-hero__inner {
    min-height: 720px;
    padding-bottom: 54px;
  }

  .sbs2-hero h1 {
    font-size: 42px;
  }

  .sbs2-hero p {
    font-size: 17px;
  }

  .sbs2-hero__actions,
  .sbs2-hero__actions .sbs2-btn,
  .catalog-search,
  .product-actions,
  .admin-inline-form {
    width: 100%;
  }

  .catalog-search,
  .admin-inline-form {
    grid-template-columns: 1fr;
    display: grid;
  }

  .sbs2-trust,
  .sbs2-categories,
  .sbs2-lead-grid,
  .sbs2-steps,
  .product-grid,
  .admin-stats,
  .sbs2-footer__inner {
    grid-template-columns: 1fr;
  }

  .sbs2-category--large {
    grid-column: span 1;
  }

  .sbs2-footer__brand {
    grid-column: span 1;
  }

  .sbs2-footer__bottom {
    flex-direction: column;
  }

  .sbs2-section {
    padding: 72px 0;
  }

  .sbs2-section h2,
  .sbs2-request h2,
  .cms-hero h1,
  .product-info h1 {
    font-size: 34px;
  }

  .sbs2-photo-card {
    min-height: 460px;
  }

  .sbs2-selector,
  .sbs2-request,
  .product-text,
  .product-specs,
  .admin-form,
  .admin-panel,
  .admin-head {
    padding: 26px 18px;
  }

  .lead-detail {
    grid-template-columns: 1fr;
  }
}


.admin-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-form input[type="file"] {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-paper);
}

@media (max-width: 720px) {
  .admin-panel__head {
    align-items: flex-start;
    flex-direction: column;
  }
}



.admin-category-path {
  display: block;
  margin-top: 6px;
  color: var(--sbs2-steel);
  font-size: 13px;
  font-weight: 700;
}


.admin-main--wide {
  width: min(1560px, calc(100% - 32px));
}

.admin-products-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.admin-tree {
  position: sticky;
  top: 116px;
  max-height: calc(100vh - 136px);
  overflow: auto;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-white);
  box-shadow: 0 12px 34px rgba(17,24,32,.08);
}

.admin-tree__head {
  padding: 16px;
  border-bottom: 1px solid var(--sbs2-line);
}

.admin-tree__head strong,
.admin-tree__head small {
  display: block;
}

.admin-tree__head small {
  margin-top: 4px;
  color: var(--sbs2-steel);
}

.admin-tree nav {
  padding: 8px;
}

.admin-tree__link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 10px 10px 10px calc(10px + var(--level, 0) * 18px);
  border-radius: 8px;
  color: var(--sbs2-ink);
  text-decoration: none;
  font-weight: 800;
}

.admin-tree__link span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-tree__link em {
  min-width: 28px;
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--sbs2-paper);
  color: var(--sbs2-steel);
  font-size: 12px;
  font-style: normal;
  text-align: center;
}

.admin-tree__link:hover {
  background: var(--sbs2-paper);
}

.admin-tree__link.is-active {
  background: var(--sbs2-ink);
  color: var(--sbs2-white);
}

.admin-tree__link.is-active em {
  background: rgba(255,255,255,.16);
  color: var(--sbs2-white);
}

.admin-panel--products {
  min-width: 0;
}

.admin-search {
  margin-top: 18px;
}

.admin-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 18px 0;
  line-height: 1;
}

.admin-pagination a,
.admin-pagination strong,
.admin-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-white);
  color: var(--sbs2-ink);
  font-weight: 800;
  text-decoration: none;
}

.admin-pagination strong {
  border-color: var(--sbs2-yellow);
  background: var(--sbs2-yellow);
  color: #17140a;
}

.admin-table--products td {
  vertical-align: top;
}

.admin-category-path {
  display: block;
  margin-top: 6px;
  color: var(--sbs2-steel);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .admin-products-shell {
    grid-template-columns: 1fr;
  }

  .admin-tree {
    position: static;
    max-height: none;
  }
}

/* 20260525 admin thumbnails and active tree fix */

.admin-tree__link {
  min-height: 44px;
}

.admin-tree__link span {
  color: inherit;
}

.admin-tree__link.is-active,
.admin-tree__link.is-active:visited {
  background: var(--sbs2-ink);
  color: var(--sbs2-white);
}

.admin-tree__link.is-active span,
.admin-tree__link.is-active:visited span {
  color: var(--sbs2-white);
}

.admin-tree__link.is-active em {
  background: rgba(255,255,255,.2);
  color: var(--sbs2-white);
}

.admin-product-thumb {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-paper);
  color: var(--sbs2-steel);
  object-fit: cover;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

img.admin-product-thumb {
  padding: 0;
  background: var(--sbs2-white);
}

.admin-product-thumb--empty {
  letter-spacing: 0;
}


/* 20260525 InSales-like B2B product editor */

.admin-product-main {
  width: min(1280px, calc(100% - 32px));
}

.admin-product-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.admin-product-titlebar {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.admin-product-titlebar h1 {
  margin: 4px 0 0;
  font-size: 22px;
  line-height: 1.25;
}

.admin-product-back {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-white);
  color: var(--sbs2-ink);
  text-decoration: none;
  font-size: 22px;
  line-height: 1;
}

.admin-product-public {
  color: var(--sbs2-blue);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.admin-product-form.admin-form {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
}

.admin-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 16px;
  align-items: start;
}

.admin-product-stack,
.admin-product-sidebar {
  display: grid;
  gap: 16px;
}

.admin-product-sidebar {
  position: sticky;
  top: 18px;
}

.admin-product-card {
  overflow: hidden;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-white);
}

.admin-product-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid var(--sbs2-line);
}

.admin-product-card__head h2 {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
}

.admin-product-card__body {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.admin-product-card--muted p {
  margin: 0;
  color: var(--sbs2-steel);
  font-size: 14px;
  line-height: 1.45;
}

.admin-product-grid {
  display: grid;
  gap: 14px;
}

.admin-product-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-product-field {
  display: grid;
  gap: 8px;
}

.admin-product-field > span,
.admin-product-form label {
  color: var(--sbs2-ink);
  font-size: 13px;
  font-weight: 900;
}

.admin-product-form textarea {
  line-height: 1.55;
}

.admin-product-form textarea[name="body"],
.admin-product-form textarea[name="characteristics"] {
  min-height: 260px;
}

.admin-product-media {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
  gap: 12px;
}

.admin-product-media__upload,
.admin-product-media__thumb,
.admin-product-media__empty {
  min-height: 104px;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-paper);
}

.admin-product-media__upload {
  position: relative;
  display: grid;
  place-items: center;
  border-style: dashed;
  color: var(--sbs2-blue);
  cursor: pointer;
  text-align: center;
}

.admin-product-media__upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.admin-product-media__upload strong {
  font-size: 13px;
  line-height: 1.3;
}

.admin-product-media__thumb {
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  margin: 0;
  background: var(--sbs2-white);
}

.admin-product-media__thumb img {
  width: 100%;
  height: 104px;
  object-fit: contain;
  padding: 8px;
}

.admin-product-media__thumb figcaption {
  padding: 6px 8px;
  border-top: 1px solid var(--sbs2-line);
  color: var(--sbs2-steel);
  font-size: 12px;
  font-weight: 800;
}

.admin-product-media__empty {
  display: grid;
  place-items: center;
  color: var(--sbs2-steel);
  font-size: 13px;
  font-weight: 800;
}

.admin-product-toggle {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}

.admin-product-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.admin-product-toggle span {
  width: 42px;
  height: 24px;
  border-radius: 999px;
  background: #cbd3dc;
  box-shadow: inset 0 0 0 1px rgba(17,24,32,.08);
}

.admin-product-toggle span:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin: 3px;
  border-radius: 999px;
  background: #fff;
  transition: transform .18s ease;
}

.admin-product-toggle input:checked + span {
  background: var(--sbs2-blue);
}

.admin-product-toggle input:checked + span:before {
  transform: translateX(18px);
}

.admin-product-meta {
  display: grid;
  gap: 11px;
  margin: 0;
}

.admin-product-meta div {
  display: grid;
  gap: 3px;
}

.admin-product-meta dt {
  color: var(--sbs2-steel);
  font-size: 12px;
  font-weight: 900;
}

.admin-product-meta dd {
  margin: 0;
  font-size: 13px;
}

.admin-product-meta a {
  color: var(--sbs2-blue);
  font-weight: 800;
  text-decoration: none;
}

.admin-product-savebar {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 0 0;
}

@media (max-width: 1080px) {
  .admin-product-layout {
    grid-template-columns: 1fr;
  }

  .admin-product-sidebar {
    position: static;
  }
}

@media (max-width: 720px) {
  .admin-product-main {
    width: min(100% - 20px, 1280px);
  }

  .admin-product-topbar,
  .admin-product-savebar {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-product-grid--2 {
    grid-template-columns: 1fr;
  }

  .admin-product-titlebar h1 {
    font-size: 19px;
  }
}


/* 20260525 production landing page */

.production-detail {
  display: grid;
  gap: 28px;
}

.production-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-white);
}

.production-hero h1 {
  max-width: 850px;
  margin: 10px 0 16px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .98;
}

.production-hero p,
.production-section p {
  color: var(--sbs2-steel);
  font-size: 17px;
  line-height: 1.65;
}

.production-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.production-hero figure,
.production-gallery figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-paper);
}

.production-hero img,
.production-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.production-hero figcaption,
.production-gallery figcaption {
  padding: 12px 14px;
  color: var(--sbs2-steel);
  font-size: 13px;
  font-weight: 800;
}

.production-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.production-facts article {
  min-height: 138px;
  padding: 20px;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-white);
}

.production-facts strong {
  display: block;
  font-size: 26px;
  line-height: 1.08;
}

.production-facts span {
  display: block;
  margin-top: 10px;
  color: var(--sbs2-steel);
  font-size: 14px;
  line-height: 1.45;
}

.production-section {
  padding: 30px;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-white);
}

.production-section h2 {
  margin: 8px 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.production-section--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  gap: 28px;
  align-items: start;
}

.production-catalog-links {
  display: grid;
  gap: 12px;
}

.production-catalog-links a {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-paper);
  color: var(--sbs2-ink);
  text-decoration: none;
}

.production-catalog-links a:hover {
  border-color: var(--sbs2-yellow);
  background: #fff8dc;
}

.production-catalog-links strong {
  font-size: 17px;
}

.production-catalog-links span {
  color: var(--sbs2-steel);
  font-size: 14px;
  line-height: 1.45;
}

.production-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.production-steps article {
  min-height: 220px;
  padding: 20px;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-paper);
}

.production-steps span {
  color: var(--sbs2-blue);
  font-weight: 900;
}

.production-steps h3 {
  margin: 12px 0 8px;
  font-size: 21px;
}

.production-steps p {
  margin: 0;
  color: var(--sbs2-steel);
  line-height: 1.55;
}

.production-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.production-checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.production-checklist li {
  padding: 14px 16px;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-paper);
  font-weight: 800;
}

@media (max-width: 980px) {
  .production-hero,
  .production-section--split {
    grid-template-columns: 1fr;
  }

  .production-facts,
  .production-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .production-hero,
  .production-section {
    padding: 20px;
  }

  .production-facts,
  .production-steps,
  .production-gallery {
    grid-template-columns: 1fr;
  }

  .production-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }
}


/* 20260525 blog/news section */

.blog-page {
  display: grid;
  gap: 26px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-white);
  transition: transform .18s ease, box-shadow .18s ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(17,24,32,.12);
}

.blog-card__image {
  display: block;
  min-height: 220px;
  background: var(--sbs2-paper);
}

.blog-card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-card__body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.blog-card time,
.blog-article time {
  color: var(--sbs2-steel);
  font-size: 13px;
  font-weight: 900;
}

.blog-card h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
}

.blog-card h2 a {
  color: var(--sbs2-ink);
  text-decoration: none;
}

.blog-card p {
  margin: 0;
  color: var(--sbs2-steel);
  line-height: 1.55;
}

.blog-article {
  display: grid;
  gap: 28px;
}

.blog-article__body {
  display: grid;
  gap: 22px;
  padding: 30px;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-white);
}

.blog-article__header {
  display: grid;
  gap: 10px;
}

.blog-article__header h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
}

.blog-article__header p {
  max-width: 880px;
  margin: 0;
  color: var(--sbs2-steel);
  font-size: 18px;
  line-height: 1.6;
}

.blog-article__image {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-paper);
}

.blog-article__image img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.blog-content {
  max-width: 920px;
  color: var(--sbs2-ink);
  font-size: 18px;
  line-height: 1.75;
}

.blog-content h2,
.blog-content h3 {
  margin: 30px 0 10px;
  line-height: 1.16;
}

.blog-content h2 {
  font-size: 30px;
}

.blog-content h3 {
  font-size: 24px;
}

.blog-content p {
  margin: 0 0 16px;
}

.blog-content ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.blog-related {
  display: grid;
  gap: 16px;
}

.blog-related h2 {
  margin: 0;
}

.blog-admin-form textarea[name="body"] {
  min-height: 420px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

@media (max-width: 980px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-article__body {
    padding: 20px;
  }

  .blog-card__image {
    min-height: 180px;
  }
}

.admin-nav__logout { margin-left: auto; }
.admin-nav__logout button {
  border: 1px solid rgba(17, 24, 39, 0.18);
  border-radius: 8px;
  background: #fff;
  color: #111827;
  cursor: pointer;
  font: inherit;
  padding: 9px 14px;
}
.admin-nav__logout button:hover {
  border-color: rgba(185, 28, 28, 0.35);
  color: #b91c1c;
}

.admin-page-editor textarea[name="items"] {
  min-height: 260px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* 20260527 header catalog mega menu */
.sbs2-header {
  min-height: 118px;
  padding: 0 max(16px, calc((100% - 1280px) / 2));
  display: block;
}

.sbs2-header__top {
  min-height: 34px;
  padding: 8px 0 6px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: var(--sbs2-steel);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.sbs2-header__top a {
  color: var(--sbs2-ink);
  text-decoration: none;
}

.sbs2-header__main {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.sbs2-logo {
  flex: 0 1 350px;
  min-width: 250px;
}

.sbs2-logo img {
  max-width: 350px;
}

.sbs2-nav {
  gap: 10px;
}

.sbs2-nav__item {
  padding: 18px 0;
}

.sbs2-nav__item--catalog {
  position: static;
}

.sbs2-catalog-toggle {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  background: var(--sbs2-yellow);
  color: #17140a;
  font-size: 15px;
  font-weight: 900;
  text-transform: none;
  box-shadow: 0 10px 24px rgba(240,181,27,.22);
}

.sbs2-catalog-toggle__icon {
  width: 22px;
  height: 16px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 22px;
}

.sbs2-catalog-toggle__icon span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.sbs2-catalog-mega {
  top: calc(100% - 1px);
  left: max(16px, calc((100% - 1280px) / 2));
  right: max(16px, calc((100% - 1280px) / 2));
  width: auto;
  max-height: min(72vh, 680px);
  padding: 24px 28px 26px;
  border-radius: 0 0 8px 8px;
}

.sbs2-catalog-mega__head {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--sbs2-line);
}

.sbs2-catalog-mega__head a {
  display: inline-flex;
  width: auto;
  padding: 0;
  border-radius: 0;
  font-size: 18px;
  font-weight: 900;
}

.sbs2-catalog-mega__head a:hover {
  background: transparent;
  color: var(--sbs2-yellow);
}

.sbs2-catalog-mega__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 28px;
  align-items: start;
}

.sbs2-catalog-column {
  min-width: 0;
}

.sbs2-catalog-column__title {
  display: block;
  margin-bottom: 12px;
  padding: 0 0 12px;
  border-bottom: 3px solid var(--sbs2-yellow);
  border-radius: 0;
  color: var(--sbs2-ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

.sbs2-catalog-column__title:hover {
  background: transparent;
  color: var(--sbs2-yellow);
}

.sbs2-catalog-column__links {
  display: grid;
  gap: 4px;
}

.sbs2-catalog-column__links a {
  padding: 7px 0;
  color: var(--sbs2-graphite);
  border-radius: 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.sbs2-catalog-column__links a:hover {
  background: transparent;
  color: var(--sbs2-yellow);
}

.sbs2-catalog-column__links .sbs2-catalog-column__all {
  margin-top: 4px;
  color: var(--sbs2-steel);
  font-size: 12px;
}

@media (max-width: 980px) {
  .sbs2-header {
    min-height: 0;
    padding: 0 16px 14px;
  }

  .sbs2-header__top {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 6px 16px;
    padding: 10px 0 4px;
    font-size: 12px;
  }

  .sbs2-header__main {
    min-height: 0;
    flex-wrap: wrap;
    gap: 12px;
  }

  .sbs2-nav__item {
    padding: 0;
  }

  .sbs2-catalog-toggle {
    min-height: 40px;
    padding: 0 14px;
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .sbs2-header__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
    font-size: 11px;
  }

  .sbs2-header__top span,
  .sbs2-header__top a {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

/* 20260527 catalog aside collapsed groups */
.catalog-side__group {
  border-radius: 8px;
}

.catalog-side__group summary {
  min-height: 44px;
  padding: 0 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20px;
  gap: 10px;
  align-items: center;
  border-radius: 8px;
  color: var(--sbs2-ink);
  cursor: pointer;
  list-style: none;
}

.catalog-side__group summary::-webkit-details-marker {
  display: none;
}

.catalog-side__group summary span:first-child {
  min-width: 0;
  color: inherit;
  font: inherit;
}

.catalog-side__chevron {
  width: 9px;
  height: 9px;
  justify-self: center;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform .16s ease;
}

.catalog-side__group[open] .catalog-side__chevron {
  transform: rotate(45deg);
}

.catalog-side__subs {
  padding-top: 4px;
}

.catalog-side__group summary:hover,
.catalog-side__group.is-active summary {
  background: var(--sbs2-paper);
  color: var(--sbs2-ink);
}

/* 20260527 product sticky overlap fix */
.product-info {
  position: static;
  top: auto;
}

.product-page {
  align-items: start;
}


/* 20260527 combined catalog aside + product overlap fix */
.catalog-side__group {
  border-radius: 8px;
}

.catalog-side__group summary {
  min-height: 44px;
  padding: 0 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20px;
  gap: 10px;
  align-items: center;
  border-radius: 8px;
  color: var(--sbs2-ink);
  cursor: pointer;
  list-style: none;
}

.catalog-side__group summary::-webkit-details-marker {
  display: none;
}

.catalog-side__group summary span:first-child {
  min-width: 0;
  color: inherit;
  font: inherit;
}

.catalog-side__chevron {
  width: 9px;
  height: 9px;
  justify-self: center;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform .16s ease;
}

.catalog-side__group[open] .catalog-side__chevron {
  transform: rotate(45deg);
}

.catalog-side__subs {
  padding-top: 4px;
}

.catalog-side__group summary:hover,
.catalog-side__group.is-active summary {
  background: var(--sbs2-paper);
  color: var(--sbs2-ink);
}

.product-info {
  position: static !important;
  top: auto !important;
}

.product-page {
  align-items: start;
}


/* 20260527 product gallery stable */
.product-gallery {
  display: grid;
  gap: 12px;
  align-self: start;
}
.product-gallery__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1.22;
  overflow: hidden;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-paper);
}
.product-gallery__image,
.product-gallery__main-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
  opacity: 0;
  transition: opacity .18s ease;
}
.product-gallery__main-image,
.product-gallery__image.is-active { opacity: 1; }
.product-gallery__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(17,24,32,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--sbs2-ink);
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 12px 28px rgba(17,24,32,.16);
}
.product-gallery__arrow:hover { background: var(--sbs2-yellow); }
.product-gallery__arrow--prev { left: 14px; }
.product-gallery__arrow--next { right: 14px; }
.product-gallery__counter {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(17,24,32,.76);
  color: var(--sbs2-white);
  font-size: 13px;
  font-weight: 800;
}
.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(82px, 1fr));
  gap: 10px;
}
.product-gallery__thumb {
  height: 74px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  background: var(--sbs2-paper);
  cursor: pointer;
}
.product-gallery__thumb.is-active { border-color: var(--sbs2-yellow); }
.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.product-gallery > img { display: none; }
.product-info {
  position: static !important;
  top: auto !important;
}
.product-page { align-items: start; }

@media (max-width: 640px) {
  .product-gallery__stage { aspect-ratio: 1; }
  .product-gallery__arrow {
    width: 40px;
    height: 40px;
    font-size: 30px;
  }
  .product-gallery__thumbs { grid-template-columns: repeat(auto-fill, minmax(64px, 1fr)); }
  .product-gallery__thumb { height: 60px; }
}

/* 20260527 footer logo soft dark variant */
.sbs2-footer__brand img {
  max-width: 300px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  filter: grayscale(1) invert(1) brightness(1.45) contrast(1.05);
  mix-blend-mode: screen;
  opacity: .78;
}

.sbs2-footer__brand img:hover {
  opacity: .92;
}

@media (max-width: 640px) {
  .sbs2-footer__brand img {
    max-width: 250px;
  }
}


/* 20260527 legal document pages */
.legal-doc-page {
  padding-bottom: 86px;
}

.legal-doc-hero {
  margin-bottom: 28px;
}

.legal-doc {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 46px 56px;
  border: 1px solid var(--sbs2-line);
  border-radius: 8px;
  background: var(--sbs2-white);
  box-shadow: 0 18px 48px rgba(17,24,32,.08);
}

.legal-doc__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--sbs2-line);
}

.legal-doc__head span,
.legal-doc__head strong {
  display: block;
}

.legal-doc__head span {
  margin-bottom: 6px;
  color: var(--sbs2-steel);
  font-size: 14px;
  font-weight: 800;
}

.legal-doc__head strong {
  color: var(--sbs2-ink);
  font-size: 18px;
  line-height: 1.35;
}

.legal-doc__head a {
  color: var(--sbs2-ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--sbs2-yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.legal-doc__toc {
  margin: 28px 0 34px;
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  border-radius: 8px;
  background: var(--sbs2-paper);
}

.legal-doc__toc a {
  color: var(--sbs2-graphite);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.legal-doc__toc a:hover {
  color: var(--sbs2-yellow);
}

.legal-doc__section {
  padding: 26px 0;
  border-top: 1px solid var(--sbs2-line);
}

.legal-doc__section h2 {
  margin: 0 0 12px;
  color: var(--sbs2-ink);
  font-size: 24px;
  line-height: 1.22;
}

.legal-doc__section p {
  margin: 0;
  color: var(--sbs2-graphite);
  font-size: 17px;
  line-height: 1.75;
}

.legal-doc__note {
  margin-top: 28px;
  padding: 22px;
  border-left: 4px solid var(--sbs2-yellow);
  border-radius: 8px;
  background: #fff8df;
}

.legal-doc__note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--sbs2-ink);
}

.legal-doc__note p {
  margin: 0;
  color: var(--sbs2-graphite);
  line-height: 1.6;
}

@media (max-width: 760px) {
  .legal-doc {
    padding: 28px 18px;
  }

  .legal-doc__head {
    display: grid;
  }

  .legal-doc__toc {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .legal-doc__section h2 {
    font-size: 21px;
  }

  .legal-doc__section p {
    font-size: 16px;
  }
}


/* 20260527 footer social links */
.sbs2-footer__inner {
  grid-template-columns: minmax(260px, 1fr) repeat(4, minmax(0, .72fr));
}

.sbs2-footer__social {
  min-width: 0;
}

.sbs2-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 30px;
}

.sbs2-social-link {
  width: 46px;
  height: 46px;
  display: inline-grid !important;
  place-items: center;
  margin: 0 !important;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--sbs2-white) !important;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
  text-decoration: none;
}

.sbs2-social-link:hover {
  border-color: var(--sbs2-yellow);
  background: var(--sbs2-yellow);
  color: #17140a !important;
}

.sbs2-footer-rating {
  display: block;
  margin-top: 4px;
  color: var(--sbs2-white) !important;
  text-decoration: none;
}

.sbs2-footer-rating__title,
.sbs2-footer-rating__subtitle {
  display: block;
  color: rgba(255,255,255,.9) !important;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.sbs2-footer-rating__subtitle {
  margin-top: 4px;
}

.sbs2-footer-rating__card {
  margin-top: 12px;
  padding: 12px;
  display: grid;
  grid-template-columns: 26px auto 1fr;
  gap: 8px;
  align-items: center;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: var(--sbs2-white) !important;
}

.sbs2-footer-rating__pin {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #ef3b2d;
  color: #fff !important;
  font-size: 13px;
  font-weight: 900;
}

.sbs2-footer-rating__card strong {
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.sbs2-footer-rating__stars {
  color: var(--sbs2-yellow) !important;
  font-size: 18px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.sbs2-footer-rating__card small {
  grid-column: 1 / -1;
  color: rgba(255,255,255,.62);
  font-size: 12px;
}

@media (max-width: 1180px) {
  .sbs2-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sbs2-footer__brand {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .sbs2-footer__inner {
    grid-template-columns: 1fr;
  }

  .sbs2-footer__brand {
    grid-column: span 1;
  }

  .sbs2-footer-rating__title,
  .sbs2-footer-rating__subtitle {
    font-size: 18px;
  }
}


/* 20260527 SimpleCMS admin header */
.simplecms-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  color: #f8fafc;
  background: #111820;
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 14px 34px rgba(17,24,32,.16);
}

.simplecms-header__inner {
  width: min(1540px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.simplecms-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f8fafc;
  text-decoration: none;
}

.simplecms-brand__mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--sbs2-yellow);
  color: #17140a;
  font-size: 24px;
  font-weight: 900;
}

.simplecms-brand__text strong,
.simplecms-brand__text small {
  display: block;
}

.simplecms-brand__text strong {
  font-size: 22px;
  line-height: 1;
}

.simplecms-brand__text small {
  margin-top: 4px;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}

.simplecms-header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.simplecms-header__nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255,255,255,.82);
  font-weight: 900;
  text-decoration: none;
}

.simplecms-header__nav a:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}

@media (max-width: 720px) {
  .simplecms-header__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .simplecms-header__nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .simplecms-header__nav a {
    white-space: nowrap;
  }
}


/* 20260527 footer social real icons */
.sbs2-social-link {
  font-size: 0;
}

.sbs2-social-link svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.sbs2-social-link--wa,
.sbs2-social-link--tg {
  color: #fff !important;
}

.sbs2-social-link--wa:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff !important;
}

.sbs2-social-link--tg:hover {
  background: #2aabee;
  border-color: #2aabee;
  color: #fff !important;
}


/* 20260527 lead antispam */
.sbs2-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
