/* JointTopFit color theme — dark spa sage (tint only, stay dark) */
:root {
  --jt-ink: #0F1916;
  --jt-panel: #16241F;
  --jt-accent: #2A9B8F;
  --jt-accent-deep: #1F8A7D;
  --jt-mint: #8EE0D4;
  --jt-muted: #8A9390;
  --jt-line: rgba(42, 155, 143, 0.22);
  --jt-card: #1B2730;
}

/* Force dark shell everywhere (no light content planes) */
html,
body,
.body,
main,
main.main,
main.main.main-empty,
#content,
#common-home,
.hits,
.advantages,
.zones-section,
.categories,
.footer,
.blog,
.page,
.order,
.catalog {
  background: var(--jt-ink) !important;
  background-color: var(--jt-ink) !important;
}

.hits__title,
.advantages__title,
.zones-section__title,
.title-2 {
  color: #fff !important;
}

.product__item-big,
.product__item-big .product__item-image,
.product__item-top {
  background-color: var(--jt-card) !important;
}

.footer {
  border-top: 1px solid var(--jt-line);
}

.btn {
  box-shadow: 0 8px 24px rgba(31, 138, 125, 0.22);
}

.btn:hover {
  box-shadow: 0 10px 28px rgba(31, 138, 125, 0.3);
}

.zones-card h3 a:hover,
.header__catalog a:hover {
  color: var(--jt-accent);
}

.categories__box:not(:first-of-type),
.categories__box:last-of-type {
  border-color: var(--jt-line);
}

.product__item-price,
.product__price span,
.hits .product-item__price,
.cart .cart__products-price span {
  color: var(--jt-accent) !important;
}

/* Supplemental layout helpers for clone (original theme + SPA needs) */
.header.is-scrolled,
.header:not(.header-transparent),
.header.scrolled {
  background: #0F1916;
}

.header__bg.is-open {
  opacity: 1;
  pointer-events: auto;
}

.header__content {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: #16241F;
  padding: 40px 0;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
}

.header__content.is-open {
  opacity: 1;
  pointer-events: auto;
}

.header__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 24px;
}

.header__content-title {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.header__content-descr {
  color: #85898b;
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 12px;
}

.header__content-list li a {
  color: #bfbfbf;
  font-size: 14px;
  transition: 0.2s;
}

.header__content-list li a:hover {
  color: #2A9B8F;
}

.header__content-close,
.header__burger {
  color: #bfbfbf;
  background: transparent;
  border: none;
  cursor: pointer;
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 0;
}

.header__burger span {
  display: block;
  height: 2px;
  background: #bfbfbf;
  width: 100%;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

.mobile-menu-root {
  position: fixed;
  inset: 0;
  z-index: 70;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu-root.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 100%);
  height: 100%;
  background: #16241F;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.25s;
  display: flex;
  flex-direction: column;
  gap: 16px;
  pointer-events: auto;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu__head button {
  font-size: 32px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-menu nav a {
  color: #bfbfbf;
  font-size: 16px;
}

@media (max-width: 991px) {
  .header__menu,
  .header__catalog,
  .header__box {
    display: none !important;
  }
  .header__burger {
    display: flex;
  }
}

/* Cart: theme .cart/.cart.active in style.css; extras below */
body.no-scroll {
  overflow: hidden;
}

.cart__inner {
  height: 100%;
  max-height: 100%;
  background: #16241F;
}

.cart__empty {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  padding: 12px 0;
}

.cart-drawer__foot {
  padding: 20px;
  border-top: 1px solid #252b30;
  margin-top: auto;
  background: #16241F;
}

.cart-drawer__qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.cart-drawer__qty button {
  background: #0f181e;
  border: 1px solid #252b30;
  color: #bfbfbf;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

/* Cart line items — avoid theme max-width squeeze / text overlap */
.cart .cart__products-item {
  position: relative;
  width: 100%;
  padding-right: 8px;
}

.cart .cart__products-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-width: 0;
  flex: 1;
  padding-right: 40px;
}

.cart .cart__products-name {
  display: block;
  max-width: 100%;
  width: 100%;
}

.cart .cart__products-price {
  color: #2A9B8F;
}

.cart .cart__products-price span {
  color: inherit;
  font-size: inherit;
  text-decoration: none;
  transform: none;
}

.cart .cart__products-count {
  margin-top: 4px;
}

.cart .cart__products-delete {
  position: absolute;
  right: 12px;
  bottom: 4px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  color: #fff;
  font-size: 18px;
}

.cart-drawer__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-drawer__actions .btn,
.cart-drawer__actions .btn-2 {
  max-width: none;
  width: 100%;
}

.footer {
  background: #070b0e;
  padding: 60px 0 30px;
  margin-top: 80px;
  border-top: 1px solid #1b2730;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 0.9fr;
  gap: 28px;
}

.footer__col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a {
  color: #85898b;
  transition: 0.2s;
}

.footer__col a:hover {
  color: #2A9B8F;
}

.footer__brand p {
  margin: 16px 0;
  max-width: 280px;
}

.footer__tel,
.footer__mail {
  display: block;
  color: #fff !important;
  margin-top: 8px;
}

.footer__pay,
.footer__ships {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.footer__pay img,
.footer__ships img {
  height: 28px;
  width: auto;
}

.footer__bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #1b2730;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer__bottom-start {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}

.footer__bottom-privacy {
  color: #9aa7b2;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__bottom-privacy:hover {
  color: #fff;
}

.checkout-terms {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: #9aa7b2;
}

.checkout-terms a {
  color: #c5d0d8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkout-terms a:hover {
  color: #fff;
}

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

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

.page-content {
  padding: 40px 0 80px;
  color: #bfbfbf;
}

.page-content h1 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 24px;
}

.page-content h2,
.page-content h3 {
  color: #fff;
  margin: 28px 0 12px;
}

.page-content p,
.page-content li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.page-content ul {
  list-style: disc;
  padding-left: 20px;
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.page-content th,
.page-content td {
  border: 1px solid #252b30;
  padding: 10px;
  text-align: left;
}

.catalog-page {
  padding: 40px 0 80px;
}

.catalog-page__head {
  margin-bottom: 32px;
}

.catalog-page__head h1 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 12px;
}

.catalog-page__head p {
  max-width: 640px;
}

.catalog__descr {
  max-width: 720px;
  margin: -16px auto 0;
  text-align: center;
  color: #bfbfbf;
}

.catalog__sort-select {
  width: 100%;
  height: 50px;
  border-radius: 30px;
  border: 1px solid #252b30;
  background: #16241F;
  color: #fff;
  padding: 0 24px;
  font-family: inherit;
  font-size: 16px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23BFBFBF' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  cursor: pointer;
}

.catalog__filter-currency {
  color: #2A9B8F;
  font-size: 14px;
  white-space: nowrap;
}

.catalog__filter-track-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #8EE0D4 0%, #1F8A7D 100%);
  border-radius: 5px;
}

.catalog__filter-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.catalog__filter-back {
  background: none;
  border: none;
  color: #bfbfbf;
  cursor: pointer;
  text-align: left;
  padding: 0;
  font-size: 16px;
}

.catalog__filter-back:hover {
  color: #2A9B8F;
}

.catalog__filter-apply {
  width: 100%;
  max-width: none;
}

.catalog__filter-title {
  background: none;
  border: none;
  padding: 0;
  text-align: left;
}

.catalog .product__item-title div {
  color: #2A9B8F;
}

.catalog .product__item-price {
  font-size: 24px;
}

.catalog__meta {
  margin-top: 28px;
  color: #85898b;
  font-size: 14px;
}

.catalog__empty {
  color: #fff;
  margin-top: 24px;
}

.catalog__empty[hidden] {
  display: none !important;
}

.catalog [data-catalog-item][hidden] {
  display: none !important;
}

.product-page {
  padding: 40px 0 80px;
}

.product-page__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 1fr);
  gap: 40px 48px;
  align-items: start;
}

.product-page__image {
  background: #16241F;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
  aspect-ratio: 1 / 1;
  max-height: 560px;
}

.product-page__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-page__info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 8px;
}

.product-page__info h1 {
  color: #fff;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
  margin: 0 0 8px;
}

.product-page__price {
  color: #2A9B8F;
  font-size: 28px;
  font-weight: 700;
  margin: 14px 0 0;
}

.product-page__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 22px 0 14px;
}

.product-page__desc {
  color: #bfbfbf;
  line-height: 1.7;
}

.product-page__meta {
  margin: 8px 0 0;
  color: #8a9a90;
  font-size: 14px;
}

.product-page__warranty {
  margin: 0 0 18px;
  font-size: 14px;
  color: #9aa7b2;
}

.product-page__warranty a {
  color: #7dceb8;
  text-decoration: underline;
}

.product-page__reseller-note {
  margin: 0 0 16px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.45;
  color: #bfbfbf;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid rgba(42, 155, 143, 0.55);
}

.product-page__reseller-note a {
  color: #7dceb8;
  text-decoration: underline;
}

.footer__brand-disclaimer {
  margin-top: 12px;
  max-width: 720px;
  font-size: 12px;
  line-height: 1.45;
  color: #85898b;
}

.product-page__lead {
  margin: 0 0 20px;
  color: #c5cec8;
  font-size: 15px;
  line-height: 1.65;
}

.product-page__highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #1b2730;
  border-radius: 14px;
  overflow: hidden;
}

.product-page__highlights li {
  display: grid;
  grid-template-columns: minmax(110px, 42%) minmax(0, 1fr);
  gap: 12px;
  padding: 11px 14px;
  border-bottom: 1px solid #1b2730;
  font-size: 13px;
  align-items: start;
}

.product-page__highlights li:last-child {
  border-bottom: 0;
}

.product-page__highlights span {
  color: #8a9a90;
  min-width: 0;
  overflow-wrap: anywhere;
}

.product-page__highlights strong {
  color: #e8eee9;
  font-weight: 600;
  text-align: right;
  min-width: 0;
  overflow-wrap: anywhere;
}

.product-page__details {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid #1b2730;
}

.product-page__details-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.product-page__details h2 {
  color: #fff;
  font-size: 24px;
  margin: 0 0 20px;
}

.product-page__details h2 + .product-specs-wrap,
.product-page__details h2:nth-of-type(2) {
  margin-top: 40px;
}

.product-page__desc--centered {
  text-align: center;
}

.product-page__desc--centered p {
  margin: 0 0 1.15em;
  color: #b8c4bc;
  font-size: 16px;
  line-height: 1.75;
}

.product-page__desc--centered p:last-child {
  margin-bottom: 0;
}

.product-page__related {
  margin-top: 64px;
}

.product-page__related h2 {
  color: #fff;
  margin-bottom: 24px;
  text-align: center;
}

.product-page__buy {
  text-align: center;
  justify-content: center;
  min-width: 140px;
  text-decoration: none;
  color: #0f1916;
  gap: 0;
  box-sizing: border-box;
}

.product-page__actions .btn,
.product-page__actions .btn-2 {
  text-align: center;
  justify-content: center;
}

.product-specs-wrap {
  overflow-x: auto;
  border: 1px solid #1b2730;
  border-radius: 12px;
  text-align: left;
  margin-top: 8px;
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
}

.product-specs {
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 14px;
  text-align: left;
}

.product-specs__row {
  display: grid;
  grid-template-columns: minmax(140px, 42%) minmax(0, 1fr);
  gap: 12px 20px;
  padding: 12px 16px;
  border-bottom: 1px solid #1b2730;
  text-align: left;
  align-items: start;
}

.product-specs__row:nth-child(odd) {
  background: rgba(255, 255, 255, 0.03);
}

.product-specs__row:last-child {
  border-bottom: 0;
}

.product-specs dt {
  margin: 0;
  color: #9aa7b2;
  font-weight: 600;
  text-align: left;
  overflow-wrap: anywhere;
}

.product-specs dd {
  margin: 0;
  color: #e8eee9;
  text-align: left;
  overflow-wrap: anywhere;
}

.product-specs-note {
  margin-top: 12px;
  font-size: 13px;
  color: #7a8790;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 600px) {
  .product-specs__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 800px) {
  .product-page__grid {
    grid-template-columns: 1fr;
  }

  .product-page__image {
    min-height: 280px;
    aspect-ratio: 4 / 3;
    max-height: none;
  }

  .product-page__highlights li {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .product-page__highlights strong {
    text-align: left;
  }
}

.zones-section {
  padding: 60px 0;
}

.zones-section__title {
  color: #fff;
  font-size: 28px;
  margin-bottom: 28px;
  text-align: center;
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.zones-card {
  background: #16241F;
  border-radius: 16px;
  padding: 24px;
  transition: 0.2s;
}

.zones-card:hover {
  background: #1b2730;
}

.zones-card h3 {
  color: #fff;
  margin-bottom: 8px;
}

.zones-card p {
  font-size: 14px;
  margin-bottom: 12px;
}

.zones-card ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.zones-card a {
  color: #2A9B8F;
  font-size: 14px;
}

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

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

.checkout-form {
  display: grid;
  gap: 14px;
  max-width: 520px;
}

.checkout-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #bfbfbf;
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
  background: #16241F;
  border: 1px solid #252b30;
  color: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  font-family: inherit;
}

/* Checkout — match original simplecheckout layout */
.order .breadcrumbs {
  margin-top: 32px;
}

.order .breadcrumbs li span {
  color: #2A9B8F;
}

.checkout-empty {
  margin-top: 48px;
  text-align: center;
}

.checkout-empty[hidden],
.order__data[hidden],
.checkout-done[hidden],
[data-checkout-done][hidden] {
  display: none !important;
}

.checkout-empty__msg {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.checkout-empty__meta {
  color: #85898b;
  margin-bottom: 28px;
}

.simplecheckout-button-block {
  display: flex;
  justify-content: center;
}

.order__data {
  display: flex;
  gap: 23px;
  justify-content: space-between;
  position: relative;
  margin-top: 62px;
}

.order__box-radio {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checkout-card-fields {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-card-fields[hidden] {
  display: none !important;
}

.checkout-card-note {
  margin: 12px 0 0;
  color: #85898b;
  font-size: 13px;
  line-height: 1.4;
}

.order__click[hidden] {
  display: none !important;
}

.checkout-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23BFBFBF' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
}

.order__right-products .cart__products-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
}

.order__right-products .cart__products-image {
  width: 90px;
  min-width: 90px;
  height: 90px;
  border-radius: 12px;
  background: #0F1916;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.order__right-products .cart__products-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.order__right-products .cart__products-content {
  flex: 1;
  min-width: 0;
  padding-right: 36px;
}

.order__right-products .cart__products-name {
  max-width: 100%;
  display: block;
}

.order__right-products .cart-drawer__qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.order__right-products .cart-drawer__qty button {
  color: #bfbfbf;
  font-size: 14px;
}

.order__right-bottom .cart__bottom-block:first-child {
  display: flex;
}

.checkout-done {
  margin-top: 48px;
  max-width: 640px;
}

@media (max-width: 767px) {
  .order__data {
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
  }
}

.hero__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.btn-prev,
.btn-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #bfbfbf;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.btn-prev::before,
.btn-next::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-left: 2px solid #bfbfbf;
  border-bottom: 2px solid #bfbfbf;
}

.btn-prev::before {
  transform: rotate(45deg);
  left: 4px;
}

.btn-next::after {
  transform: rotate(-135deg);
  right: 4px;
}

.breadcrumbs-block {
  margin-bottom: 24px;
}

main.main:not(.main-empty) {
  padding-top: 140px;
}

/* force hero visible — must load last; height < 100vh so catalog peeks for screenshot crawlers */
.hero { background:#0F1916; min-height:0; }
.hero__slide { position:relative !important; min-height:640px !important; overflow:hidden; }
.hero__slide:not(.is-active) { display:none !important; }
.hero__slide.is-active { display:block !important; }
.hero__slide-image {
  position:absolute !important; inset:0 !important; z-index:1 !important;
  display:block !important; pointer-events:none;
}
.hero__slide-image img {
  width:100% !important; height:100% !important; object-fit:cover !important;
  display:block !important; opacity:1 !important; visibility:visible !important;
}
.hero__slide ._container,
.hero__slide-content,
.hero__slide-title,
.hero__slide-descr,
.hero__slide-btn { position:relative; z-index:3 !important; opacity:1 !important; transform:none !important; visibility:visible !important; }
.hero__bottom { position:absolute !important; z-index:4 !important; opacity:1 !important; }
.hero__slide-title { color:#fff !important; }
.hero__slide-descr { color:#bfbfbf !important; }

/* Original-like header catalog with icons */
.header__catalog ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  list-style: none;
}
.header__catalog li a {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}
.header__catalog li a svg {
  display: block;
  flex-shrink: 0;
}
.header__catalog li a span {
  display: block;
  max-width: 110px;
  line-height: 1.25;
}
.header__user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  max-width: 70px;
}
.header__busket,
.header__search {
  position: relative;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__search-form {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 30px;
  background: #16241F;
}
.header__search-form.is-open,
.header__search-form:not([hidden]) {
  display: flex;
}
.header__search-form[hidden] {
  display: none !important;
}
.header__search-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  font-family: inherit;
}
.header__search-close {
  background: none;
  border: none;
  color: #bfbfbf;
  font-size: 24px;
  cursor: pointer;
}
.header__socials {
  display: flex;
  align-items: center;
  gap: 2px;
}
.header__socials-item {
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .header__catalog-open {
    display: none !important;
  }
  .header__burger {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .header__catalog {
    display: none !important;
  }
  .header__socials {
    display: none;
  }
}
.mobile-menu__cats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 12px 0;
}
.mobile-menu__cats a {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
}


/* Hero pager labels on the left (theme puts them on the right) */
.hero__bottom ._container {
  flex-direction: row-reverse;
}

.hero__slider-pagination {
  align-items: flex-start;
}
/* Desktop top nav: one line, vertically centered — no jagged multi-line links */
@media (min-width: 1000px) {
  .header__top {
    align-items: center;
  }
  .header__menu ul li a {
    white-space: nowrap;
    align-items: center;
    line-height: 1.2;
  }
}

@media (max-width: 999px) {
  .header__menu {
    visibility: hidden;
    pointer-events: none;
  }
  .header.header-menu-opened .header__menu {
    visibility: visible;
    pointer-events: auto;
  }
  .header.header-menu-opened .header__menu ul {
    flex-wrap: wrap;
  }
  .header.header-menu-opened .header__menu ul li a {
    white-space: normal;
  }
}

.header__logo img,
.footer__logo img,
.mobile-menu__head img {
  width: auto;
  max-height: 50px;
  height: auto;
  object-fit: contain;
}
.footer__logo img {
  max-height: 56px;
}

.noscript-banner {
  background: #0F1916;
  color: #fff;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  padding: 16px;
  background: rgba(15, 25, 22, 0.96);
  border-top: 1px solid rgba(42, 155, 143, 0.35);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
}
.cookie-banner__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner__inner p {
  flex: 1 1 320px;
  margin: 0;
  color: #bfbfbf;
  font-size: 14px;
  line-height: 1.45;
}
.cookie-banner__inner a {
  color: #2a9b8f;
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-banner__actions .btn,
.cookie-banner__actions .btn-2 {
  padding: 12px 20px;
  font-size: 14px;
}

@media (max-width: 767px) {
  .hero__slide {
    min-height: 520px !important;
  }
}

/* === FORCE FULL DARK (no white pages) === */
html, body, .body, main, main.main, main.main.main-empty,
#content, #common-home, .hits, .advantages, .zones-section,
.categories, .footer, .blog, .page, .order, .catalog,
.product, .productAbout, .breadcrumbs, .about, .contacts,
.delivery, .return, .privacy, .cart, .popup {
  background: #0F1916 !important;
  background-color: #0F1916 !important;
}
.zones-section__title, .hits__title, .advantages__title, .title-2, .title {
  color: #fff !important;
}
