

/* Start:/local/templates/main/assets/css/style.css?178583671738012*/
/* ============================================================
   шрифты
   ============================================================ */
@font-face {
    font-family: 'Hauora';
    src: url('/local/templates/main/assets/fonts/Hauora/Hauora-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-display: swap;
}
@font-face {
    font-family: 'Hauora';
    src: url('/local/templates/main/assets/fonts/Hauora/Hauora-Light.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
}
@font-face {
    font-family: 'Hauora';
    src: url('/local/templates/main/assets/fonts/Hauora/Hauora-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Hauora';
    src: url('/local/templates/main/assets/fonts/Hauora/Hauora-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'Hauora';
    src: url('/local/templates/main/assets/fonts/Hauora/Hauora-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: 'Hauora';
    src: url('/local/templates/main/assets/fonts/Hauora/Hauora-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: 'Hauora';
    src: url('/local/templates/main/assets/fonts/Hauora/Hauora-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-display: swap;
}
@font-face {
    font-family: 'Gentium Book Plus';
    src: url('/local/templates/main/assets/fonts/Gentium/GentiumBookPlus-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gentium Book Plus';
    src: url('/local/templates/main/assets/fonts/Gentium/GentiumBookPlus-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Gentium Book Plus';
    src: url('/local/templates/main/assets/fonts/Gentium/GentiumBookPlus-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gentium Book Plus';
    src: url('/local/templates/main/assets/fonts/Gentium/GentiumBookPlus-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* ============================================================
   цвета
   ============================================================ */
:root {
    --color-primary: #415858;
    --color-primary-90: rgba(65, 88, 88, 0.90);
    --color-bg: #edf1f1;
    --color-card-bg: #2A6F6F0D;
    --color-border: rgba(73, 98, 98, 0.25);
    --color-accent: #EE940C;
    --color-danger: #e50000;
    --color-link-orange: #ee940c;

    --font-hauora: 'Hauora', sans-serif;
    --font-gentium: 'Gentium Book Plus', serif;

    --max-width: 1200px;
    --header-height: 60px;
}

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

html {
    scroll-behavior: smooth;
}

:target {
    scroll-margin-top: 10vh;
}

body {
    font-family: var(--font-hauora);
    font-weight: 500;
    color: var(--color-primary);
    background-color: var(--color-bg);
    background-image: url('/local/templates/main/assets/img/background.jpg');
    min-height: 100vh;
}

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

a:hover { 
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

img, svg {
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-hauora);
}

.text-gentium-heading {
    font-family: var(--font-gentium);
    font-style: italic;
    font-weight: 400;
}

.text-nav {
    font-family: var(--font-hauora);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary-90);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

body:has(.product-page) .header-wrapper {
      background-color: #edf1f1;
  }

  .product-page,
  .product-stats,
  .reviews-section,
  .description-section {
      background-color: #edf1f1;
      box-shadow: 0 0 0 100vmax #edf1f1;
      clip-path: inset(0 -100vmax);
  }

  .content-card blockquote {
      padding: 0 20px;
      font-family: var(--font-hauora);
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      color: var(--color-primary);
  }

body {
    height: 100dvh;
}

.content { 
    display: flex;
    flex-direction: column;
    height: 100%;
}

main {
    flex: 1;
}

/* ============================================================
   хэдер
   ============================================================ */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    position: relative;
    z-index: 10;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}

.header-wrapper {
    width: 100%;
}

.site-header .logo img {
    height: 40px;
    width: auto;
}

.site-header .top-menu__list {
	margin-bottom: unset !important;
}

.site-nav .top-menu__list {
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
}

.site-nav .top-menu__list a {
    font-family: var(--font-hauora);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary-90);
    transition: color 0.2s ease;
    padding: 3px 8px;
    border-radius: 4px;
    transition: background 0.2s ease
}

.site-nav .top-menu__list a:hover {
    color: var(--color-primary);
    background: #2A6F6F0D;
}

.site-nav .top-menu__list a.nav-active {
    color: var(--color-primary);
    background: #2A6F6F0D;
}

.site-nav .top-menu__list a.nav-cart {
    color: var(--color-primary-90);
}

.site-nav .top-menu__list a.nav-cart-filled {
    background-color: var(--color-accent);
    color: var(--color-bg);
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.site-nav .top-menu__list a.nav-cart-filled:hover {
    background-color: #e08700;
}

.top-menu__item--parent::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    height: 8px;
    display: block;
}

.top-menu__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 9999;
    display: none;
    min-width: 180px;
    margin: 0;
    padding: 16px;
    list-style: none;
    background: var(--color-bg);
    box-shadow: 0px 2px 3px 3px rgba(65, 88, 88, 0.05);
    border-radius: 4px;
}

.top-menu__dropdown-link {
    display: block;
    text-decoration: none;
    white-space: nowrap;
    font-family: var(--font-hauora);
    font-weight: 600;
    font-size: 16px;
    text-transform: lowercase;
}

.top-menu__dropdown-link:hover {
    background: #f5f5f5;
}

.top-menu__item--parent:hover > .top-menu__dropdown {
    display: block;
}

/* ============================================================
  футер
   ============================================================ */
.site-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
}

.site-footer img {
    height: 43px;
    width: auto;
}

/* ============================================================
   иконки
   ============================================================ */
.icon {
    display: inline-block;
    width: 13px;
    height: 13px;
    object-fit: contain;
    flex-shrink: 0;
}

.icon-sm {
    width: 12px;
    height: 12px;
}

.icon-md {
    width: 16px;
    height: 16px;
}

.icon-lg {
    width: 20px;
    height: 20px;
}

/* ============================================================
   INDEX
   ============================================================ */
.hero {
    position: relative;
    padding-top: 60px;
    padding-bottom: 0;
}

.hero__title {
    font-family: var(--font-gentium);
    font-style: normal;
    font-weight: 400;
    font-size: 34px;
    line-height: 1.25;
    color: var(--color-primary);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 0 24px;
}

.hero__gradient {
    height: 100px;
    background: linear-gradient(180deg,
        rgba(237, 241, 241, 0.2) 0%,
        rgba(237, 241, 241, 0.7) 45%,
        rgba(237, 241, 241, 1) 100%);
    margin-top: -30px;
}

.bg__bottom {
    height: 80px;
    background: #EDF1F1;
}

.products-section {
    padding: 0 24px 60px;
    max-width: var(--max-width);
    margin: 0 auto;
    background-color: #edf1f1;
    box-shadow: 0 0 0 100vmax #edf1f1; 
    clip-path: inset(0 -100vmax);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.product-card {
    display: flex;
    flex-direction: column;
    border-radius: 6px;
}

.product-card__link {
      display: flex;
      flex-direction: column;
      height: 100%;
      color: inherit;
      text-decoration: none;
  }

.product-card__image-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 200px;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.product-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card__image-wrap img {
    transform: scale(1.04);
}

.product-card__body {
    background-color: var(--color-card-bg);
    border-radius: 6px;
    padding: 68px 24px 24px;
    margin-top: -70px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-card__body a { 
	display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-card__name {
    font-family: var(--font-hauora);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
}

.product-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.product-card__rating,
.product-card__purchases {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-hauora);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
}

.product-card__rating img {
    width: 13px;
    height: 12px;
    filter: none;
}

.product-card__purchases img {
    width: 12px;
    height: 10px;
}

.product-card__desc {
    font-family: var(--font-hauora);
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    color: var(--color-primary);
    flex: 1;
}

.product-card__btn {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    font-family: var(--font-hauora);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: var(--color-primary);
    border-radius: 6px;
    background: var(--color-card-bg);
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    margin-top: 16px;
}

.product-card__btn:hover, .product-card:hover .product-card__btn { 
    background-color: #2a6f6f26;

}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.product-page {
    
    background: #edf1f1;
    padding: 32px 24px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-layout {
    
    display: grid;
    grid-template-columns: 55% 1fr;
    gap: 48px;
    align-items: start;
}

/* Gallery */
.product-gallery {
    display: flex;
    gap: 16px;
    position: relative;
}

.product-gallery__thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.product-gallery__thumb {
    width: 96px;
    height: 96px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s ease;
    background-color: var(--color-card-bg);
}

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

.product-gallery__thumb.active,
.product-gallery__thumb:hover {
    border-color: var(--color-accent);
}

.product-gallery__main {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--color-card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

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

.product-gallery__nav {
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 50%;
    transform: translateY(-50%);
    background: #fff;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.product-gallery__nav:hover {
    opacity: 0.8;
}

.product-gallery__nav img {
    width: 100%;
    height: 100%;
}

.product-gallery__nav--prev {
    left: 120px;
}

.product-gallery__nav--next {
    right: 16px;
}


.product-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-info__title {
    font-family: var(--font-gentium);
    font-style: italic;
    font-weight: 400;
    font-size: 36px;
    line-height: 1.1;
    color: var(--color-primary);
}

.product-info__label {
    font-family: var(--font-hauora);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.variant-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.variant-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.variant-chip {
    min-width: 42px;
    padding: 6px 10px;
    background-color: rgba(42, 111, 111, 0.05);
    border: 2px solid rgba(42, 111, 111, 0.01);
    border-radius: 6px;
    background: #2A6F6F0D;
    font-family: var(--font-hauora);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
    cursor: pointer;
    text-align: center;
    transition: border-color 0.2s ease;
}

.variant-chip:hover {
    border-color: var(--color-accent);
    background: #2A6F6F26;
}

.variant-chip.selected {
    border-color: var(--color-accent);
    border-width: 2px;
}

.product-info__price-label {
    font-family: var(--font-hauora);
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 5px;
    color: var(--color-primary);
}

.product-info__price {
    font-family: var(--font-hauora);
    font-size: 30px;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1;
}

.product-info__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-add-to-cart {
    padding: 12px 16px;
    background-color: var(--color-accent);
    color: var(--color-bg);
    font-family: var(--font-hauora);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-add-to-cart[hidden] {
    display: none !important;
}

.btn-add-to-cart:hover {
    background-color: #e08700;
}

.cart-counter { 
    display: grid;
    grid-template-columns: 48px 56px 48px;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    max-width: 160px;
}

.cart-counter[hidden] {
      display: none !important;
  }

.cart-counter__btn { 
    background: #EE940C;
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.cart-counter__btn img { 
    width: 14px;
    height: 14px;
    filter: invert(100%)
}

.cart-counter__btn svg{ 
    width: 14px;
    height: 14px;
    fill: #ffffff
}

.cart-counter__value { 
    font-size: 14px;
    font-family: var(--font-hauora);
    font-weight: 800;
    color: #EE940C;
    margin: 0 20px;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.btn-go-to-cart {
    padding: 12px 16px;
    background: transparent;
    color: var(--color-primary);
    font-family: var(--font-hauora);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    border-radius: 4px;
    background-color: #2A6F6F0D;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-align: center;
}

.btn-go-to-cart:hover {
    background-color: #2a6f6f26;
}

.product-info__trust {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-hauora);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
}

.trust-item img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(30%) sepia(12%) saturate(900%) hue-rotate(140deg) brightness(90%);
}
.trust-items 
{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 0 0 16px 0;
}

.product-stats {
    display: flex;
    background-color: #edf1f1;
    justify-content: center;
    align-items: center;
    gap: 48px;
    padding: 28px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-stats__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-hauora);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

.product-stats__item img {
    width: 13px;
    height: 13px;
}

.reviews-section {
    padding: 0 24px 40px;
    background-color: #edf1f1;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.reviews-track-wrapper {
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.review-card {
    display: flex;
    gap: 16px;
    background-color: var(--color-card-bg);
    border-radius: 8px;
    padding: 16px;
    min-width: calc(33.333% - 14px);
    flex-shrink: 0;
}

.review-card__image {
    width: 96px;
    height: 120px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.review-card__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-card__stars {
      display: flex;
      align-items: center;
      gap: 2px;
  }

  .review-card__stars img,
  .review-card__star-empty {
      width: 13px;
      height: 13px;
      flex-shrink: 0;
  }

  .review-card__star-empty {
      display: inline-block;
      background-color: transparent;
      border: 1.5px solid #f0a000;
      clip-path: polygon(
          50% 0%,
          61% 35%,
          98% 35%,
          68% 56%,
          79% 91%,
          50% 70%,
          21% 91%,
          32% 56%,
          2% 35%,
          39% 35%
      );
  }

.review-card__author {
    font-family: var(--font-hauora);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
}

.review-card__platform {
    font-family: var(--font-hauora);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
}

.review-card__text {
    font-family: var(--font-hauora);
    font-size: 12px;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1.5;
    margin-top: 4px;
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.reviews-nav__btn {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: var(--color-card-bg);
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    font-family: var(--font-hauora);
}

.reviews-nav__btn:hover {
    background-color: #2a6f6f26;
}

.description-section {
    background-color: #edf1f1;
    padding: 0 24px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.description-section__title {
    font-family: var(--font-hauora);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.description-columns {
    column-count: 2;
    column-gap: 40px;
    column-fill: balance;
    font-family: var(--font-hauora);
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    color: var(--color-primary);
}

.basket-items-list-item-removed-container {
    margin-bottom: 10px;
}

.basket-items-list-item-remove {
    display: none;
}

.description-columns p,
.description-text {
    font-family: var(--font-hauora);
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    margin: 0 0 10px;
    color: var(--color-primary);
}

.description-columns h2,
.description-columns h3,
.description-columns h4,
.description-subtitle {
    font-family: var(--font-hauora);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 8px;
    break-after: avoid;
}

.description-columns ul {
    list-style-type: disc;
}

.description-columns ol {
    list-style-type: decimal;
}

.description-columns ul,
.description-columns ol,
.description-list {
  padding-left: 20px;
  margin: 0 0 14px;
  break-inside: avoid;
}

.description-columns li,
.description-list li {
    font-family: var(--font-hauora);
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.description-columns > *,
.description-columns li {
    break-inside: avoid;
}

.description-columns br {
    content: "";
}

.description-wrap {
    position: relative;
}

.description-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg,
        rgba(237, 241, 241, 0.1) 0%,
        rgba(237, 241, 241, 0.4) 15%,
        rgba(237, 241, 241, 0.9) 30%,
        rgba(237, 241, 241, 1) 45%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.description-fade.hidden {
    opacity: 0;
}

.description-toggle {
    display: inline-block;
    margin-top: 12px;
    font-family: var(--font-hauora);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-link-orange);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: opacity 0.2s ease;
}

.description-toggle:hover {
    opacity: 0.8;
}

.faq-section {
    padding: 0 24px 125px;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-section__title {
    font-family: var(--font-hauora);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 40px;
    background-color: #edf1f1;
    box-shadow: 0 0 0 100vmax #edf1f1;
    clip-path: inset(0 -100vmax);
    padding-bottom: 16px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 1089px;
    margin: 0 auto;
}

.faq-item {
    border-radius: 4px;
    border: 2px solid var(--color-border);
    background-color: #EDF1F1;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item:hover, .faq-item:hover .faq-item__question, .faq-item:hover .faq-item__icon {
    border-color: #EE940C;
    color: #EE940C;
}

.faq-item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 26px;
    cursor: pointer;
    gap: 16px;
    width: 100%;
}

.faq-item__question {
    font-family: var(--font-gentium);
    font-style: italic;
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    color: var(--color-primary);
    transition: color 0.2s ease;
}

.faq-item__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(30%) sepia(12%) saturate(900%) hue-rotate(140deg) brightness(90%);
    transition: filter 0.05s ease;
}

.faq-item:hover .faq-item__icon {
    filter: brightness(0) saturate(100%) invert(67%) sepia(70%) saturate(2847%) hue-rotate(357deg) brightness(99%) contrast(89%);
}

.faq-item__body {
    display: none;
    padding: 0 26px 24px;
}

.faq-item__body.open {
    display: block;
}

.faq-subsection {
    margin-bottom: 16px;
}

.faq-subsection-title {
    font-family: var(--font-hauora);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.faq-item__body {
    font-family: var(--font-hauora);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.faq-body-list {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-body-list li {
    font-family: var(--font-hauora);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-primary);
}

.page-heading {
    font-family: var(--font-gentium);
    font-style: italic;
    font-weight: 400;
    font-size: 36px;
    line-height: 1.1;
    color: var(--color-primary);
    text-align: center;
    padding: 40px 24px 32px;
    margin-top: 0;
    margin-bottom: 32px;
}

/* ============================================================
   404
   ============================================================ */
.expando-404-page {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px 60px;
}

.expando-404-page__inner {
    max-width: 1400px;
    margin: 0 auto;
}

.expando-404-page__title {
    font-family: var(--font-gentium);
    font-style: italic;
    font-weight: 400;
    font-size: 36px;
    line-height: 1.1;
    color: var(--color-primary);
    text-align: center;
    padding: 40px 24px 32px;
    margin: 0;
}

.expando-empty-state {
    max-width: 640px;
    margin: 0 auto;
    padding: 64px 24px;
    border-radius: 6px;
    background: var(--color-card-bg);
    text-align: center;
    font-family: var(--font-hauora);
}

.expando-empty-state__mark {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: rgba(240, 160, 0, .16);
    position: relative;
}

.expando-empty-state__mark--question::before {
    content: "?";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-hauora);
    font-size: 28px;
    font-weight: 700;
    line-height: 56px;
    color: var(--color-accent);
}

.expando-empty-state__text {
    margin: 0 0 12px;
    font-family: var(--font-hauora);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-primary);
}

.expando-empty-state__desc {
    margin: 0;
    font-family: var(--font-hauora);
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    color: var(--color-primary);
}

.expando-empty-state__desc a {
    color: var(--color-link-orange);
    font-weight: 700;
    text-decoration: none;
}

.expando-empty-state__desc a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .expando-404-page {
        padding: 0 16px 40px;
    }

    .expando-404-page__title {
        font-size: 28px;
        padding: 32px 16px 24px;
    }

    .expando-empty-state {
        padding: 48px 20px;
    }

    .expando-empty-state__text {
        font-size: 20px;
    }
}

.content-wrapper { 
    max-width: 960px;
    margin: 0 auto 60px;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    background-color: var(--color-bg);
    text-align: center;
    padding: 48px 0 96px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px 0;
}

.sale_order_full_table td { 
    font-family: var(--font-hauora);
    font-weight: 400;
    font-size: 16px;
}

.sale_order_full_table td a { 
    text-decoration: underline;
}

.content-card {
    max-width: 960px;
    margin: 0 auto 60px;
    padding: 32px 40px;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    background-color: var(--color-bg);
}

.content-card p {
    font-family: var(--font-hauora);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.content-card h2 {
    font-family: var(--font-hauora);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 24px 0 12px;
}

.content-card ol {
    list-style: decimal;
    padding-left: 20px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.content-card ol li {
    font-family: var(--font-hauora);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-primary);
}

.content-card ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.content-card ul li {
    font-family: var(--font-hauora);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-primary);
}

.content-card ul ul {
    margin-top: 6px;
    margin-bottom: 0;
    list-style: disc;
}

.content-card img { 
    max-width: 100%;
    height: auto;
}

.contact-block {
    margin-top: 24px;
    padding-top: 0;
}

.contact-block p {
    font-family: var(--font-hauora);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.contact-info {
    font-family: var(--font-hauora);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-primary);
}

.trust-link {
    font-weight: 600;
    text-underline-offset: 2px;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox[hidden] { display: none; }

.lightbox__overlay {
    position: absolute;
    inset: 0;
    background-color: #0d1212;
    opacity: 0.96;
}

.lightbox__thumbs {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2;
}

.lightbox__thumb {
    width: 100px;
    height: 100px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    background: rgba(255,255,255,0.08);
    padding: 0;
    transition: border-color 0.2s ease;
    flex-shrink: 0;
}
.lightbox__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lightbox__thumb.active,
.lightbox__thumb:hover {
    border-color: var(--color-accent);
}

.lightbox__main {
    position: relative;
    z-index: 2;
    width: 673px;
    max-width: calc(100vw - 280px);
    height: 784px;
    max-height: 90vh;
    margin-left: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox__main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s ease;
}
.lightbox__close:hover { opacity: 0.8; }
.lightbox__close img { width: 100%; height: 100%; }

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}
.lightbox__nav:hover { opacity: 0.8; }
.lightbox__nav img { width: 100%; height: 100%; }
.lightbox__nav--prev { left: 132px; }
.lightbox__nav--next { right: 20px; }

/* ============================================================
   бургер
   ============================================================ */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 4px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}

.burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============================================================
   мобилка
   ============================================================ */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    align-items: center;
    justify-content: center;
    background-color: rgba(30, 45, 45, 0.55);
    backdrop-filter: blur(2px);
    padding: 24px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav__dialog {
    position: relative;
    background-color: var(--color-bg);
    background-size: 32px 32px;
    border-radius: 14px;
    width: 100%;
    max-width: 300px;
    padding: 8px 0 28px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 40px rgba(30, 45, 45, 0.22);
    animation: modalIn 0.2s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.94) translateY(-10px); }
    to   { opacity: 1; transform: scale(1)    translateY(0); }
}

.mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 4px 12px;
    height: auto;
    flex-shrink: 0;
}

.mobile-nav__close {
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    transition: opacity 0.2s ease;
}

.mobile-nav__close:hover {
    opacity: 0.7;
}

.mobile-nav__close img {
    width: 100%;
    height: 100%;
    display: block;
    filter: brightness(0) saturate(100%) invert(30%) sepia(12%) saturate(900%) hue-rotate(140deg) brightness(90%);
}

.mobile-nav__links {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 24px;
}

.mobile-nav__links a {
    font-family: var(--font-hauora);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary-90);
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-nav__links a:hover {
    color: var(--color-primary);
}

.mobile-nav__links a.nav-active {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.mobile-nav__links a.nav-cart {
    color: var(--color-primary-90);
}

.mobile-nav__links a.nav-cart-filled {
    background-color: var(--color-accent);
    color: var(--color-bg);
    padding: 10px 32px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.mobile-nav__links a.nav-cart-filled:hover {
    background-color: #e08700;
    color: var(--color-bg);
}


/* ============================================================
   медиа
   ============================================================ */
@media (max-width: 900px) {
    .content-card, .content-wrapper {
        max-width: 90%;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .description-columns {
        column-count: 1;
        column-gap: 0;
    }

    .reviews-section {
        overflow: hidden;
    }

    .review-card {
        min-width: calc(100% - 0px);
    }
}

@media (max-width: 730px) {
    .site-nav {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    /* Index */
    .products-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 40px;
    }

    .hero__title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .products-section {
        padding: 0 16px 40px;
    }

    /* Product */
    .product-page {
        padding: 20px 16px 40px;
    }

    .product-gallery {
        flex-direction: column;
    }

    .product-gallery__thumbs {
        flex-direction: row;
        overflow-x: auto;
        gap: 8px;
        order: 2;
        padding-bottom: 4px;
    }

    .product-gallery__thumb {
        width: 64px;
        height: 64px;
        flex-shrink: 0;
    }

    .product-gallery__main {
        order: 1;
        min-height: 260px;
    }

    .product-gallery__main img {
        max-height: 280px;
    }

    .product-info__actions {
        flex-direction: column;
    }

    .trust-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .trust-items .trust-item:last-child {
        grid-column: 1 / -1;
    }

    .product-stats {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        padding: 20px 16px;
    }

    .reviews-section {
        padding: 0 16px 32px;
    }

    .description-section {
        padding: 0 16px 32px;
    }

    .faq-section {
        padding: 0 16px 40px;
    }

    .faq-item__header {
        padding: 14px 16px;
    }

    .faq-item__body {
        padding: 0 16px 18px;
    }

    .faq-item__question {
        font-size: 17px;
    }

    .content-card {
        padding: 20px 16px;
    }

    .lightbox__thumbs {
        display: none;
    }

    .lightbox__main {
        width: 100vw;
        max-width: 100vw;
        margin-left: 0;
        height: 90vh;
        max-height: 90vh;
    }

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

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

@media (max-width: 400px) {
    .hero__title {
        font-size: 20px;
    }

    .product-info__title {
        font-size: 28px;
    }

    .product-info__price {
        font-size: 24px;
    }

    .faq-item__question {
        font-size: 15px;
    }

    .mobile-nav__links {
        gap: 24px;
    }

    .mobile-nav__links a {
        font-size: 17px;
    }

    .product-gallery__main {
        min-height: 220px;
    }

    .trust-items {
        grid-template-columns: 1fr;
    }

    .trust-items .trust-item:last-child {
        grid-column: auto;
    }
}

/* End */
/* /local/templates/main/assets/css/style.css?178583671738012 */
