@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/manrope-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


:root {
  --bg: #0b0b0c;
  --magenta: #e23a7a;
  --accent: #e23a7a;
  --accent-light: #f06292;
  --white: rgba(214, 208, 198, 0.96);
  --heading: rgba(214, 208, 198, 0.96);
  --text: rgba(214, 208, 198, 0.92);
  --text-muted: rgba(214, 208, 198, 0.58);
  --muted: rgba(214, 208, 198, 0.58);
  --icon: rgba(214, 208, 198, 0.82);
  --border: rgba(255, 255, 255, 0.08);
  --container: 1280px;
  --side-pad: clamp(1.25rem, 4vw, 3rem);
  --tr: all 0.25s ease;
  --header-h: 72px;
  --r: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: clip;
}

.t-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: Manrope, system-ui, sans-serif;
  font-weight: 500;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  width: min(var(--container), calc(100% - var(--side-pad) * 2));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.4rem;
  border-radius: 999px;
  background: var(--magenta);
  color: #f3e9ee;
  font-weight: 700;
  font-size: 0.95rem;
  border: 0;
  transition: transform 0.25s var(--ease), filter 0.25s var(--ease), background 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  color: #f3e9ee;
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--heading);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--heading);
  filter: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(11, 11, 12, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo img {
  height: 36px;
  width: auto;
}

.site-header .s-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
  margin-left: 1.5rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.site-header .s-nav__link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}

.site-header .s-nav__link:hover,
.site-header .s-nav__link--active {
  color: var(--heading);
}

.mobile-menu-btn {
  display: none;
  margin-left: 0;
  background: none;
  border: none;
  color: var(--icon);
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* === MAIN === */
.t-main {
  flex: 1;
  width: 100%;
  margin: 0;
  padding: 0;
}

.t-main > article {
  width: min(var(--container), calc(100% - 2 * var(--side-pad)));
  margin: 0 auto;
  padding: 40px 0 72px;
}

/* === FOOTER === */
.footer__tear {
  line-height: 0;
  background: #ffd47b;
  overflow: hidden;
}

.footer__tear img {
  width: 100%;
  display: block;
}

.site-footer {
  background: #000;
  padding: 4rem 0 2rem;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 0.8rem;
}

.footer-logo {
  height: 48px;
  width: auto;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 280px;
  margin-bottom: 1rem;
}

.footer-contacts {
  margin-bottom: 1.2rem;
}

.footer-phone {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.4rem;
}

.footer-phone:hover {
  color: var(--accent-light);
}

.footer-address,
.footer-schedule {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0.35rem;
}

.footer-socials {
  display: flex;
  gap: 0.7rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--tr);
}

.footer-socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-col__title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.2rem;
}

.site-footer .s-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.site-footer .s-nav__link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  transition: var(--tr);
}

.site-footer .s-nav__link:hover,
.site-footer .s-nav__link--active {
  color: #fff;
}

.footer-docs ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-docs a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.footer-docs a:hover {
  color: #fff;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.25rem 1.4rem;
  background: #161616;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.legal-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.legal-item__icon {
  color: var(--accent);
}

.legal-item__title {
  font-size: 1.1rem;
  color: #fff;
  margin: 0 0 0.35rem;
}

.legal-item__excerpt {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.5;
}

.legal-item__arrow {
  color: var(--accent);
}

.legal-detail__summary {
  padding: 1rem 1.2rem;
  background: rgba(255, 200, 0, 0.08);
  border-left: 3px solid var(--accent);
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.legal-detail__content {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  max-width: 48rem;
}

.legal-detail__actions {
  margin-top: 2rem;
}

.legal-detail__print {
  display: inline-flex;
  padding: 0.75rem 1.4rem;
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

.legal-detail__print:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.contacts-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contacts-card {
  background: #161616;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  margin-bottom: 1rem;
}

.contacts-card__title {
  font-size: 1.05rem;
  color: #fff;
  margin: 0 0 1rem;
}

.contacts-card__item {
  margin-bottom: 0.9rem;
}

.contacts-card__label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.25rem;
}

.contacts-card a {
  color: var(--accent);
}

.contacts-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.contacts-socials a {
  padding: 0.45rem 0.9rem;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.contacts-requisites {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.contacts-requisites span {
  color: rgba(255, 255, 255, 0.4);
}

.contacts-page__map {
  min-height: 420px;
  border-radius: var(--r);
  overflow: hidden;
  background: #111;
  border: 1px solid var(--border);
  display: block;
  color: inherit;
}

.contacts-page__map iframe,
.contacts-page__map img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.contacts-page__map img {
  object-fit: cover;
  display: block;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: rgba(10, 8, 8, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem var(--side-pad);
}

.cookie-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-banner__text a {
  color: var(--accent);
}

.cookie-banner__btn {
  flex-shrink: 0;
  padding: 0.75rem 1.4rem;
  border-radius: 60px;
  border: 0;
  background: var(--accent);
  color: #1a0a12;
  font-weight: 700;
  cursor: pointer;
}

.t-print {
  background: #fff;
  color: #111;
  padding: 2rem;
}

.legal-print {
  max-width: 720px;
  margin: 0 auto;
}

.legal-print h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.legal-print__summary {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.legal-print__content {
  line-height: 1.7;
}

@media print {
  .legal-print__meta {
    display: none;
  }
}

.footer-requisites p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

.footer-requisites a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-requisites a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: var(--container);
  margin: 3rem auto 0;
  padding: 1.5rem var(--side-pad) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

.payment-icons {
  display: flex;
  gap: 0.8rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

/* === КОНТРАКТ МОДУЛЕЙ s-* === */
.s-title {
  font-family: Manrope, system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--heading);
  margin: 0 0 16px;
}

.s-lead {
  max-width: 42rem;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
}

.page-content {
  max-width: 48rem;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.75;
}

.page-article .s-lead,
.page-article .page-content {
  max-width: none;
}

.s-lead :first-child,
.page-content :first-child {
  margin-top: 0;
}

.s-lead :last-child,
.page-content :last-child {
  margin-bottom: 0;
}

.s-lead h1,
.s-lead h2,
.s-lead h3,
.s-lead h4,
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4 {
  color: var(--accent);
  font-weight: 700;
  line-height: 1.25;
  margin: 1.4em 0 0.55em;
}

.s-lead h1,
.page-content h1 {
  font-size: 1.7em;
}

.s-lead h2,
.page-content h2 {
  font-size: 1.35em;
}

.s-lead h3,
.page-content h3 {
  font-size: 1.15em;
}

.s-lead p,
.page-content p {
  margin: 0 0 1em;
}

.s-lead ul,
.s-lead ol,
.page-content ul,
.page-content ol {
  margin: 0 0 1em;
  padding-left: 1.5em;
}

.s-lead li,
.page-content li {
  margin: 0.25em 0;
}

.s-lead hr,
.page-content hr {
  border: 0;
  height: 1px;
  margin: 1.75em 0;
  background: rgba(255, 255, 255, 0.12);
}

.s-section + .s-section {
  margin-top: 40px;
}

.s-card__title {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.s-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}

.s-card {
  display: block;
  background: #161616;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.s-card:hover {
  transform: translateY(-3px);
  border-color: rgba(226, 58, 122, 0.45);
  color: inherit;
}

.s-card .s-card__title {
  letter-spacing: 0;
  text-transform: none;
  font-size: 18px;
  color: #fff;
  margin: 0 0 6px;
}

.s-card__img,
.s-cover {
  display: block;
  width: 100%;
  object-fit: cover;
  background: #1e1e1e;
}

.s-card__img {
  height: 180px;
  border-radius: 12px;
  margin: -6px 0 14px;
}

.s-cover {
  max-width: 420px;
  height: auto;
  max-height: 420px;
  border-radius: 16px;
  margin: 8px 0 22px;
}

.s-card__meta,
.s-sku {
  color: var(--muted);
  font-size: 13px;
}

.s-card__meta a {
  color: var(--accent-light);
}

.s-card__meta a:hover {
  color: #fff;
}

.s-price {
  margin-top: 10px;
  font-weight: 700;
  font-size: 20px;
  color: var(--accent-light);
}

.s-stock {
  margin-top: 4px;
  font-size: 13px;
}

.s-stock--yes {
  color: #7dcea0;
}

.s-stock--no {
  color: var(--muted);
}

.s-sku {
  margin: 0 0 18px;
}

.s-specs {
  width: min(640px, 100%);
  border-collapse: collapse;
  margin-top: 28px;
}

.s-specs th,
.s-specs td {
  text-align: left;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.s-specs th {
  width: 38%;
  color: var(--muted);
  font-weight: 500;
}

/* === КАТАЛОГ === */
.catalog-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.catalog-layout__head {
  margin-bottom: 1.25rem;
}

.catalog-layout__head .s-title {
  margin: 0;
}

.catalog-sidebar__thumb {
  display: none;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
  margin: 0 0 0.9rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.crumbs__link {
  color: rgba(255, 255, 255, 0.5);
}

.crumbs__link:hover {
  color: #fff;
}

.crumbs__current {
  color: rgba(255, 255, 255, 0.75);
}

.crumbs__sep {
  color: rgba(255, 255, 255, 0.2);
}

.catalog-sidebar {
  background: #161616;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem 1.1rem;
}

.catalog-sidebar__title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.9rem;
}

.catalog-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.catalog-sidebar__link {
  display: block;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

.catalog-sidebar__link:hover,
.catalog-sidebar__link--active {
  color: #fff;
  background: rgba(226, 58, 122, 0.1);
}

.catalog-sidebar__up {
  display: block;
  margin-bottom: 0.45rem;
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  color: var(--accent-light);
  font-size: 0.82rem;
  font-weight: 600;
}

.catalog-sidebar__up:hover {
  color: #fff;
}

.catalog-sidebar__group {
  margin-top: 0.15rem;
}

.catalog-sidebar__subs {
  display: flex;
  flex-direction: column;
  padding: 0.15rem 0 0.45rem 0.85rem;
  gap: 0.05rem;
}

.catalog-sidebar__toggle {
  display: none;
}

.catalog-sidebar__sub {
  display: block;
  padding: 0.28rem 0.5rem;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
}

.catalog-sidebar__sub:hover,
.catalog-sidebar__sub--active {
  color: #fff;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.catalog-card {
  background: #161616;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--tr);
}

.catalog-card:hover {
  border-color: rgba(226, 58, 122, 0.35);
  box-shadow: 0 4px 16px rgba(226, 58, 122, 0.15);
  transform: translateY(-2px);
}

.catalog-card__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.15rem;
}

.catalog-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.catalog-card__icon--placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(226, 58, 122, 0.12);
  color: #d96090;
}

.catalog-card__title {
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  line-height: 1.3;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.25rem;
}

.product-card {
  display: block;
  background: #161616;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--tr);
}

.product-card:hover {
  border-color: rgba(226, 58, 122, 0.35);
  box-shadow: 0 4px 16px rgba(226, 58, 122, 0.15);
  transform: translateY(-2px);
}

.product-card__image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #1e1e1e;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
}

.product-card__body {
  padding: 0.85rem 1rem 1.05rem;
  display: flex;
  flex-direction: column;
}

.product-card__price {
  display: block;
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-light);
  min-height: 1.3em;
}

.product-card__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.35em * 2);
}

.catalog-pager {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 2rem;
}

.catalog-pager__link {
  min-width: 36px;
  height: 36px;
  padding: 0 0.7rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.catalog-pager__link:hover {
  color: #fff;
  border-color: rgba(226, 58, 122, 0.4);
}

.catalog-pager__link--current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 700;
}

.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 0.5rem;
}

.product-detail__gallery,
.product-detail__main-image,
.product-detail__no-image {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  background: #1e1e1e;
}

.product-detail__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail__no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
}

.product-detail__title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.15;
}

.product-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.1rem;
}

.product-group__dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1e1e1e;
  border: 2px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.product-group__dot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-group__dot:hover {
  border-color: rgba(226, 58, 122, 0.55);
}

.product-group__dot--active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(226, 58, 122, 0.25);
}

.product-variant {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 0 0 1.1rem;
}

.product-variant__label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.45rem;
}

.product-variant__values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.product-variant__value {
  min-height: 36px;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 0.88rem;
  cursor: pointer;
}

.product-variant__value:hover:not(:disabled) {
  border-color: rgba(226, 58, 122, 0.5);
}

.product-variant__value.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 600;
}

.product-variant__value:disabled,
.product-variant__value.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.product-variant__hint {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.product-detail__commerce {
  margin: 0.5rem 0 1.25rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.product-detail__sku-line {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}

.product-detail__price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-detail__price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-light);
}

.product-detail__stock--in {
  color: #7dcea0;
}

.product-detail__stock--out {
  color: var(--muted);
}

.product-tabs {
  margin-top: 2.2rem;
}

.product-tabs__nav {
  display: flex;
  border-bottom: 2px solid var(--border);
}

.product-tabs__btn {
  padding: 0.7rem 0;
  margin-right: 1.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  margin-bottom: -2px;
}

.product-tabs__panels {
  padding: 1.3rem 0 0;
}

.page-content {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  max-width: 48rem;
}

.catalog-section {
  margin-top: 2rem;
}

.catalog-showcase {
  margin: 0 0 2.25rem;
}

.catalog-showcase:last-of-type {
  margin-bottom: 0;
}

.catalog-showcase__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.catalog-showcase__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.catalog-showcase__title a {
  color: var(--heading);
}

.catalog-showcase__title a:hover {
  color: var(--magenta);
}

.catalog-showcase__more {
  flex-shrink: 0;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--magenta);
}

.catalog-showcase__more:hover {
  color: var(--accent-light);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  background: #ffd47b var(--hero-sand) center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.hero__spots {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__spots span {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: spotPulse 8s ease-in-out infinite alternate;
}

.hero__spots .s1 { width: 300px; height: 300px; top: -10%; right: 20%; background: rgba(26, 10, 18, 0.06); animation-delay: 0s; }
.hero__spots .s2 { width: 200px; height: 200px; top: -5%; right: 5%; background: rgba(26, 10, 18, 0.05); animation-delay: 1s; }
.hero__spots .s3 { width: 250px; height: 250px; bottom: 0; right: 35%; background: rgba(26, 10, 18, 0.07); animation-delay: 2s; }
.hero__spots .s4 { width: 180px; height: 180px; bottom: 5%; left: 30%; background: rgba(26, 10, 18, 0.05); animation-delay: 3s; }
.hero__spots .s5 { width: 120px; height: 120px; top: 30%; left: 10%; background: rgba(26, 10, 18, 0.04); animation-delay: 4s; }
.hero__spots .s6 { width: 350px; height: 350px; top: -20%; left: 40%; background: rgba(26, 10, 18, 0.06); animation-delay: 5s; }

@keyframes spotPulse {
  0% { transform: scale(1) translate(0, 0); opacity: 0.6; }
  100% { transform: scale(1.15) translate(10px, -10px); opacity: 1; }
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  min-height: 100vh;
}

.hero__grass {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}

.hero__grass img {
  width: 100%;
  display: block;
}

.hero__content {
  max-width: 500px;
  padding: 2rem 0;
}

.hero__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 1.8rem;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #a94442;
  line-height: 1.15;
  margin-bottom: 1.8rem;
}

.hero__sub {
  font-size: 1.1rem;
  color: #000;
  line-height: 1.6;
  margin-bottom: 2.2rem;
  max-width: 450px;
}

.hero__sub p,
.hero__sub ul,
.hero__sub ol {
  margin: 0 0 0.6em;
}

.hero__sub :last-child {
  margin-bottom: 0;
}

.hero__sub ul,
.hero__sub ol {
  padding-left: 1.35em;
}

.hero__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  border: 2px solid #000;
  background: #000;
  color: #fff;
  transition: all 0.3s;
}

.hero .btn:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.hero .btn--ghost {
  background: transparent;
  color: #000;
}

.hero .btn--ghost:hover {
  background: rgba(0, 0, 0, 0.08);
  color: #000;
}

.hero__figure {
  position: relative;
  z-index: 10;
  justify-self: end;
  align-self: end;
  margin-bottom: 6rem;
}

.hero__figure img {
  display: block;
  max-height: 85vh;
  width: auto;
  max-width: 600px;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
}

/* === КАТЕГОРИИ === */
.categories-section {
  position: relative;
  background: #000;
  margin-top: -2px;
  padding: 4rem 0 5rem;
}

.cat-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.cat-tile {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  color: #fff;
  transition: all 0.25s ease;
}

.cat-tile:hover {
  transform: translateY(-4px);
  color: #fff;
}

.cat-tile img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: all 0.25s ease;
}

.cat-tile:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 6px 18px rgba(226, 58, 122, 0.35));
}

.cat-tile__label {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 0.6rem;
}

.cat-tile__line {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 0.6rem;
}

.cat-tile__desc {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* === АКЦИИ === */
.promos {
  background: #000;
  padding: 4rem 0 6rem;
}

.promos__title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2.5rem;
}

.promos__wrap {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.promos__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.promos__track::-webkit-scrollbar {
  display: none;
}

.promo-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
}

.promo-slide__img {
  position: relative;
  overflow: hidden;
  background: #111;
}

.promo-slide__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-slide__body {
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
}

.promo-slide__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.promo-slide__heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.promo-slide__line {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 1rem;
}

.promo-slide__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.promo-slide__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
}

.promo-slide__link:hover {
  color: #f06292;
  gap: 0.7rem;
}

.promos__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.promos__nav:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.promos__nav svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.promos__nav--prev {
  left: -22px;
}

.promos__nav--next {
  right: -22px;
}

.promos__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.promos__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
}

.promos__dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* === КОНТАКТ-ТИЗЕР === */
.contact-teaser__tear {
  line-height: 0;
  background: #000;
  overflow: hidden;
}

.contact-teaser__tear img {
  width: 100%;
  display: block;
}

.contact-teaser__tear--bottom {
  background: #ffc800;
}

.contact-teaser {
  background: #ffc800;
  padding: 5rem 0;
  position: relative;
}

.contact-teaser__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-teaser__body {
  color: #1a0a12;
}

.contact-teaser__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(26, 10, 18, 0.5);
  margin-bottom: 1rem;
}

.contact-teaser__heading {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #1a0a12;
}

.contact-teaser__line {
  display: block;
  width: 50px;
  height: 3px;
  background: #1a0a12;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.contact-teaser__text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(26, 10, 18, 0.75);
  margin-bottom: 2rem;
}

.contact-teaser__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 2.2rem;
  border-radius: 60px;
  font-size: 0.9rem;
  font-weight: 700;
  background: #1a0a12;
  color: #ffc800;
  border: 2px solid #1a0a12;
}

.contact-teaser__btn:hover {
  background: transparent;
  color: var(--accent);
}

.contact-teaser__photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.contact-teaser__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* === СТАТЬИ / ОТЗЫВЫ (главная) === */
.articles {
  background: #fff;
  padding: 4rem 0 5rem;
  color: #1a0a12;
}

.articles__header {
  max-width: var(--container);
  margin: 0 auto 2.5rem;
  padding: 0 var(--side-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.articles__title,
.reviews__title {
  font-size: 1.8rem;
  font-weight: 700;
}

.articles__title {
  color: #1a0a12;
}

.articles__all {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.articles__all:hover {
  opacity: 0.7;
}

.articles__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.article-card--hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  background: #1a0a12;
}

.article-card--hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.article-card--hero:hover img {
  transform: scale(1.05);
}

.article-card--hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 60%, transparent);
  z-index: 1;
}

.article-card__overlay {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.article-card--hero .article-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.article-card--hero .article-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #f5b800;
}

.article-card--sm {
  border-radius: 16px;
  overflow: hidden;
  background: #fafafa;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
}

.article-card--sm:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.article-card--sm .article-card__img {
  height: 180px;
  overflow: hidden;
  background: #eee;
}

.article-card--sm .article-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.article-card--sm:hover .article-card__img img {
  transform: scale(1.05);
}

.article-card--sm .article-card__body {
  padding: 1.2rem 1.4rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card--sm .article-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a0a12;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.article-card--sm .article-card__excerpt {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.article-card--sm .article-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

.reviews__tear {
  line-height: 0;
  background: #fff;
  overflow: hidden;
}

.reviews__tear img {
  width: 100%;
  display: block;
}

.reviews {
  background: #ffd47b;
  padding: 4rem 0 5rem;
  color: #1a0a12;
}

.reviews__title {
  text-align: center;
  color: #1a0a12;
  margin-bottom: 2.5rem;
}

.reviews__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.review-card__stars {
  color: #ffc800;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}

.review-card__text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #333;
  flex: 1;
  margin-bottom: 1.2rem;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.review-card__name {
  font-weight: 600;
  font-size: 0.85rem;
  color: #1a0a12;
}

.review-card__date {
  font-size: 0.72rem;
  color: #999;
  margin-top: 0.15rem;
}

/* === ADAPTIVE === */
@media (max-width: 1024px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding: 6rem 2rem 0;
    min-height: auto;
  }

  .hero__content {
    padding-top: 2rem;
    text-align: center;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero__btns {
    justify-content: center;
  }

  .hero__figure {
    justify-self: center;
    margin-bottom: 2rem;
  }

  .hero__figure img {
    max-height: 50vh;
    max-width: 80%;
  }

  .promo-slide {
    grid-template-columns: 1fr;
  }

  .promo-slide__img {
    height: 200px;
  }

  .promo-slide__body {
    padding: 1.5rem 2rem 2rem;
  }

  .promos__nav--prev {
    left: 8px;
  }

  .promos__nav--next {
    right: 8px;
  }

  .contact-teaser__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-teaser__heading {
    font-size: 1.6rem;
  }

  .contact-teaser__line {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-teaser__photo {
    max-height: 280px;
  }

  .articles__grid,
  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .article-card--hero {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .catalog-layout,
  .product-detail__grid {
    grid-template-columns: 1fr;
  }

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

  .product-card__body {
    padding: 0.65rem 0.7rem 0.8rem;
  }

  .product-card__price,
  .product-card__name {
    font-size: 0.84rem;
  }

  .catalog-sidebar {
    display: none;
  }

  .catalog-sidebar--tiles {
    display: block;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0 0 1.1rem;
  }

  .catalog-sidebar--tiles .catalog-sidebar__title,
  .catalog-sidebar--tiles .catalog-sidebar__up,
  .catalog-sidebar--tiles .catalog-sidebar__link--active,
  .catalog-sidebar--tiles.catalog-sidebar--root .catalog-sidebar__link--active {
    display: none;
  }

  .catalog-sidebar--tiles:not(.catalog-sidebar--root) .catalog-sidebar__link {
    display: none;
  }

  .catalog-sidebar--tiles .catalog-sidebar__nav {
    display: block;
    gap: 0;
  }

  .catalog-sidebar--tiles .catalog-sidebar__subs,
  .catalog-sidebar--tiles.catalog-sidebar--root .catalog-sidebar__nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem 0.55rem;
    padding: 0;
  }

  .catalog-sidebar--tiles .catalog-sidebar__sub,
  .catalog-sidebar--tiles.catalog-sidebar--root .catalog-sidebar__link:not(.catalog-sidebar__link--active) {
    position: relative;
    display: block;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #161616;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    isolation: isolate;
  }

  .catalog-sidebar--tiles .catalog-sidebar__sub:hover,
  .catalog-sidebar--tiles .catalog-sidebar__sub--active,
  .catalog-sidebar--tiles.catalog-sidebar--root .catalog-sidebar__link:hover {
    background: #161616;
    color: #fff;
  }

  .catalog-sidebar--tiles .catalog-sidebar__thumb {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 0;
    background: #161616;
  }

  .catalog-sidebar--tiles .catalog-sidebar__thumb--empty {
    background: linear-gradient(180deg, #1c1c1e, #121214);
  }

  .catalog-sidebar--tiles .catalog-sidebar__sub::after,
  .catalog-sidebar--tiles.catalog-sidebar--root .catalog-sidebar__link:not(.catalog-sidebar__link--active)::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.72) 100%);
    pointer-events: none;
  }

  .catalog-sidebar--tiles .catalog-sidebar__name {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    padding: 0.45rem 0.4rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.85), 0 4px 14px rgba(0, 0, 0, 0.55);
  }

  .catalog-layout__head {
    margin-bottom: 0.85rem;
  }
  .site-header .s-nav {
    display: none;
    position: absolute;
    left: var(--side-pad);
    right: var(--side-pad);
    top: calc(var(--header-h) + 8px);
    background: #111;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin-left: 0;
    z-index: 110;
  }

  .site-header.is-open .s-nav {
    display: flex;
  }

  .site-header .s-nav__link {
    padding: 10px 12px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  :root {
    --side-pad: 1.25rem;
  }

  .cat-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cat-tile img {
    height: 60px;
    width: 60px;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__btn {
    width: 100%;
    text-align: center;
  }

  .contacts-page__grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Группа товаров: круглые ссылки на карточке */
.product-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.85rem 0 1.1rem;
}

.product-group__dot {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: #1e1e1e;
  border: 2px solid rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.product-group__dot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-group a.product-group__dot:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.product-group__dot--active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(226, 58, 122, 0.28);
}

.header-cart {
  margin-left: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  flex-shrink: 0;
}

.header-cart:hover {
  color: var(--accent-light);
}

.header-cart__qty {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  background: var(--accent);
  color: #1a0a12;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.header-cart__qty[hidden] {
  display: none !important;
}

.catalog-menu {
  position: static;
  flex-shrink: 0;
}

.catalog-menu__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 40px;
  padding: 0 1rem;
  border: 0;
  border-radius: 999px;
  background: var(--magenta);
  color: #f3e9ee;
  font: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
}

.catalog-menu__btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.catalog-menu__btn:hover,
.catalog-menu.is-open .catalog-menu__btn {
  filter: brightness(1.06);
}

.catalog-menu__backdrop {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.45);
}

.catalog-menu__panel {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-h);
  z-index: 110;
  max-height: calc(100dvh - var(--header-h));
  overflow-x: hidden;
  overflow-y: auto;
  background: #111113;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.catalog-menu__inner {
  padding: 1.25rem 0 1.75rem;
}

.catalog-menu__all {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--magenta);
}

.catalog-menu__all:hover {
  color: var(--accent-light);
}

.catalog-menu__map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem 2rem;
}

.catalog-menu__root {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--heading);
}

.catalog-menu__root:hover {
  color: var(--magenta);
}

.catalog-menu__thumb {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 12px;
  object-fit: cover;
  background: #1e1e1e;
}

.catalog-menu__thumb--empty {
  display: block;
  border: 1px solid var(--border);
}

.catalog-menu__root-name {
  line-height: 1.25;
}

.catalog-menu__subs {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  padding-left: calc(56px + 0.75rem);
}

.catalog-menu__sub {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.35;
}

.catalog-menu__sub:hover {
  color: var(--heading);
}

@media (max-width: 980px) {
  .catalog-menu__map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem 1.25rem;
  }

  .catalog-menu__thumb {
    display: none;
  }

  .catalog-menu__subs {
    padding-left: 0;
  }

  .catalog-menu__root {
    margin-bottom: 0.35rem;
    font-size: 0.92rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 60px;
  border: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.btn--primary {
  background: var(--accent);
  color: #1a0a12;
}

.btn--primary:hover {
  background: var(--accent-light);
  color: #1a0a12;
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.product-detail__buy {
  margin-top: 1.25rem;
}

.product-buy {
  margin-top: 1.25rem;
}

.product-buy [hidden] {
  display: none !important;
}

.product-buy__status {
  margin: 0 0 0.55rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #7dcea0;
}

.product-buy__pick {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
}

.product-buy__msg {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: #7dcea0;
}

.product-buy__msg.is-error {
  color: #f06292;
}

.product-buy__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.product-buy__stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem;
  border: 1px solid var(--border);
  border-radius: 60px;
  background: #161616;
}

.product-buy__spin {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}

.product-buy__spin:hover {
  background: rgba(226, 58, 122, 0.18);
}

.product-buy__input {
  width: 3.2rem;
  text-align: center;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 700;
  appearance: textfield;
  -moz-appearance: textfield;
}

.product-buy__input::-webkit-outer-spin-button,
.product-buy__input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.cart-page {
  color: var(--text);
}

.cart-table {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.5rem 0;
}

.cart-row {
  display: grid;
  grid-template-columns: 72px 1fr auto 5.5rem auto 2rem;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: #161616;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.cart-row__cover {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: #1e1e1e;
}

.cart-row__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-row__name {
  color: #fff;
  font-weight: 600;
}

.cart-row__sku {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.cart-row__price,
.cart-row__line {
  font-weight: 700;
  color: var(--accent-light);
  white-space: nowrap;
}

.cart-qty {
  width: 100%;
  padding: 0.45rem 0.5rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #111;
  color: #fff;
  font: inherit;
}

.cart-remove {
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

.cart-remove:hover {
  color: #fff;
}

.cart-summary {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cart-summary__total {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.cart-form__label {
  display: block;
  margin: 1rem 0 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.cart-form__input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #161616;
  color: #fff;
  font: inherit;
}

.cart-form__error {
  color: #f06292;
  font-size: 0.82rem;
  margin-top: 0.3rem;
}

.cart-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 1.25rem 0 1.4rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text);
}

.cart-form__consent input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.cart-form__consent a {
  color: var(--accent-light);
  text-decoration: underline;
}

.checkout-aside {
  background: #161616;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
}

.checkout-aside__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
}

.checkout-aside__total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-weight: 700;
  color: #fff;
}

.pay-lines {
  margin: 1rem 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--text);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .cart-row {
    grid-template-columns: 64px 1fr auto;
    grid-template-areas:
      "cover info remove"
      "cover price price"
      "qty line line";
  }

  .cart-row__cover { grid-area: cover; }
  .cart-row__info { grid-area: info; }
  .cart-row__remove { grid-area: remove; }
  .cart-row__price { grid-area: price; }
  .cart-row__qty { grid-area: qty; }
  .cart-row__line { grid-area: line; }

  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

