/* global-styles.css подключается отдельным <link> с cache-bust в header.blade.php */
/* @import url("responsive-1080x1920.css"); */

/* Переменные темы заданы в global-styles.css (:root), дубликаты закомментированы:
  --background-white — то же, что --bg-slate-50 через var(--bg-slate-50);
  --background — совпадает с градиентом .bg-brand-gradient / .text-brand-gradient;
  --text-color — совпадает с color у body в global-styles;
  --border-color, --box-shadow — совпадают с .product-card:hover и др.;
  --hover-color — совпадает с акцентом #dc2626 в global-styles.
*/
/* :root {
  --background-white: #f8fafc;
  --background: linear-gradient(to right, #e8354a, #d41229);
  --text-color: #111827;
  --black: #212529;
  --white: #ffffff;
  --grey: #6c757d;
  --red: #dc3545;
  --border-color: #fca5a5;
  --box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  --hover-color: #dc2626;
} */
/* * {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
} */
*,
::after,
::before {
    box-sizing: border-box;
}
@media (width <= 480px) {
    body {
        padding-inline: 16px;
    }
}
input,
textarea,
select,
[contenteditable="true"] {
    caret-color: auto;
}
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    color: var(--text-color);
    background: #f8f8ff;
    font-family:
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial,
        sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
body.catalog-menu-open {
    overflow: hidden;
}
html:has(body.catalog-menu-open) {
    overflow: hidden;
}
#site-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 24, 39, 0.45);
    backdrop-filter: blur(3px);
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}
#site-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.site-preloader__spinner {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.28);
    border-top-color: #dc2626;
    animation: site-preloader-spin 0.9s linear infinite;
}
@keyframes site-preloader-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/* Infokiosk Chromium viewport profiles */
@media screen and (min-width: 1000px) and (max-width: 1200px) and (orientation: portrait) and (min-height: 1600px) {
    body * {
        caret-color: transparent;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}
@media screen and (min-width: 1000px) and (max-width: 1200px) and (orientation: portrait) and (min-height: 1600px),
    screen and (min-width: 1700px) and (max-width: 2100px) and (min-height: 900px) and (max-height: 1200px) {
    html,
    body {
        overflow-x: hidden;
    }
    body {
        background: #d8d8d8;
        min-height: 100%;
    }
}
main {
    flex: 1;
    margin-top: 69px;
    padding-top: 41px;
}
/* Global Styles */
.container {
    padding-inline: 12px;
    margin-inline: auto;
    width: 100%;
    max-width: 1320px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: inherit;
}

@media (max-width: 1080px) {
    .container {
        max-width: 960px;
        padding-inline: 12px;
    }
}
.row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
}
@media (width <= 480px) {
    .row {
        margin-right: 0;
        margin-left: 0;
    }
}
.row .col-sm-12,
.row .col-12,
.row .col-md-12,
.row .col-lg-8,
.row .col-lg-9,
.row .col-lg-7,
.row .col-lg-6,
.row .col-md-6,
.row .col-lg-5,
.row .col-lg-4,
.row .col-4,
.row .col-lg-3,
.row .col-lg-2 {
    flex: 0 0 auto;
}
.row .col-sm-12,
.row .col-md-12,
.row .col-12 {
    width: 100%;
}
.row .col-lg-8 {
    width: 66.66666667%;
}
.row .col-lg-9 {
    width: 75%;
}
.row .col-lg-7 {
    width: 58.33333333%;
}
.row .col-lg-6,
.row .col-md-6 {
    width: 50%;
}
.row .col-md-6 {
    padding-inline: 8px;
}
.row .col-lg-5 {
    width: 41.66666667%;
}
.row .col-lg-4,
.row .col-md-4,
.row .col-4 {
    width: 33.33333333%;
}
.row .col-lg-3 {
    width: 25%;
}
.row .col-lg-2 {
    width: 16.66666667%;
}
@media (min-width: 576px) {
    .row .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
    }
    .row .col-sm {
        flex: 1 0 0%;
    }
}
.flex-grow-1 {
    flex-grow: 1;
}
.flex-sm-column {
    flex-direction: column;
}
.align-items-sm-end {
    align-items: flex-end;
}
.d-sm-block {
    display: block;
}
.ps-2 {
    padding-inline: 8px;
}
.rounded-3 {
    border-radius: 8px;
}
a {
    text-decoration: none;
    cursor: pointer;
}
button {
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: all 0.3s ease;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}
h4 {
    font-size: 24px;
}
h5 {
    font-weight: 700;
}
.fw-medium {
    font-weight: 500;
}
ul {
    list-style: none;
    display: flex;
    padding-left: 0;
    margin: 0;
}
.text-gradient {
    background: linear-gradient(to right, #e8354a, #d41229);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.form-control {
    display: block;
    width: 100%;
    padding: 6px 12px;
    line-height: 1.5;
    color: var(--black);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-clip: padding-box;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    transition:
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
}
.form-control-lg {
    padding: 8px 16px;
    font-size: 20px;
    min-height: calc(24px + 16px + calc(1 * 2));
}
@media (max-width: 1080px) {
    .form-control {
        border: 1px solid #d8d8d8;
    }
}
/* Liquid Glass */
.glass {
    background-color: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
/* Animation on scroll — см. .reveal-on-scroll в global-styles.css */
/* .reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
  .is-visible {
    opacity: 1;
    transform: translateY(0);
  }
} */
.flexBox {
    display: flex;
    align-items: center;
}
.d-flex {
    display: flex;
}
.d-block {
    display: block;
}
.align-items-center {
    align-items: center;
}
.gap-3 {
    gap: 16px;
}
.gap-2 {
    gap: 8px;
}
.text-muted {
    color: rgba(33, 37, 41, 0.749);
}
.mi-auto {
    margin-inline: auto;
}
.mb-1 {
    margin-bottom: 4px;
}
.mb-4 {
    margin-bottom: 24px;
}
.mt-1 {
    margin-top: 4px;
}
.small {
    font-size: 14px;
}
.fw-bold {
    font-weight: 700;
}
.text-dark {
    color: var(--black);
}
.text-secondary {
    color: var(--grey);
}
.text-danger {
    color: var(--red);
}
.text-red {
    color: var(--red);
}
.py-3 {
    padding-block: 16px;
}
.w-100 {
    width: 100%;
}
.w-50 {
    width: 50%;
}
.justify-content-center {
    justify-content: center;
}
/* .btn-brand — см. global-styles.css */
/* .btn-brand {
  background: var(--background);
  color: var(--white);
  border: none;
  transition: all 0.3s ease;
  :hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
  }
} */
.rounded-pill {
    border-radius: 50rem;
}
/* .rounded-4 — см. global-styles.css */
/* .rounded-4 {
  border-radius: 16px;
} */
.p-md-5 {
    padding: 48px;
}
.hide {
    width: 0;
    opacity: 0;
    visibility: hidden;
    height: 0;
    border: 0;
    padding: 0;
    display: none;
}
.bg-light {
    background-color: #f8f9fa;
}
@media (max-width: 1080px) {
    .bg-light {
        background-color: #d7d7d7 !important;
    }
    .border-light {
        border-color: #d8d8d8 !important;
    }
}
.border-light {
    border-color: #f8f9fa;
}
.bg-white {
    background-color: var(--white);
}
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
/* Breadcrumbs */
ol.breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    font-weight: 500;
    margin-bottom: 24px;
    padding-left: 0;
}
ol.breadcrumb li {
    position: relative;
}
ol.breadcrumb li:not(:first-child) {
    padding-left: 8px;
}
ol.breadcrumb li:not(:first-child)::before {
    content: "/";
    float: left;
    padding-right: 8px;
    color: rgba(33, 37, 41, 0.749);
}
ol.breadcrumb li:last-child a {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 250px;
    color: var(--black);
}
ol.breadcrumb li:not(:last-child) a {
    color: var(--grey);
}
/* End Global Styles */
/* Header */
nav.navbar {
    padding-block: 8px;
    border-bottom: 1px solid #bebebe;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.075);
}
nav.navbar.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

/* Кнопка «Назад» — только киоск 1080x1920, поверх шапки без сдвига layout */
.btnBack {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: var(--red);
    -webkit-tap-highlight-color: transparent;
}
.btnBack i,
.btnBack svg {
    width: 28px;
    height: 28px;
    color: var(--red);
    stroke: var(--red);
}
@media screen and (min-width: 1000px) and (max-width: 1200px) and (orientation: portrait) and (min-height: 1600px),
    screen and (min-width: 1700px) and (max-width: 2100px) and (min-height: 900px) and (max-height: 1200px) {
    .btnBack:not([hidden]) {
        display: inline-flex;
        position: fixed;
        top: 20px;
        left: 16px;
        z-index: 1035;
    }
}

nav.navbar ul {
    margin-block: 3px;
}
nav.navbar ul li {
    padding: 8px 16px;
}
nav.navbar ul li a {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    color: var(--grey);
}
@media (width <= 1080px) {
    nav.navbar ul li a {
        font-size: 14px;
        line-height: 22px;
    }
}
nav.navbar ul li a.text-red {
    color: var(--red);
}
nav.navbar ul li a.active {
    font-weight: 700;
    color: var(--black);
}
nav.navbar .flexBox {
    gap: 16px;
}
nav.navbar .flexBox button:not(:first-child) {
    margin-left: 8px;
}
nav.navbar .flexBox button.btnCart {
    border-radius: 50rem;
    font-weight: 600;
}
nav.navbar .flexBox button.btnCart.cartFull {
    background: var(--background);
    color: var(--white);
    padding: 8px 16px;
}
nav.navbar .flexBox button.btnCart.cartFull span {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}
nav.navbar .flexBox button.btnCart.cartFull svg {
    width: 18px;
    height: 18px;
}
nav.navbar .flexBox button.btnCart.cartEmpty {
    background: transparent;
    color: var(--black);
}
nav.navbar .flexBox button.btnCart.cartEmpty svg {
    width: 24px;
    height: 24px;
}
nav.navbar .flexBox button.btnCart.cartEmpty span {
    opacity: 1;
    visibility: hidden;
    transition: all 0.3s ease;
}
.mobile-fixed-top,
.mobile-fixed-bottom {
    display: none;
}
.catalogLink {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    color: var(--black);
}
.menuCatalog {
    display: block;
    position: fixed;
    top: 92px;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    border: 0;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    background: #f8f8ff;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-16px);
    pointer-events: none;
    transition:
        max-height 0.35s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
    z-index: 1025;
    padding-block: 24px;
}
.menuCatalog.is-open {
    max-height: calc(100vh - 92px);
    opacity: 1;
    transform: none;
    pointer-events: auto;
    overflow-y: auto;
    overflow-x: visible;
    padding-inline: 16px;
}
.mainMenu {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    min-height: calc(100vh - 92px);
    overflow: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: auto;
}
.mainMenu::-webkit-scrollbar {
    display: none;
}
.mainMenu .mainCategory {
    padding-block: 15px;
    padding-inline: 16px;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: initial;
}
.mainMenu .mainCategory:hover {
    background-color: #fbebec;
}
.mainMenu .mainCategory a.categoryLink {
    font-weight: 700;
    color: var(--black);
    transition: all 0.3s ease;
}
.mainMenu .mainCategory .categoryLink.active {
    color: #e32c41;
}
.mainMenu .mainCategory .secondMenu {
    display: none;
    position: fixed;
    top: 104px;
    transform: translateX(-50%);
    width: min(1200px, calc(100vw - 80px));
    height: calc(100vh - 128px);
    border-radius: 16px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1040;
    background: transparent;
    border: none;
}
.secondMenu picture {
    max-width: 1000px;
    cursor: pointer;
}
.mainMenu .mainCategory:hover .secondMenu,
.mainMenu .mainCategory.is-active .secondMenu,
.mainMenu .mainCategory .categoryLink.active + .secondMenu {
    /* display: block; */
    display: flex;
    flex-direction: column;
    left: 70%;
    right: auto;
    transform: translateX(-50%);
    width: min(1200px, calc(100vw - 80px));
}
.secondMenu .secondMenuList {
    display: none;
}
@media (width > 1080px) {
    .menuCatalog.is-open {
        overflow: hidden;
    }
    .menuCatalog.is-open > .container {
        height: 100%;
        min-height: 0;
    }
    .mainMenu {
        min-height: 0;
        height: calc(100vh - 92px - 48px);
        max-height: calc(100vh - 92px - 48px);
        overflow-y: auto;
        overscroll-behavior: contain;
    }
    .mainCategory .secondMenu {
        position: absolute;
        top: 0;
        min-height: 0;
        height: calc(100vh - 128px);
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
    }
    .mainCategory .secondMenu .dropdown-inner {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
        column-gap: 16px;
        flex: none;
    }
    .mainCategory .secondMenu .secondMenuList {
        min-width: 0;
    }
    .mainCategory .secondMenu .secondMenuItem {
        break-inside: avoid;
    }
}
.secondMenu h4 {
    font-size: 24px;
    font-weight: 700;
    padding: 10px;
    margin-bottom: 10px;
}
.secondMenuItemLink {
    padding-inline: 16px;
    padding-block: 8px;
    font-weight: 700;
    color: var(--black);
    font-size: 14px;
}
.mainMenu .mainCategory:hover .secondMenuList {
    display: flex;
    flex-direction: column;
}
.mainMenu .mainCategory.is-active .secondMenuList,
.secondMenu .secondMenuList.show {
    display: flex;
    flex-direction: column;
}
.thirdMenuList {
    display: flex;
    flex-direction: column;
    padding-left: 24px;
}
.thirdMenuList li a {
    padding: 8px 16px;
    font-weight: 400;
    color: var(--black);
    white-space: nowrap;
    font-size: 14px;
}
@media (min-width: 1081px) {
    .thirdMenuList li a {
        display: inline-block;
        max-width: 350px;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
        line-height: 1.35;
    }
}
.thirdMenuList li a:hover,
.thirdMenuList li a:focus,
.thirdMenuList li a.active {
    color: var(--red);
}
.thirdMenuToggle {
    display: inline-flex;
    align-items: center;
    margin-left: 40px;
    margin-top: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
    color: #e32c41;
}
.thirdMenuList li.is-menu-extra {
    display: none;
}
.thirdMenuList.is-expanded li.is-menu-extra {
    display: list-item;
}
@media (min-width: 1081px) and (max-width: 1440px) {
    .mainMenu .mainCategory:hover .secondMenu,
    .mainMenu .mainCategory.is-active .secondMenu,
    .mainMenu .mainCategory .categoryLink.active + .secondMenu {
        left: auto;
        right: 0;
        transform: none;
        width: min(900px, calc(100vw - 300px));
    }
    .mainCategory .secondMenu .dropdown-inner {
        column-gap: 12px;
    }
    .secondMenu h4 {
        padding: 8px;
        font-size: 22px;
    }
    .secondMenuItemLink {
        padding: 6px 12px;
        font-size: 13px;
    }
    .thirdMenuList {
        padding-left: 16px;
    }
    .thirdMenuList li a {
        max-width: 100%;
        padding: 6px 12px;
        font-size: 13px;
    }
    .thirdMenuToggle {
        margin-left: 28px;
    }
}
@media (width <= 480px) {
    nav.navbar.fixed-top {
        top: inherit;
        bottom: 16px;
    }
}
@media (min-width: 375px) and (max-width: 480px) {
    .mobile-fixed-top {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1080;
        display: block;
        background: #fff;
        border-bottom: 1px solid #e8e8e8;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
    .mobile-fixed-top__inner {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 16px;
        box-shadow: 0px 2px 8px 0px #00000014;
    }
    .mobile-fixed-top__brand {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin-right: auto;
    }
    .mobile-fixed-top__brand img {
        max-height: 34px;
        width: auto;
    }
    .mobile-search-trigger {
        width: 100%;
        border: 1px solid #e4e4e4;
        border-radius: 12px;
        background: #f8f8f8;
        min-height: 44px;
        display: inline-flex;
        justify-content: flex-start;
        align-items: center;
        gap: 8px;
        color: #4a4a4a;
        padding-inline: 14px;
        font-size: 14px;
        line-height: 20px;
    }
    .mobile-search-trigger i {
        width: 18px;
        height: 18px;
    }
    nav.navbar.fixed-top {
        display: none;
    }
    .mobile-fixed-bottom {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        bottom: 10px;
        z-index: 1080;
        display: block;
        background: #fff;
        width: calc(100% - 16px);
        border-top: 1px solid #e8e8e8;
        border-radius: 100px;
        padding: 12px 16px;
        box-shadow: 1px 2px 16px 0px #0000001f;
        transition:
            width 0.28s ease,
            padding 0.28s ease,
            bottom 0.28s ease,
            box-shadow 0.28s ease;
    }
    .mobile-fixed-bottom__inner {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        align-items: stretch;
        width: 100%;
    }
    .mobile-fixed-bottom__item {
        min-height: 58px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        color: #2b2b2b;
        text-decoration: none;
        background: transparent;
        border: 0;
        font-size: 11px;
        line-height: 13px;
        padding: 6px 4px;
        transition:
            min-height 0.28s ease,
            padding 0.28s ease,
            font-size 0.28s ease,
            gap 0.28s ease;
    }
    .mobile-fixed-bottom__item i,
    .mobile-fixed-bottom__item svg {
        width: 18px;
        height: 18px;
        transition:
            width 0.28s ease,
            height 0.28s ease;
    }
    .mobile-fixed-bottom--compact {
        width: calc(100% - 88px);
        padding: 6px 10px;
        bottom: 8px;
        box-shadow: 1px 1px 10px 0px #0000001a;
    }
    .mobile-fixed-bottom--compact .mobile-fixed-bottom__item {
        min-height: 40px;
        padding: 2px;
        font-size: 9px;
        line-height: 11px;
        gap: 1px;
    }
    .mobile-fixed-bottom--compact .mobile-fixed-bottom__item i,
    .mobile-fixed-bottom--compact .mobile-fixed-bottom__item svg {
        width: 15px;
        height: 15px;
    }
    .mobile-fixed-bottom__item--active {
        color: var(--red);
        background: #fbebec;
        border-radius: 100px;
    }
    .mobile-fixed-bottom__item:active,
    .mobile-fixed-bottom__item:hover {
        color: var(--red);
    }
    .menuCatalog {
        top: 106px;
    }
    .menuCatalog.is-open {
        max-height: calc(100vh - 106px - 66px);
    }
    .mainMenu {
        min-height: calc(100vh - 106px - 66px);
    }
    main {
        margin-top: 160px;
        padding-top: 0;
        padding-bottom: 74px;
        padding-inline: 16px;
    }
}
@media (max-width: 1080px) {
    .menuCatalog.is-open {
        height: calc(100vh - 92px);
    }
    .mainMenu {
        min-height: auto;
        height: max-content;
        padding: 12px;
    }
    .mainMenu .mainCategory:hover {
        background-color: transparent;
    }
    .mainMenu .mainCategory:not(.is-active):hover .secondMenu {
        display: none !important;
    }
    .mainMenu .mainCategory:not(.is-active):hover .secondMenuList {
        display: none !important;
    }
    .mainMenu .mainCategory:hover .secondMenu,
    .mainMenu .mainCategory.is-active .secondMenu,
    .mainMenu .mainCategory .categoryLink.active + .secondMenu {
        left: 87%;
    }
    .secondMenu picture {
        height: max-content;
        width: 100%;
        max-width: 600px;
    }
}
@media (max-width: 480px) {
    .menuCatalog.is-open {
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }
    .menuCatalog--mobile-stack.is-open > .container {
        flex: 1 1 auto;
        min-height: 0;
        height: 100%;
        overflow: hidden;
        padding-inline: 0;
        padding-block: 0 12px;
    }
    .menuCatalog-mobile__viewport {
        overflow: hidden;
        width: 100%;
        height: 100%;
    }
    .menuCatalog-mobile__stack {
        display: flex;
        width: 100%;
        height: 100%;
        transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: transform;
    }
    .menuCatalog-mobile__stack[data-menu-depth="2"] {
        transform: translateX(-100%);
    }
    .menuCatalog-mobile__stack[data-menu-depth="3"] {
        transform: translateX(-200%);
    }
    .menuCatalog-mobile__panel {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .menuCatalog-mobile__panel::-webkit-scrollbar {
        display: none;
    }
    .menuCatalog-mobile__header {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 4px 0 12px;
        position: sticky;
        top: 0;
        z-index: 2;
        background: #f8f8ff;
    }
    .menuCatalog-mobile__back {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        border: 0;
        border-radius: 8px;
        background: #fff url(../image/chevron-right.svg) center / 7px 13px
            no-repeat;
        transform: rotate(180deg);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        cursor: pointer;
    }
    .menuCatalog-mobile__title {
        margin: 0;
        font-size: 18px;
        line-height: 24px;
        font-weight: 700;
        color: var(--black);
    }
    .menuCatalog-mobile__list {
        list-style: none;
        flex-direction: column;
        margin: 0;
        padding: 12px;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    }
    .menuCatalog-mobile__item {
        position: relative;
        padding-block: 15px;
        padding-inline: 16px;
        border-radius: 8px;
    }
    .menuCatalog-mobile__item + .menuCatalog-mobile__item {
        margin-top: 0;
    }
    .menuCatalog-mobile__link {
        display: block;
        width: 100%;
        border: 0;
        background: transparent;
        padding: 0;
        margin: 0;
        text-align: left;
        font-weight: 700;
        font-size: 16px;
        line-height: 24px;
        font-family: "Roboto", sans-serif;
        color: var(--black);
        text-decoration: none;
        cursor: pointer;
    }
    .menuCatalog-mobile__link.active,
    .menuCatalog-mobile__link:hover,
    .menuCatalog-mobile__link:focus {
        color: #e32c41;
    }
    .menuCatalog-mobile__item--has-children::after {
        content: "";
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 12px;
        height: 13px;
        background: url(../image/chevron-right.svg) center / contain no-repeat;
        pointer-events: none;
    }
    .menuCatalog-mobile__item--has-children .menuCatalog-mobile__link {
        padding-right: 28px;
    }
    .menuCatalog--mobile-stack .mainMenu .mainCategory .secondMenu,
    .menuCatalog--mobile-stack .mainMenu .mainCategory.is-active .secondMenu,
    .menuCatalog--mobile-stack .mainMenu .mainCategory:hover .secondMenu,
    .menuCatalog--mobile-stack
        .mainMenu
        .mainCategory
        .categoryLink.active
        + .secondMenu,
    .menuCatalog--mobile-stack .secondMenu .secondMenuList.show {
        display: none !important;
    }
    .menuCatalog--mobile-stack .mainMenu .mainCategory:hover,
    .menuCatalog--mobile-stack .mainMenu .mainCategory.is-active {
        background-color: transparent;
    }
    .mainMenu {
        width: 100%;
        box-shadow: 0px 8px 16px 0px #0000001f;
    }
    .mainMenu .mainCategory {
        position: relative;
    }
    .mainMenu .mainCategory::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 12px;
        height: 6px;
        background-image: url(../image/chevron-right.svg);
        background-repeat: no-repeat;
        padding: 6px 9px;
    }
}
/* End Header */
/* Footer */
footer {
    background: #ffffff;
    padding-top: 48px;
    padding-bottom: 24px;
    border-top: 1px solid #bebebe;
}
@media (max-width: 1080px) {
    footer {
        padding-top: 0;
    }
}
@media (max-width: 480px) {
    footer {
        padding: 16px;
        padding-bottom: 120px;
    }
    footer h5 {
        font-size: 14px;
        font-weight: 400;
        display: none;
    }
    footer .row .col-lg-4 {
        width: 100%;
        margin-top: 0;
        padding: 0;
    }
    footer .row .col-lg-3 {
        width: 100%;
        margin-top: 0;
        padding: 0;
    }
    footer .col-lg-3.pl-100 {
        width: 50%;
        margin-top: 0;
    }
    footer .row .col-lg-2 {
        width: 50%;
        padding-inline: 8px;
        margin-top: 0;
    }
    footer .footerContentBottom {
        flex-direction: column;
    }
    footer .footerContentBottom .flexBox {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }
}
footer .footerContentBottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--grey);
    gap: 16px;
    padding-top: 24px;
    width: 100%;
    border-top: 1px solid #bebebe;
}
footer .footerContentBottom .flexBox {
    gap: 16px;
}
footer .footerContentBottom .flexBox a {
    color: var(--grey);
}
footer p.footerText {
    padding-right: 48px;
    margin-bottom: 24px;
    color: var(--grey);
}
footer img {
    display: block;
    margin-bottom: 24px;
}
footer h5 {
    margin-bottom: 24px;
}
footer .footer-dropdown__toggle {
    display: block;
    width: 100%;
    margin: 0 0 24px;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    font-family: inherit;
    color: inherit;
    cursor: default;
}
footer .footer-dropdown__title {
    display: block;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}
footer .footer-dropdown.is-open .footer-dropdown__toggle,
footer .footer-dropdown .footer-dropdown__toggle[aria-expanded="true"] {
    margin-bottom: 24px;
}
@media (max-width: 480px) {
    footer .footer-dropdown {
        width: 100%;
        background-color: #f8fafc;
        border-radius: 16px;
        max-width: 130px;
        padding: 9.5px;
        margin-bottom: 21px;
    }
    footer .footer-dropdown__toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 0;
        padding-block: 12px;
        font-size: 14px;
        font-weight: 400;
        cursor: pointer;
    }
    footer .footer-dropdown__toggle::after {
        content: "";
        flex-shrink: 0;
        width: 12px;
        height: 13px;
        background: url(../image/chevron-right.svg) center / contain no-repeat;
        transform: rotate(90deg);
        transition: transform 0.25s ease;
    }
    footer .footer-dropdown.is-open .footer-dropdown__toggle::after {
        transform: rotate(-90deg);
    }
    footer .footer-dropdown__panel {
        display: none;
        margin-bottom: 8px;
    }
    footer .footer-dropdown.is-open .footer-dropdown__panel {
        display: flex;
        padding-bottom: 8px;
    }
    footer .footer-dropdown.is-open .footer-dropdown__toggle {
        margin-bottom: 8px;
    }
}
footer ul.footerNav {
    flex-direction: column;
    gap: 8px;
}
footer ul.footerNav li.flexBox {
    gap: 8px;
}
footer ul.footerNav li.flexBox p {
    font-size: 19.7px;
    line-height: 30px;
    color: var(--black);
    width: calc(100% - 24px);
}
footer ul.footerNav li.flexBox p.textBold span {
    font-weight: 700;
}
@media (max-width: 1080px) {
    footer ul.footerNav li.flexBox p {
        font-size: 16px;
    }
}
@media (max-width: 1080px) {
    footer ul.footerNav li.flexBox p {
        font-size: 14px;
        line-height: 21px;
    }
}
footer ul.footerNav li.flexBox .text-danger {
    color: var(--red);
}
footer ul.footerNav li a {
    color: var(--grey);
    font-size: 13.3px;
    line-height: 21px;
}
footer .pl-100 {
    padding-left: 140px;
}
footer .row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    margin-top: 48px;
    padding-inline: 24px;
}
footer .row {
    margin-bottom: 24px;
}
/* End Footer */
/* Banner */
.terminalBannerSwiper {
    overflow: hidden;
    border-radius: 1rem;
    height: 520px;
    width: 100%;
}
.terminalBannerSwiper .swiper-slide {
    height: 520px;
}
.terminalBannerSwiper .terminalBanner {
    height: 100%;
    cursor: pointer;
}
.terminalBannerSwiper .terminalBanner > .row {
    min-height: 100%;
}
.terminalBannerSwiper .terminalBanner__decor {
    min-height: 0;
}
.terminalBannerSwiper .terminalBanner__picture {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
[data-click-banner] {
    cursor: pointer;
}
.terminalBannerSwiper .terminalBanner__image {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
@media (min-width: 992px) {
    .terminalBannerSwiper .terminalBanner__content--right {
        text-align: right;
    }
    .terminalBannerSwiper
        .terminalBanner__content--right
        .terminalBanner__description {
        max-width: 83.333333%;
    }
}
.terminalBannerSwiper .swiper-pagination {
    bottom: 20px;
    z-index: 2;
}
.terminalBannerSwiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
}
.terminalBannerSwiper .swiper-pagination-bullet-active {
    background: #fff;
}
.terminalBannerSwiper .terminalBannerButtonNext,
.terminalBannerSwiper .terminalBannerButtonPrev {
    width: 44px;
    height: 44px;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    z-index: 2;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}
.terminalBannerSwiper .terminalBannerButtonNext::after,
.terminalBannerSwiper .terminalBannerButtonPrev::after {
    font-size: 18px;
    font-weight: 700;
}
.terminalBannerSwiper .terminalBannerButtonPrev {
    transform: rotate(180deg);
}
.terminalBannerSwiper .terminalBannerButtonPrev {
    left: 16px;
}
.terminalBannerSwiper .terminalBannerButtonNext {
    right: 16px;
    transform: translateY(-50%);
}
.terminalBannerSwiper .swiper-button-disabled {
    opacity: 0.35;
}
@media (max-width: 1080px) {
    .terminalBannerSection {
        margin-bottom: 32px !important;
    }
    .terminalBannerSwiper,
    .terminalBannerSwiper .swiper-slide {
        height: 446px;
    }
    /* .terminalBanner {
    padding: 1rem 3rem !important;
  } */
    .terminalBannerSwiper .terminalBannerButtonPrev {
        left: 8px;
    }
    .terminalBannerSwiper .terminalBannerButtonNext {
        right: 8px;
    }
}
@media (max-width: 480px) {
    .terminalBannerSwiper,
    .terminalBannerSwiper .swiper-slide {
        height: 188px;
    }
}
/* Category Links */
.katalogLinks {
    flex-wrap: wrap;
}
.categoryFilterBLock {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
}
.categoryFilterBLock.is-packed {
    flex-direction: column;
    flex-wrap: nowrap;
}
.categoryFilterBLock:not(.is-packed) {
    visibility: hidden;
}
.categoryFilterRow {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 8px;
}
.categoryFilterBLock a.categoryFilterLink {
    color: var(--text-color);
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    flex: 0 0 auto;
    padding: 8px 16px;
    border-radius: 800px;
    box-shadow: 0px 2px 4px 0px #00000013;
    border: 1px solid #dee2e6;
    font-size: 12px;
    line-height: 1;
    background: var(--white);
    transition: all 0.5s ease-in-out;
}
.categoryFilterBLock a.categoryFilterLink:hover {
    transform: scale(1.05);
}
/* .topBanner {
  border-radius: 24px;
  background: var(--background);
  width: 100%;
  padding: 48px;
  border: 1px solid rgba(220, 53, 69, 0.251);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  overflow: hidden;
  position: relative;
  height: 498.77px;
  margin-bottom: 48px; */
/* }
.topBanner .bgDark {
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: var(--black);
  bottom: -100px;
  left: 10%;
  filter: blur(40px);
  border-radius: 50%;
  z-index: 1;
}
.topBanner .bgLight {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  top: -150px;
  right: -100px;
  filter: blur(50px);
  background-color: var(--white);
  opacity: 0.25;
  z-index: 1;
}
.topBanner span.label {
  display: inline-block;
  font-size: 13.6px;
  font-weight: 700;
  border-radius: 50rem;
  background-color: var(--white);
  margin-bottom: 24px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  color: var(--red);
  padding: 8px 16px;
}
.topBanner h1 {
  letter-spacing: -1px;
  margin-bottom: 16px;
  font-weight: 900;
  font-size: 56px;
  color: var(--white);
}
.topBanner p {
  opacity: 0.75;
  color: var(--white);
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 300;
  width: 83.33333333%;
}
.topBanner a {
  display: inline-block;
  color: var(--red);
  border-radius: 50rem;
  font-weight: 700;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  padding: 16px 48px;
  background-color: var(--white);
}
.topBanner .row {
  z-index: 2;
  position: relative;
}
.topBanner .row .col-lg-7 {
  padding: 24px;
} */
/* End Banner */
/* Product Swiper */
.productList {
    width: 100%;
    padding-block: 24px;
    margin-bottom: 15.99px;
}
.productList .swiper {
    overflow: hidden;
    padding-bottom: 32px;
}
.productList .swiper-slide {
    padding-inline: 12px;
    padding-top: 24px;
}
.productList .flexBox {
    justify-content: space-between;
}
.productList .flexBox h2 {
    font-weight: 700;
    font-size: 40px;
}
.productList .flexBox a {
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}
.productList .productBlock {
    background-color: var(--white);
    border-radius: 16px;
    padding: 1px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: block;
}
.productList .productBlock .productImage {
    width: 100%;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    overflow: hidden;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1080px) {
    .productList .productBlock .productImage {
        height: 206px;
        padding: 8px;
    }
}
.productList .productBlock .productImage img {
    display: block;
    width: 100%;
    object-fit: contain;
    height: auto;
    max-height: 240px;
    transition: all 0.3s ease;
}
.productList .productBlock .productBody {
    padding: 24px;
}
@media (max-width: 1080px) {
    .productList .productBlock .productBody {
        padding: 12px;
    }
}
.productList .productBlock .productBody .textCategory {
    font-size: 14px;
    line-height: 21px;
    color: rgba(33, 37, 41, 0.749);
    margin-bottom: 8px;
    height: 42px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.productList .productBlock .productBody h5 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 19.2px;
    font-weight: 700;
    margin-bottom: 16.29px;
}
@media (max-width: 1080px) {
    .productList .productBlock .productBody .textCategory {
        font-size: 16px;
    }
}
@media (max-width: 1080px) {
    .productList .productBlock .productBody h5 {
        font-size: 18px;
        line-height: 1.2;
        font-weight: 500;
    }
}
.productList .productBlock .productBody .productPrice {
    margin-bottom: 0;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}
.productList .productBlock .productBody .productPrice p.price {
    display: flex;
    flex-direction: column;
    font-size: 19.7px;
    font-weight: 700;
    line-height: 20px;
}
.productList .productBlock .productBody .productPrice button.btnAdd {
    flex: 1 1 0;
    width: 100%;
    min-width: 0;
    border-radius: 22px;
    background: var(--background);
    color: var(--white);
    padding-block: 13px;
    box-shadow: 0px 2px 4px 0px #00000013;
    border: 1px solid transparent;
    box-sizing: border-box;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}
.productList .productBlock.is-in-cart .productBody .productPrice button.btnAdd {
    width: auto;
    min-width: 48px;
}
@media (max-width: 480px) {
    .productList
        .productBlock.is-in-cart
        .productBody
        .productPrice
        button.btnAdd {
        min-width: 48px;
    }
}
@media (width <= 1080px) {
    .productList
        .productBlock.is-in-cart
        .productBody
        .productPrice
        button.btnAdd {
        min-width: inherit;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
}
.productList
    .productBlock.is-in-cart--animate
    .productBody
    .productPrice
    button.btnAdd {
    transition:
        flex 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        width 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        min-width 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}
.productList
    .productBlock
    .productBody
    .productPrice
    button.btnAdd
    .btnAdd__label--in-cart {
    display: none;
}
.productList
    .productBlock
    .productBody
    .productPrice
    button.btnAdd.btnAdd--active
    .btnAdd__label--default {
    display: none;
}
.productList
    .productBlock
    .productBody
    .productPrice
    button.btnAdd
    .btnAdd__icon {
    display: none;
    flex-shrink: 0;
}
.productList
    .productBlock
    .productBody
    .productPrice
    button.btnAdd
    .btnAdd__icon
    svg {
    width: 20px;
    height: 20px;
}
@media (min-width: 1081px) {
    .productList
        .productBlock
        .productBody
        .productPrice
        button.btnAdd.btnAdd--active
        .btnAdd__label--in-cart {
        display: inline;
    }
}
@media (max-width: 1080px) {
    .productList
        .productBlock.is-in-cart
        .productBody
        .productPrice
        button.btnAdd
        .btnAdd__label--in-cart,
    .productList
        .productBlock
        .productBody
        .productPrice
        button.btnAdd.btnAdd--active
        .btnAdd__label--in-cart {
        display: none !important;
    }
    .productList
        .productBlock.is-in-cart
        .productBody
        .productPrice
        button.btnAdd
        .btnAdd__icon,
    .productList
        .productBlock
        .productBody
        .productPrice
        button.btnAdd.btnAdd--active
        .btnAdd__icon {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }
}
@media screen and (min-width: 1000px) and (max-width: 1200px) and (orientation: portrait) {
    .productList
        .productBlock.is-in-cart
        .productBody
        .productPrice
        button.btnAdd
        .btnAdd__label--in-cart,
    .productList
        .productBlock
        .productBody
        .productPrice
        button.btnAdd.btnAdd--active
        .btnAdd__label--in-cart {
        display: none !important;
    }
    .productList
        .productBlock.is-in-cart
        .productBody
        .productPrice
        button.btnAdd
        .btnAdd__icon,
    .productList
        .productBlock
        .productBody
        .productPrice
        button.btnAdd.btnAdd--active
        .btnAdd__icon {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }
}
/* .productList .productBlock .productBody .productPrice button.btnAdd svg {
  width: 20px;
  height: 20px;
} */
.productList .productBlock .productBody .productPrice button.btnAdd:hover {
    color: var(--red);
    border-color: var(--hover-color);
    background: transparent;
}
.productList .productBlock .productBlock__link {
    display: block;
    color: inherit;
    text-decoration: none;
    position: relative;
}
.productList .productBlock p.productLabel {
    position: absolute;
    top: 12px;
    left: 12px;
    margin: 0;
    padding: 6px 12px;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 999px;
    z-index: 2;
    line-height: 1.2;
}
.productList.bestseller p.productLabel {
    background: #f97316;
}
.productList .special p.productLabel,
.productList.bestseller.special p.productLabel {
    background: var(--red);
}
.productList .productBlock .productBody--footer {
    padding: 0 16px 16px;
}
.productList .productBlock .productPrice__cart {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: stretch;
    gap: 0;
}
.productList .productBlock.is-in-cart .productPrice__cart {
    gap: 8px;
}
.productList .productBlock.is-in-cart--animate .productPrice__cart {
    transition: gap 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.productList .productBlock .product-card-qty {
    border: 0 solid transparent;
    min-height: 0;
    display: flex;
    flex: 0 0 0;
    width: 0;
    min-width: 0;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    pointer-events: none;
    visibility: hidden;
    background: transparent;
    transform: translateX(10px) scale(0.98);
    transform-origin: right center;
}
.productList .productBlock.is-in-cart .product-card-qty {
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    min-height: 44px;
    max-width: 148px;
    border-width: 1px;
    border-color: #e5e7eb;
    background-color: var(--white);
    opacity: 1;
    padding: 4px;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0) scale(1);
}
.productList .productBlock.is-in-cart--animate .product-card-qty {
    transition:
        flex 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        width 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        max-width 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        min-height 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.32s ease 0.04s,
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        padding 0.35s ease,
        border-width 0.25s ease,
        border-color 0.25s ease,
        visibility 0s linear 0s;
}
.productList .productBlock.is-in-cart.is-in-cart--animate .product-card-qty {
    visibility: visible;
}
.productList .productBlock .product-card-qty__input {
    min-width: 36px;
    width: 42px;
    background: transparent;
}
.productList .productBlock .product-card-qty__btn {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.productList
    .productBlock
    .productBody
    .productPrice
    button.btnAdd.btnAdd--active {
    color: var(--red);
    background: transparent;
    border-color: var(--red);
}
.productList .productBlock button.btnAdd.btnAdd--active:hover {
    background: var(--background);
    border-color: var(--background);
    color: var(--white);
}
.productList .productBlock:has(.productBlock__link:hover) {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.14);
    border-color: #fca5a5;
    transform: translateY(-5px);
}
.productList .productBlock:has(.productBlock__link:hover) .productImage img {
    transform: scale(1.1);
}
@media (prefers-reduced-motion: reduce) {
    .productList .productBlock.is-in-cart--animate .productPrice__cart,
    .productList .productBlock.is-in-cart--animate .product-card-qty,
    .productList
        .productBlock.is-in-cart--animate
        .productBody
        .productPrice
        button.btnAdd,
    .page-product-category
        .catalog-product-card.is-in-cart--animate
        .catalog-product-card__cart-wrap,
    .page-product-category
        .catalog-product-card.is-in-cart--animate
        .product-card-qty,
    .page-product-category .catalog-product-card.is-in-cart--animate .btnAdd {
        transition: none !important;
    }
    .productContent .productBtns .productBtnsBox__cart.is-in-cart--animate,
    .productContent
        .productBtns
        .productBtnsBox__cart.is-in-cart--animate
        .product-card-qty,
    .productContent
        .productBtns
        .productBtnsBox__cart.is-in-cart--animate
        .btnAdd {
        transition: none !important;
    }
}
/* End Product Swiper */
/* Profit Block */
.profitsBlock {
    background: var(--white);
    padding-top: 40px;
    padding-bottom: 64px;
    margin-bottom: 96px;
    border-block: 1px solid #bebebe;
}
.profitsBlock .iconBox {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(220, 53, 69, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    color: var(--red);
    margin-bottom: 16px;
}
.profitsBlock .iconBox svg {
    width: 32px;
    height: 32px;
}
.profitsBlock h5.profitTitle {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}
.profitsBlock p.profitText {
    text-align: center;
    color: rgba(33, 37, 41, 0.749);
    font-size: 13.7px;
    line-height: 21px;
    width: 300px;
    margin-inline: auto;
}
@media (width <= 480px) {
    .profitsBlock {
        background: transparent;
        border: none;
        padding-top: 0;
        padding-bottom: 0;
    }
    .profitsBlock .row {
        gap: 8px;
        margin-right: 0;
        margin-left: 0;
    }
    .profitsBlock .row .col-md-6 {
        width: 100%;
        background: var(--white);
        border-radius: 16px;
        padding: 16px;
    }
}
/* End Profit Block */
/* Product Card */
#product-product {
    flex-direction: column;
    align-items: inherit;
}
.mainProductBox {
    border-radius: 24px;
    width: 100%;
    padding: 3rem;
    background-color: var(--white);
    margin-bottom: 48px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.075);
}
.swiper {
    margin-left: initial;
    margin-right: initial;
}
.productImage {
    width: 100%;
    max-width: 576px;
}
/* @media (max-width: 1080px) {
  .productImage {
    padding-right: 12px;
  }
} */
.productImage .productSwiper {
    height: 576px;
}
@media (max-width: 1080px) {
    .productImage .productSwiper {
        height: 396px;
    }
}
.productImage .productSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 576px;
}
@media (max-width: 1080px) {
    .productImage .productSwiper .swiper-slide {
        height: 396px;
        padding: 8px;
    }
}
.productImage .productSwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.productImage .productSwiper .swiper-slide img.product-gallery__img {
    max-height: 100%;
    object-fit: contain;
}
.productImage .productSwiper .swiper-button-next::after,
.productImage .productSwiper .swiper-button-prev::after {
    content: none;
}
.productImage .productSwiper .swiper-button-prev {
    transform: rotate(180deg);
}
.productImage .thumbnailsSwiper {
    height: 80px;
}
.productImage .thumbnailsSwiper .swiper-slide {
    width: 80px;
    height: 80px;
    /*  opacity: 0.4; */
    border: 2px solid transparent;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.productImage .thumbnailsSwiper .swiper-slide .thumbsImgBox {
    width: 80px;
    height: 80px;
    padding: 2px;
}
.productImage .thumbnailsSwiper .swiper-slide .thumbsImgBox img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.productImage .thumbnailsSwiper .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid var(--red);
}
#product-product .productImage .product-gallery-dots {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 0;
    border: 0;
    background: transparent;
}
#product-product .productImage .product-gallery-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d9d9d9;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}
#product-product .productImage .product-gallery-dot.is-active {
    background: var(--red);
    transform: scale(1.15);
}
@media (max-width: 480px) {
    #product-product .productImage .thumbnailsSwiper {
        display: none;
    }
    #product-product .productImage .product-gallery-dots {
        display: flex;
    }
}
@media (max-width: 1080px) {
    .productImage .thumbnailsSwiper .swiper-slide {
        padding: 2px;
    }
    .productImage .thumbnailsSwiper .swiper-slide img {
        object-fit: contain;
    }
}
.productContent {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 100%;
}
.productContent p.textArticul {
    color: var(--grey);
}
.productContent p.textArticul span {
    color: var(--text-color);
    font-weight: 700;
}
.productInfoBox {
    display: flex;
    align-items: center;
    gap: 8px;
}
@media (max-width: 1080px) {
    .productContent {
        padding-left: 12px;
    }
    .productInfoBox {
        margin-bottom: 16px;
    }
}
.productContent h1 {
    color: var(--black);
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 40px;
    margin-bottom: 16px;
}
@media (max-width: 1080px) {
    .productContent h1 {
        font-size: 20px;
        width: 100%;
        word-break: break-all;
    }
}
@media (max-width: 1080px) {
    .productContent .productPrice {
        margin-bottom: 16px;
    }
}
.productContent .productPrice .priceBox {
    gap: 16px;
    margin-bottom: 4px;
    flex-direction: column;
    align-items: start;
}
.productContent .productPrice .priceBox #otp-widget-bnpl {
    width: 100%;
}
/* BNPL modal (davay-delit): на мобильных виджет прижимает окно вниз — центрируем */
@media (max-width: 768px) {
    [class*="_root_1hact_"] {
        justify-content: center !important;
        align-items: center !important;
    }
    [class*="_inner_1hact_"] {
        border-radius: 16px !important;
        margin: 16px;
        max-width: calc(100% - 32px);
        width: 100%;
        box-sizing: border-box;
    }
}
.productContent .productPrice .priceBox h2 {
    line-height: 1;
    font-weight: 700;
    font-size: 48px;
    color: var(--black);
}
@media (max-width: 1080px) {
    .productContent .productPrice .priceBox h2 {
        font-size: 32px;
    }
}
.productContent .productPrice p.productPriceText {
    font-size: 14px;
    color: var(--black);
}
.productContent .productBtns .productBtnsContent {
    background-color: #f8f9fa;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
}
@media (max-width: 1080px) {
    .productContent .productBtns .productBtnsContent {
        background-color: #d8d8d8;
    }
}
.productContent .productBtns .productBtnsContent .productBtnsContentBox {
    width: 50%;
    gap: 8px;
}
@media (max-width: 1080px) {
    .productContent .productBtns .productBtnsContent .productBtnsContentBox p {
        font-size: 14px;
    }
}
.productContent .productBtns .productBtnsContent .productBtnsContentBox svg {
    color: var(--red);
}
.productContent .productBtns .productBtnsBox {
    margin-bottom: 48px;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 16px;
}
.productContent .productBtns .productBtnsBox__cart {
    flex-grow: 1;
    display: flex;
    align-items: stretch;
    gap: 0;
    min-width: 0;
    width: 100%;
}
.productContent .productBtns .productBtnsBox__cart.is-in-cart {
    gap: 12px;
}
.productContent .productBtns .productBtnsBox__cart.is-in-cart--animate {
    transition: gap 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.productContent .productBtns .productBtnsBox__cart .product-card-qty {
    border: 0 solid transparent;
    min-height: 0;
    display: flex;
    flex: 0 0 0;
    width: 0;
    min-width: 0;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    pointer-events: none;
    visibility: hidden;
    background: transparent;
    transform: translateX(-10px) scale(0.98);
    transform-origin: left center;
}
.productContent
    .productBtns
    .productBtnsBox__cart.is-in-cart
    .product-card-qty {
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    min-height: 54px;
    max-width: 168px;
    border-width: 1px;
    border-color: #e5e7eb;
    background-color: var(--white);
    opacity: 1;
    padding: 4px;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0) scale(1);
}
.productContent
    .productBtns
    .productBtnsBox__cart.is-in-cart--animate
    .product-card-qty {
    transition:
        flex 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        width 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        max-width 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        min-height 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.32s ease 0.04s,
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        padding 0.35s ease,
        border-width 0.25s ease,
        border-color 0.25s ease,
        visibility 0s linear 0s;
}
.productContent
    .productBtns
    .productBtnsBox__cart.is-in-cart.is-in-cart--animate
    .product-card-qty {
    visibility: visible;
}
.productContent .productBtns .productBtnsBox__cart .product-card-qty__input {
    min-width: 36px;
    width: 42px;
    background: transparent;
}
.productContent .productBtns .productBtnsBox__cart .product-card-qty__btn {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.productContent .productBtns .productBtnsBox__cart .btnAdd {
    flex: 1 1 0;
    width: 100%;
    min-width: 0;
    border: 1px solid transparent;
    box-sizing: border-box;
    transition:
        flex 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.3s ease;
}
.productContent .productBtns .productBtnsBox__cart.is-in-cart .btnAdd {
    flex: 1 1 0;
    width: 100%;
    min-width: 0;
}
.productContent
    .productBtns
    .productBtnsBox__cart
    .btnAdd
    .btnAdd__label--in-cart {
    display: none;
}
.productContent
    .productBtns
    .productBtnsBox__cart
    .btnAdd.btnAdd--active
    .btnAdd__label--default {
    display: none;
}
.productContent
    .productBtns
    .productBtnsBox__cart
    .btnAdd.btnAdd--active
    .btnAdd__label--in-cart {
    display: inline;
}
.productContent .productBtns .productBtnsBox__cart .btnAdd.btnAdd--active {
    color: var(--red);
    background: transparent;
    border-color: var(--red);
    box-shadow: 0 2px 4px 0 #00000013;
}
.productContent
    .productBtns
    .productBtnsBox__cart
    .btnAdd.btnAdd--active:hover {
    background: var(--background);
    border-color: var(--background);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.45);
}
.productContent .productBtns .productBtnsBox button {
    border-radius: 50rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1.5;
    font-size: 16px;
    transition: all 0.3s ease;
}
.productContent .productBtns .productBtnsBox button.btnAdd {
    background: var(--background);
    color: var(--white);
    transition: all 0.3s ease;
    padding: 18px 48px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.149);
    flex-grow: 1;
}
.productContent .productBtns .productBtnsBox button.btnAdd:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.302);
}
.productContent .productBtns .productBtnsBox button.btnWishlist {
    padding: 1rem 1.5rem;
    color: var(--grey);
    border: 2px solid var(--grey);
}
.productContent .productBtns .productBtnsBox button.btnWishlist:hover {
    color: var(--hover-color);
}
.productTabsAi {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(17, 24, 39, 0.05);
    padding: 48px;
    margin-bottom: 28px;
}

/* .nav-pills-custom .nav-link и .active — см. global-styles.css */
/* .nav-pills-custom .nav-link {
  color: var(--grey);
  font-weight: 600;
  border-radius: 32px;
  padding: 12px 24px;
  transition: all 0.3s ease;
} */
ul.nav-pills-custom {
    padding-bottom: 8px;
    margin-bottom: 24px;
    border-bottom: 1px solid #dee2e6;
}
@media (max-width: 1080px) {
    ul.nav-pills-custom {
        border-bottom: 1px solid #bebebe;
    }
}
/* .nav-pills-custom .nav-link.active {
  background-color: #f8d7da;
  color: var(--red);
} */

.productSpecsTable {
    margin-bottom: 16px;
}

.productSpecsTable tr {
    border-bottom: 1px solid #f8f9fa;
}

.productSpecsTable tr td {
    padding: 8px 16px;
    width: 50%;
    border-bottom: 1px solid #f8f9fa;
}
@media (max-width: 1080px) {
    .productSpecsTable tr td {
        border-bottom: 1px solid #d7d7d7;
    }
}
.productSpecsTable tr td:first-child {
    color: rgba(33, 37, 41, 0.749);
}

.productSpecsTable tr td:last-child {
    color: var(--black);
    font-weight: 500;
}
.qtyBlock {
    display: flex;
    align-items: center;
    gap: 2px;
}
.qtyBlock .qtyBox {
    width: 6px;
    height: 18px;
    background-color: #e0e0e0;
    border-radius: 6px;
}
.qtyBlock .qtyBox.green {
    background-color: #5aab3a;
}
.text-green {
    color: #5aab3a;
}
@media (max-width: 480px) {
    #product-product {
        padding: 0;
    }
    #product-product .mainProductBox .row {
        flex-direction: column;
    }
    #product-product .mainProductBox .row .col-lg-6 {
        width: 100%;
        padding: 0;
    }
    .mainProductBox {
        background-color: transparent;
        padding: 0;
        margin-bottom: 16px;
        box-shadow: none;
    }
    .productImage {
        background-color: var(--white);
        padding: 24px;
        border-radius: 16px;
        margin-bottom: 16px;
    }
    .productImage .productSwiper {
        height: max-content;
    }
    .productImage .productSwiper .swiper-slide {
        height: 268px;
        padding: 0;
    }
    .productContent {
        background-color: var(--white);
        padding: 16px;
        margin-bottom: 8px;
        border-radius: 16px;
    }
    .productInfoBox {
        margin-bottom: 16px;
    }
    .productContent .productBtns .productBtnsBox {
        margin-bottom: 16px;
    }
    .productTabsAi {
        padding: 16px;
    }
}
/* End Product Card */
/* QuickCheckout */
/* #quickcheckoutconfirm .quickcheckout-content {
  width: 1320px;
}
@media (max-width: 1080px) {
  #quickcheckoutconfirm .quickcheckout-content {
    width: 936px;
  }
} */
.quickcheckout-modern {
    margin-bottom: 48px;
}
@media (max-width: 480px) {
    .quickcheckout-modern .row.g-4.mt-1 {
        flex-direction: column;
    }
    .quickcheckout-modern .row.g-4.mt-1 .col-lg-8 {
        width: 100%;
    }
    .quickcheckout-modern .row.g-4.mt-1 .col-lg-4 {
        width: 100%;
    }
}
.quickcheckout-modern #login-box {
    position: relative;
    z-index: 1;
}
.quickcheckout-modern #login-box input {
    background-color: #f8f9fa;
    border: 1px solid #f8f9fa;
}
.formControlBox {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.gridBlock .formControlBox {
    align-items: flex-start;
    gap: 8px;
    flex-direction: column;
    justify-content: flex-start;
}
.gridBlock {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.gridBlock .formControlBox:nth-child(1) {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
}
.gridBlock .formControlBox:nth-child(2) {
    grid-column-start: 2;
    grid-row-start: 1;
}
.gridBlock .formControlBox:nth-child(3) {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 2;
}
@media (max-width: 1080px) {
    .quickcheckout-modern #login-box {
        padding: 24px !important;
    }
    .quickcheckout-modern #login-box input {
        background-color: #d7d7d7;
        border: 1px solid #d8d8d8;
    }
    #payment-address,
    #shipping-address,
    #payment-method {
        padding: 24px !important;
    }
}
.quickcheckout-modern .disable-overlay {
    pointer-events: none;
}
.quickcheckout-cart-modern .col-lg-8,
.quickcheckout-cart-modern .col-lg-4 {
    padding-inline: 12px;
}
@media (min-width: 992px) {
    .quickcheckout-cart-modern > .row.g-4 {
        flex-wrap: nowrap;
    }
    .quickcheckout-cart-modern > .row > .col-lg-8 {
        flex: 0 0 66.66666667%;
        max-width: 66.66666667%;
        min-width: 0;
    }
    .quickcheckout-cart-modern > .row > .col-lg-4 {
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%;
        min-width: 0;
    }
}
.quickcheckout-modern .quickcheckout-heading {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    padding: 0;
    margin-bottom: 24px;
}
.quickcheckout-modern .quickcheckout-heading .cartTitle {
    display: flex;
    gap: 16px;
    align-items: baseline;
}
.quickcheckout-modern .quickcheckout-heading .cartTitle h1 {
    font-weight: 700;
    font-size: 40px;
}
.quickcheckout-modern .quickcheckout-heading .cartTitle span {
    font-size: 24px;
    color: var(--grey);
}
.quickcheckout-modern .quickcheckout-heading a {
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--grey);
    font-size: 16px;
    font-weight: 400;
}
.quickcheckout-modern .quickcheckout-heading a:hover {
    color: var(--red);
}
.card.cardTotal {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    border-top: 4px solid var(--red);
}
@media (max-width: 1080px) {
    .card.cardTotal {
        padding: 16px;
    }
    .card-body {
        padding-inline: 8px !important;
    }
}
@media (max-width: 480px) {
    .quickcheckout-modern .quickcheckout-heading {
        flex-wrap: wrap-reverse;
    }
    .quickcheckout-modern .quickcheckout-heading a {
        margin-left: auto;
    }
}
.card.cardTotal h5 {
    font-weight: 700;
    margin-bottom: 24px;
    font-size: 20px;
}
.card.cardTotal .flexBox {
    justify-content: space-between;
    margin-bottom: 16px;
}
.card.cardTotal .flexBox .text-secondary {
    color: var(--grey);
}
.card.cardTotal .flexBox .fw-bold {
    color: var(--black);
    font-weight: 500;
}
.card.cardTotal .flexBox .cartQuantityTotalPrice {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
}
.card.cardTotal .flexBox .fw-bold,
.card.cardTotal .flexBox .totalPrice {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 6ch;
    text-align: right;
}
.card.cardTotal .flexBox .totalPrice {
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}
@media (max-width: 1080px) {
    .card.cardTotal .flexBox .totalPrice {
        font-size: 22px;
    }
}
.card.cardTotal .cartDopInfo {
    display: flex;
    padding: 16px;
    background-color: rgba(220, 53, 69, 0.102);
    margin-top: 16px;
    gap: 16px;
}
@media (max-width: 1080px) {
    .card.cardTotal .cartDopInfo {
        background-color: rgba(220, 53, 69, 0.25);
    }
}
.card.cardTotal .cartDopInfo .small {
    font-size: 14px;
}
#cart1.qc-details-mode #totals-wrap .js-open-quickcheckout-details,
#cart1.qc-details-mode #totals-wrap .cartDopInfo {
    display: none !important;
}
#cart1.qc-details-mode #totals-wrap .qc-details-disclaimer {
    display: block !important;
}
#cart1.qc-details-mode #totals-wrap #terms .terms {
    display: block !important;
}
.quickcheckoutCartControls {
    background-color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    margin-bottom: 24px;
}
.quickcheckoutCartControls button.qc-remove-selected {
    transition: color 0.2s ease;
    font-weight: 500;
    border-radius: 0;
    font-size: 16px;
}
.quickcheckoutCartControls .flexBox {
    gap: 8px;
}
.quickcheckoutCartControls .flexBox span {
    font-weight: 500;
    margin-top: 4px;
    display: inline-block;
}
.quickcheckout-cart-items .cart-item {
    display: flex;
    align-items: center;
    background-color: var(--white);
    transition: all 0.3s ease;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.075);
}
.quickcheckout-cart-items .cart-item .card-body {
    padding: 24px;
    flex: 1 1 auto;
}
@media (max-width: 1080px) {
    .quickcheckout-cart-items .cart-item .card-body {
        padding: 16px !important;
    }
}
@media (max-width: 480px) {
    .quickcheckout-cart-items .cart-item .card-body .row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .quickcheckout-cart-items .cart-item .card-body .row .col-12:first-child {
        grid-column-start: 1;
        grid-row-start: 1;
        grid-row-end: 3;
    }
}
.quickcheckout-cart-items .cart-item .productName {
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.25;
    max-height: 2.5em;
    transition: color 0.2s ease;
    color: var(--black);
    font-weight: 700;
    margin-bottom: 8px;
    max-width: 482px;
}
@media (max-width: 1080px) {
    .quickcheckout-cart-items .cart-item .productName {
        max-width: 249px;
    }
}
.quickcheckout-cart-items .cart-item .btnWishlist {
    transition: color 0.2s ease;
    color: var(--grey);
    display: flex;
    align-items: center;
    gap: 8px;
}
.quickcheckout-cart-items .cart-item .btnWishlist:hover {
    color: var(--red);
}
.quickcheckout-cart-items .cart-item .qty-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}
.quickcheckout-cart-items .cart-item .qty-btn:hover {
    background-color: #f1f5f9;
}
.quickcheckout-cart-items .cart-item .quantity {
    border-radius: 50rem;
    padding: 4px;
    border: 1px solid #dee2e6;
    margin-bottom: 4px;
    width: max-content;
}
.quickcheckout-cart-items h6.priceOne {
    font-size: 14px;
    color: #6c757d;
    line-height: 20px;
}
.quickcheckout-cart-items .imgCart {
    width: 100px;
    height: 100px;
}
@media (max-width: 480px) {
    .quickcheckout-cart-items .imgCart {
        width: max-content;
        height: auto;
    }
    .quickcheckout-cart-items h6.priceOne {
        text-align: right;
    }
}
@media (max-width: 1080px) {
    .quickcheckout-cart-items .cart-item .quantity {
        border: 1px solid #bebebe;
        width: max-content;
    }
}
@media (max-width: 480px) {
    .quickcheckout-cart-items .cart-item .quantity {
        margin-left: auto;
    }
}
.quickcheckout-cart-items .cart-item .quantity input {
    border: none;
    text-align: center;
    width: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1;
}
.quickcheckout-cart-items .cart-item .quantity {
    flex-shrink: 0;
}
.quickcheckout-cart-items .cart-item .cartPriceTitle {
    flex-shrink: 0;
    min-width: 7.5rem;
}
@media (max-width: 480px) {
    .quickcheckout-cart-items .cart-item .cartPriceTitle {
        margin-left: auto;
    }
}
.quickcheckout-cart-items .cart-item .cartPriceTitle h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    color: var(--black);
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1;
    white-space: nowrap;
}
.quickcheckout-cart-items .cart-item button.button-remove {
    padding: 8px;
    transition: color 0.2s ease;
}
.quickcheckout-cart-items .cart-item button.button-remove:hover {
    color: var(--red);
}
@media (max-width: 480px) {
    .checkout-container {
        padding: 0;
    }
    .quickcheckout-cart-modern .row .col-lg-8 {
        padding: 0;
    }
    .gridBlock {
        display: flex;
        flex-direction: column;
        padding: 16px !important;
    }
    #shipping-method .quickcheckout-content .row,
    #payment-method .quickcheckout-content .row {
        flex-direction: column;
    }
    #shipping-method .quickcheckout-content .row .col-md-6,
    #payment-method .quickcheckout-content .row .col-md-6 {
        width: 100%;
    }
}

/* --- Каталог (product/category), эталон katalog.html --- */
.card {
    margin-bottom: 24px;
    position: relative;
}
@media (max-width: 480px) {
    .card {
        margin-bottom: 0;
    }
}
.card .catalog-product-card__desc {
    height: 80px;
}
#product-category .card-body h5.card-title,
#product-search .card-body h5.card-title,
#product-hit .card-body h5.card-title {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 80px;
}
.catalog-products-column {
    padding-inline: 12px;
}
@media (max-width: 480px) {
    #product-category .card-body h5.card-title,
    #product-search .card-body h5.card-title,
    #product-hit .card-body h5.card-title {
        font-size: 14px;
        height: 56px;
        -webkit-line-clamp: 3;
        line-height: 19.2px;
        font-weight: 600;
        margin-bottom: 6px;
    }
    .catalog-product-card__desc {
        display: none;
    }
    .catalog-products-column {
        padding: 0;
        width: 100% !important;
    }
}
.catalog-products-grid {
    row-gap: 12px;
}
.catalog-product-card__desc ul.list-unstyled {
    flex-direction: column;
    min-height: 64px;
}
.catalog-total-line {
    padding-bottom: 4px;
}
.page-product-category .container {
    display: block;
    align-items: stretch;
    justify-content: flex-start;
}
.checkout-container {
    display: block;
    align-items: stretch;
    justify-content: flex-start;
}
.checkout-container #content {
    width: 100%;
}
.page-product-category .catalog-main-section > .row {
    width: 100%;
    margin-inline: 0;
}
.page-product-category .catalog-main-section > .row > [class*="col-"] {
    min-width: 0;
}
.page-product-category .breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.5rem;
}
.page-product-category .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding-right: 0.5rem;
    color: var(--grey);
}
.page-product-category .catalog-breadcrumb-link:hover,
.page-product-category .catalog-chip:hover {
    color: var(--hover-color) !important;
}
.page-product-category .catalog-chip {
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}
.page-product-category .catalog-chip.catalog-chip--active,
.page-product-category .catalog-chip.catalog-chip--active:hover {
    background-color: #dc2626 !important;
    border-color: #dc2626 !important;
    color: #fff !important;
}
.page-product-category .catalog-filter-column aside#column-left {
    width: 100% !important;
    max-width: none;
    float: none;
    display: block !important;
    padding: 0;
    margin: 0;
}
.page-product-category .catalog-filter-card .panel {
    border: none;
    box-shadow: none;
}
.page-product-category .catalog-filter-card #ocfilter .fixed_buttons {
    position: static;
    flex: 0 0 auto;
    flex-shrink: 0;
}
.page-product-category
    .catalog-filter-card
    #ocfilter
    .fixed_buttons
    .selected-options {
    padding: 0;
    border: 0;
    background: transparent;
}
.page-product-category .catalog-toolbar-select {
    min-width: 220px;
    box-shadow: none;
    cursor: pointer;
    padding: 8px 16px;
    background-color: #f8f9fa;
}
.page-product-category .catalog-toolbar-filter-btn {
    display: none;
}
@media (max-width: 480px) {
    .page-product-category .catalog-toolbar-filter-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 24px;
        height: 24px;
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--black);
        cursor: pointer;
    }
    .page-product-category .catalog-toolbar-filter-btn i,
    .page-product-category .catalog-toolbar-filter-btn svg {
        width: 24px;
        height: 24px;
    }
}
@media (max-width: 1080px) {
    .page-product-category .catalog-toolbar-select {
        background-color: #d8d8d8;
    }
}
.page-product-category .catalog-toolbar-limit {
    min-width: 72px;
    max-width: 100px;
}
.page-product-category .catalog-products-grid {
    width: 100%;
    margin-inline: 0;
}
@media (max-width: 480px) {
    .page-product-category .catalog-products-grid {
        gap: 10px;
        justify-content: space-between;
    }
}
@media (max-width: 450px) {
    .page-product-category .catalog-products-grid {
        display: flex;
        flex-direction: column;
    }
}
.page-product-category .catalog-products-grid > [class*="col-"] {
    padding-inline: 8px;
}
.page-product-category .catalog-products-grid .col-sm-6 {
    width: 50%;
}
@media (max-width: 480px) {
    .page-product-category .catalog-products-grid .col-sm-6 {
        width: calc(50% - 10px);
        padding: 0;
    }
}
@media (max-width: 450px) {
    .page-product-category .catalog-products-grid .col-sm-6 {
        width: 100%;
    }
}
@media (min-width: 1200px) {
    .page-product-category .catalog-products-grid .col-xl-4 {
        width: 33.333333%;
    }
}
.page-product-category .catalog-product-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    border: 1px solid transparent;
    color: inherit;
}
.page-product-category .catalog-product-card__link {
    color: inherit;
}
.page-product-category .catalog-product-card__footer {
    margin-top: auto;
}
.page-product-category .catalog-product-card__cart-wrap {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: stretch;
    gap: 0;
}
.page-product-category
    .catalog-product-card.is-in-cart
    .catalog-product-card__cart-wrap {
    gap: 8px;
}
.page-product-category
    .catalog-product-card.is-in-cart--animate
    .catalog-product-card__cart-wrap {
    transition: gap 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-product-category .catalog-product-card__cart-wrap .product-card-qty {
    border: 0 solid transparent;
    min-height: 0;
    display: flex;
    flex: 0 0 0;
    width: 0;
    min-width: 0;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    pointer-events: none;
    visibility: hidden;
    background: transparent;
    transform: translateX(10px) scale(0.98);
    transform-origin: right center;
}
.page-product-category .catalog-product-card.is-in-cart .product-card-qty {
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    min-height: 44px;
    max-width: 148px;
    border-width: 1px;
    border-color: #e5e7eb;
    background-color: var(--white);
    opacity: 1;
    padding: 4px;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0) scale(1);
}
.page-product-category
    .catalog-product-card.is-in-cart--animate
    .product-card-qty {
    transition:
        flex 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        width 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        max-width 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        min-height 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.32s ease 0.04s,
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        padding 0.35s ease,
        border-width 0.25s ease,
        border-color 0.25s ease,
        visibility 0s linear 0s;
}
.page-product-category
    .catalog-product-card.is-in-cart.is-in-cart--animate
    .product-card-qty {
    visibility: visible;
}
.page-product-category
    .catalog-product-card__cart-wrap
    .product-card-qty__input {
    min-width: 36px;
    width: 42px;
    background: transparent;
}
.page-product-category .catalog-product-card__cart-wrap .product-card-qty__btn {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.page-product-category .catalog-product-card__footer .btnAdd {
    flex: 1 1 0;
    width: 100%;
    min-width: 0;
    border-radius: 22px;
    background: var(--background);
    color: var(--white);
    padding-block: 13px;
    box-shadow: 0 2px 4px 0 #00000013;
    border: 1px solid transparent;
    box-sizing: border-box;
    font-weight: 600;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}
@media (max-width: 450px) {
    .page-product-category
        .catalog-product-card__footer
        .btnAdd.btnAdd--active {
        max-width: max-content;
    }
}
.page-product-category
    .catalog-product-card.is-in-cart
    .catalog-product-card__footer
    .btnAdd {
    width: auto;
    min-width: 48px;
}
.page-product-category
    .catalog-product-card.is-in-cart--animate
    .catalog-product-card__footer
    .btnAdd {
    transition:
        flex 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        width 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        min-width 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}
.page-product-category
    .catalog-product-card__footer
    .btnAdd
    .btnAdd__label--in-cart {
    display: none;
}
.page-product-category
    .catalog-product-card__footer
    .btnAdd.btnAdd--active
    .btnAdd__label--default {
    display: none;
}
.page-product-category
    .catalog-product-card__footer
    .btnAdd.btnAdd--active
    .btnAdd__label--in-cart {
    display: inline;
}
.page-product-category .catalog-product-card__footer .btnAdd .btnAdd__icon {
    display: none;
    flex-shrink: 0;
}
.page-product-category .catalog-product-card__footer .btnAdd .btnAdd__icon svg {
    width: 20px;
    height: 20px;
}
@media (max-width: 1080px) {
    .page-product-category
        .catalog-product-card.is-in-cart
        .catalog-product-card__footer
        .btnAdd
        .btnAdd__label--in-cart,
    .page-product-category
        .catalog-product-card__footer
        .btnAdd.btnAdd--active
        .btnAdd__label--in-cart {
        display: none !important;
    }
    .page-product-category
        .catalog-product-card.is-in-cart
        .catalog-product-card__footer
        .btnAdd
        .btnAdd__icon,
    .page-product-category
        .catalog-product-card__footer
        .btnAdd.btnAdd--active
        .btnAdd__icon {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }
}
.productContent .productBtns .productBtnsBox__cart .btnAdd .btnAdd__icon {
    display: none;
    flex-shrink: 0;
}
.productContent .productBtns .productBtnsBox__cart .btnAdd .btnAdd__icon svg {
    width: 20px;
    height: 20px;
}
@media (max-width: 1080px) {
    .productContent
        .productBtns
        .productBtnsBox__cart
        .btnAdd.btnAdd--active
        .btnAdd__label--in-cart {
        display: none !important;
    }
    .productContent
        .productBtns
        .productBtnsBox__cart
        .btnAdd.btnAdd--active
        .btnAdd__icon {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }
}
.page-product-category .catalog-product-card__footer .btnAdd:hover {
    color: var(--red);
    border-color: var(--hover-color);
    background: transparent;
}
.page-product-category .catalog-product-card__footer .btnAdd.btnAdd--active {
    color: var(--red);
    background: transparent;
    border-color: var(--red);
}
.page-product-category
    .catalog-product-card__footer
    .btnAdd.btnAdd--active:hover {
    background: var(--background);
    border-color: var(--background);
    color: var(--white);
}
.page-product-category
    .catalog-product-card:has(.catalog-product-card__link:hover) {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow) !important;
    border-color: var(--border-color);
}
.page-product-category .catalog-product-card__media {
    min-height: 220px;
    overflow: hidden;
}
@media (max-width: 480px) {
    .catalog-main-section {
        padding: 0;
    }
    .page-product-category .catalog-product-card__media {
        min-height: 150px;
        padding: 8px !important;
    }
}
.page-product-category .catalog-product-card__img {
    max-height: 200px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.page-product-category
    .catalog-product-card:has(.catalog-product-card__link:hover)
    .catalog-product-card__img {
    transform: scale(1.05);
}
.page-product-category .catalog-product-card__desc > p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.page-product-category .catalog-product-card__desc ul li {
    line-height: 1.35;
}
.page-product-category .catalog-product-card__desc ul li + li {
    margin-top: 0.2rem;
}
.page-product-category .catalog-star--full {
    color: #f59e0b;
    fill: #f59e0b;
}
.page-product-category .catalog-star--empty {
    color: #9ca3af;
    opacity: 0.45;
}
.page-product-category .btn-brand {
    background: var(--background);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}
.page-product-category .btn-brand:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}
.page-product-category .catalog-pagination .pagination {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 4px;
    justify-content: center;
}
.page-product-category .catalog-pagination .pagination a.page-link {
    color: #4b5563;
    border: none;
    margin: 0 4px;
    border-radius: 50% !important;
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
    padding: 0 10px;
    background: transparent;
}
.page-product-category .catalog-pagination .pagination a.page-link:hover {
    background-color: #fee2e2;
    color: #dc2626;
}
.page-product-category .catalog-pagination .pagination .page-item > span,
.page-product-category
    .catalog-pagination
    .pagination
    .page-item.active
    > .page-link {
    background-color: #dc2626;
    color: #fff;
    border-radius: 50% !important;
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    margin: 0 4px;
}
.page-product-category
    .catalog-pagination
    .pagination
    .page-item.active
    > .page-link {
    cursor: default;
    pointer-events: none;
}
.page-product-category
    .catalog-pagination
    .pagination
    .page-item-ellipsis
    > .page-link-ellipsis {
    background: transparent;
    color: #9ca3af;
    cursor: default;
    pointer-events: none;
    min-width: 32px;
    padding: 0 4px;
    letter-spacing: 0.1em;
}
.page-product-category .catalog-pagination .pagination .page-link-nav {
    color: #4b5563;
}
.page-product-category .catalog-pagination .pagination .page-link-nav svg,
.page-product-category .catalog-pagination .pagination .page-link-nav i {
    width: 20px;
    height: 20px;
}
.page-product-category .catalog-pagination .pagination .page-link-nav:hover {
    background-color: #fee2e2;
    color: #dc2626;
}
.page-product-category .rounded-4 {
    border-radius: 1rem !important;
}
.page-product-category .rounded-top-4 {
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
}
/* Ocfilter */
@media (max-width: 1080px) {
    .col-lg-3.catalog-filter-column {
        padding-inline: 0;
    }
}
@media (max-width: 480px) {
    .col-lg-3.catalog-filter-column {
        position: absolute;
        width: 0;
        height: 0;
        min-height: 0;
        padding: 0;
        margin: 0;
        overflow: visible;
        border: 0;
    }
}
.catalog-filter-column__placeholder {
    display: none;
}
@media (min-width: 992px) {
    .page-product-category .catalog-filter-column {
        align-self: stretch;
        padding-bottom: 136px;
        box-sizing: border-box;
        min-width: 0;
    }
}
.catalog-filter-card {
    padding: 24px;
    border: 1px solid #dee2e6;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow-x: clip;
}
@media (max-width: 1080px) {
    .catalog-filter-card {
        border: 1px solid #bebebe;
        padding-inline: 12px !important;
        width: 100%;
    }
}
.ocf-option-name {
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 16px;
}
.ocf-price-values {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    max-width: 100%;
}
.ocf-price-values .ocf-input-group {
    flex: 1 1 0;
    min-width: 0;
}
.ocf-price-values .ocf-input-group input {
    width: 100%;
    min-width: 0;
    border-radius: 8px;
    background-color: #f8f9fa;
    padding-block: 8px;
    border: 0;
    font-size: 14px;
    padding-inline: 8px;
}
.list-group-item.ocfilter-option {
    border: none;
}
@media (max-width: 1080px) {
    .list-group-item.ocfilter-option {
        padding-inline: 0;
    }
    .ocf-price-values .ocf-input-group input {
        background-color: #d8d8d8;
    }
    .ocf-option-values label {
        display: flex;
        line-height: 1;
        align-items: center;
        gap: 4px;
    }
}
.ocfilter-option .ocf-option-values {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 24px;
}
.ocfilter-option .ocf-option-values label {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
    min-width: 0;
    overflow-wrap: anywhere;
}
.ocfilter-option .ocf-option-values .badge {
    color: #6c757d;
    display: block;
    margin-left: auto;
}
@media (max-width: 1080px) {
    .ocfilter-option .ocf-option-values {
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
}
.ocfilter-option .ocf-option-values input[type="checkbox"] {
    width: 16px;
    height: 16px;
}
@media (max-width: 1080px) {
    .ocfilter-option .ocf-option-values input[type="checkbox"] {
        width: 12px;
        height: 12px;
    }
}
.ocfilter-option .ocf-option-values input[type="checkbox"]:checked {
    background-color: #dc2626;
    border-color: #dc2626;
}
.catalog-details-extra-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 24px;
}
.catalog-details-toggle__show,
.catalog-details-toggle__hide {
    font-weight: 500;
    margin-top: 8px;
    font-size: 14px;
    color: #dc3545;
}
.btnFilter {
    padding-block: 8px;
    font-weight: 600;
    margin-bottom: 8px;
}
.btnReset {
    font-weight: 500;
    padding-block: 8px;
}
.catalog-attrs-extra {
    margin-bottom: 24px;
}
.catalog-products-grid {
    margin-bottom: 48px;
}
.catalog-pagination-wrap {
    margin-bottom: 48px;
}
.catalog-scroll-sentinel {
    min-height: 1px;
}
.catalog-search-empty {
    min-height: 50vh;
    width: 100%;
}
.catalog-search-empty__btn {
    background-color: transparent;
    color: var(--red);
    border: 1px solid var(--red);
    transition: all 0.3s ease;
    padding: 16px 32px;
    border-radius: 800px;
}
.catalog-search-empty__btn:hover {
    background-color: var(--hover-color);
    color: var(--white);
    border-color: var(--hover-color);
}
.catalog-products-column p.lh-base {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 24px;
    color: var(--text-color);
}
/* Фильтр в колонке на десктопе; на мобильных — выезжающая шторка */
@media (min-width: 481px) {
    .page-product-category .catalog-filter-card #ocfilter {
        display: flex;
        flex-direction: column;
        max-width: 100%;
        min-width: 0;
    }
    .page-product-category .catalog-filter-card #ocfilter > .d-lg-flex {
        flex: 0 0 auto;
    }
    .page-product-category
        .catalog-filter-card
        #ocfilter
        > .catalog-filter-body {
        max-height: min(1145px, calc(100vh - 220px));
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        touch-action: pan-y;
        scrollbar-width: thin;
        scrollbar-color: #c8c8c8 transparent;
    }
    .page-product-category
        .catalog-filter-card
        #ocfilter
        > .catalog-filter-body::-webkit-scrollbar {
        width: 4px;
    }
    .page-product-category
        .catalog-filter-card
        #ocfilter
        > .catalog-filter-body::-webkit-scrollbar-track {
        background: transparent;
    }
    .page-product-category
        .catalog-filter-card
        #ocfilter
        > .catalog-filter-body::-webkit-scrollbar-thumb {
        background-color: #c8c8c8;
        border-radius: 999px;
    }
    .page-product-category
        .catalog-filter-card
        #ocfilter
        > .catalog-filter-body::-webkit-scrollbar-thumb:hover {
        background-color: #a8a8a8;
    }
}
@media (min-width: 1367px) and (max-width: 1920px) {
    .page-product-category
        .catalog-filter-card
        #ocfilter
        > .catalog-filter-body {
        max-height: min(480px, calc(100vh - 220px));
    }
}
@media (min-width: 992px) {
    .page-product-category .catalog-filter-offcanvas.offcanvas-lg {
        position: sticky;
        top: var(--catalog-filter-sticky-top, 124px);
        align-self: flex-start;
        z-index: 20;
        transform: none !important;
        visibility: visible !important;
        width: 100% !important;
        max-width: 100%;
        min-width: 0;
        height: auto;
        border: none !important;
        background: transparent !important;
    }
}
@media (min-width: 992px) {
    .page-product-category .catalog-filter-offcanvas .offcanvas-body {
        overflow: visible;
    }
}
@media (min-width: 992px) {
    .page-product-category .catalog-filter-offcanvas .offcanvas-header {
        display: none;
    }
}
@media (max-width: 480px) {
    .page-product-category .catalog-filter-offcanvas {
        width: 100vw !important;
        max-width: 100vw;
        height: 100%;
        max-height: 100dvh;
        z-index: 1095;
        border: 0;
        border-radius: 0;
        background: #fff;
        display: flex;
        flex-direction: column;
        min-height: 0;
    }
    .page-product-category .catalog-filter-offcanvas .offcanvas-body {
        overflow: hidden;
        display: flex;
        flex-direction: column;
        flex: 1 1 0;
        min-height: 0;
        padding: 0 16px 16px;
    }
    .page-product-category .catalog-filter-offcanvas .catalog-filter-card {
        border: 0;
        box-shadow: none;
        padding: 0;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        flex: 1 1 0;
        min-height: 0;
        max-height: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    .page-product-category
        .catalog-filter-offcanvas
        .catalog-filter-card
        aside#column-left {
        display: flex !important;
        flex-direction: column;
        width: 100% !important;
        float: none;
        padding: 0;
        margin: 0;
        flex: 1 1 0;
        min-height: 0;
        overflow: hidden;
    }
    .page-product-category
        .catalog-filter-offcanvas
        .catalog-filter-card
        #ocfilter {
        display: flex;
        flex-direction: column;
        flex: 1 1 0;
        min-height: 0;
        overflow: hidden;
    }
    .page-product-category
        .catalog-filter-offcanvas
        .catalog-filter-card
        #ocfilter
        > .catalog-filter-body {
        flex: 1 1 0;
        min-height: 0;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        touch-action: pan-y;
    }
    .page-product-category
        .catalog-filter-offcanvas
        .catalog-filter-card
        #ocfilter
        > .fixed_buttons {
        flex: 0 0 auto;
    }
    .offcanvas-backdrop.show {
        z-index: 1090;
    }
}

/* Список производителей: первые 4 всегда видны, остальные — в <details> (не зависит от Bootstrap .collapse) */
#ocfilter .catalog-vendors-extra,
#ocfilter .catalog-attrs-extra,
#ocfilter .catalog-categories-extra {
    display: flex;
    flex-direction: column;
}
#ocfilter .catalog-vendors-extra > summary,
#ocfilter .catalog-attrs-extra > summary,
#ocfilter .catalog-categories-extra > summary {
    order: 2;
    list-style: none;
    cursor: pointer;
}
#ocfilter .catalog-vendors-extra > .catalog-details-extra-body,
#ocfilter .catalog-attrs-extra > .catalog-details-extra-body,
#ocfilter .catalog-categories-extra > .catalog-details-extra-body {
    order: 1;
}
#ocfilter .catalog-vendors-extra > summary::-webkit-details-marker,
#ocfilter .catalog-attrs-extra > summary::-webkit-details-marker,
#ocfilter .catalog-categories-extra > summary::-webkit-details-marker {
    display: none;
}
/* Подпись «Показать все» / «Скрыть все» у <details> */
#ocfilter .catalog-details-toggle__hide {
    display: none;
}
#ocfilter .catalog-vendors-extra[open] .catalog-details-toggle__show,
#ocfilter .catalog-attrs-extra[open] .catalog-details-toggle__show,
#ocfilter .catalog-categories-extra[open] .catalog-details-toggle__show {
    display: none;
}
#ocfilter .catalog-vendors-extra[open] .catalog-details-toggle__hide,
#ocfilter .catalog-attrs-extra[open] .catalog-details-toggle__hide,
#ocfilter .catalog-categories-extra[open] .catalog-details-toggle__hide {
    display: inline;
}
/* Длинный список значений атрибута: внизу подпись «Скрыть все». */
#ocfilter .catalog-ocfilter-values-toggle__hide {
    display: none;
}
#ocfilter
    .collapse.show
    ~ .collapse-value
    .catalog-ocfilter-values-toggle__show {
    display: none;
}
#ocfilter
    .collapse.show
    ~ .collapse-value
    .catalog-ocfilter-values-toggle__hide {
    display: inline;
}

#common-success {
    height: 100%;
}
#common-success.container h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
}
#common-success.container p {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 25px;
}
#common-success.container a.btn {
    background: linear-gradient(to right, #e8354a, #d41229);
    color: white;
    border: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 22px;
}
#common-success.container a.btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}
@media (max-width: 1080px) {
    .katalogLinks a {
        font-size: 14px;
        padding-inline: 16px !important;
    }
}
/* Information */
#information-information h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}
.policy-doc {
    --policy-header-offset: 96px;
    font-size: 15px;
    line-height: 1.6;
    color: #222;
    min-height: calc(100vh - var(--policy-header-offset));
    padding-bottom: 40px;
    box-sizing: border-box;
}
.policy-doc h1,
.policy-doc h2,
.policy-doc h3 {
    margin: 0 0 12px;
    line-height: 1.3;
    color: #111;
}
.policy-doc h1 {
    font-size: 28px;
    margin-bottom: 16px;
}
.policy-doc h2 {
    font-size: 22px;
    margin-top: 26px;
}
.policy-doc h3 {
    font-size: 18px;
    margin-top: 18px;
}
.policy-doc p {
    margin: 0 0 12px;
}
.policy-doc ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start;
    width: 100%;
    gap: 0;
    margin: 0 0 12px 20px;
    padding: 0;
}
.policy-doc li {
    margin-bottom: 8px;
}
.policy-layout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    min-height: calc(100vh - var(--policy-header-offset));
}
.policy-nav {
    width: 290px;
    min-width: 240px;
    position: sticky;
    top: var(--policy-header-offset);
    max-height: calc(100vh - var(--policy-header-offset));
    overflow-y: auto;
    border: 1px solid #e9e9e9;
    border-radius: 12px;
    padding: 14px;
    background: #fff;
}
.policy-nav h3 {
    font-size: 16px;
    margin: 0 0 10px;
}
.policy-nav ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}
.policy-nav li {
    display: block;
    width: 100%;
    margin: 0 0 8px;
}
.policy-nav a {
    display: block;
    width: 100%;
    text-decoration: none;
    color: #333;
}
.policy-nav a:hover {
    color: #c00;
}
.policy-nav a.is-active {
    color: #c00;
    font-weight: 600;
    border-left: 3px solid #c00;
    padding-left: 8px;
    margin-left: -11px;
}
.policy-content {
    min-width: 0;
    flex: 1;
    min-height: calc(100vh - var(--policy-header-offset));
    box-sizing: border-box;
}
.policy-content::after {
    content: "";
    display: block;
    pointer-events: none;
}
.policy-meta {
    color: #666;
    margin-bottom: 14px;
}
.policy-content h2[id],
.policy-content h3[id] {
    scroll-margin-top: var(--policy-header-offset);
}
@media (max-width: 992px) {
    .policy-layout {
        flex-direction: column;
    }
    .policy-nav {
        position: static;
        width: 100%;
        min-width: 0;
        max-height: none;
        overflow: visible;
    }
    .policy-content::after {
        height: 0;
    }
}
.informationContent {
    padding-inline: 16px;
    padding-block: 32px;
}
.informationContent ul {
    flex-direction: column;
    list-style: disc;
    padding-left: 16px;
    margin-bottom: 16px;
}
.informationContent h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}
.informationContent p {
    margin-bottom: 16px;
}
.informationContent ul.number-list {
    flex-direction: column;
    list-style: decimal;
    gap: 16px;
    margin-bottom: 16px;
    counter-reset: lvl1;
    list-style: none;
}
.informationContent ul.number-list > li {
    counter-increment: lvl1;
}
.informationContent ul.number-list > li::before {
    content: counter(lvl1) ". ";
}
.informationContent ul.number-list li p {
    margin-bottom: 16px;
}
.informationContent ul.number-list li ul {
    flex-direction: column;
    list-style: disc;
    padding-left: 16px;
    margin-bottom: 16px;
}
.informationContent ul.number-list li ul.number-list-2 {
    counter-reset: lvl2;
    list-style: none;
    padding-left: 16px;
}
.search-modal {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.45);
    backdrop-filter: blur(2px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    z-index: 1200;
    padding: 25vh 24px 24px;
}
.search-modal.is-open {
    display: flex;
}
.search-modal__dialog {
    width: min(960px, 100%);
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 24px 48px rgba(17, 24, 39, 0.2);
    position: relative;
}
.search-modal__input {
    flex: 1;
    border: none;
    border-radius: 24px;
    background: #d8d8d8;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 16px;
}
.search-modal__input:focus,
.search-modal__input:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.35);
}
.search-modal__input-wrap {
    position: relative;
    flex: 1;
    display: flex;
}
.search-modal__input-wrap .search-modal__input {
    width: 100%;
    padding: 21.5px 24px;
}
.searchBtnGroup {
    display: flex;
    align-items: center;
    gap: 16px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 24px;
}
.search-modal__clear {
    width: 32px;
    height: 32px;
    font-size: 20px;
    padding: 6px;
    line-height: 1;
    color: black;
    display: none;
    align-items: center;
    justify-content: center;
}
.search-modal__clear.is-visible {
    display: inline-flex;
}
.search-modal__input-wrap .search-modal__input:focus-visible {
    border: 1px solid var(--red);
}
.search-modal__input-wrap .search-modal__input:focus {
    border: 1px solid var(--red);
}
.search-modal__submit {
    border-radius: 24px;
    padding: 12px 24px;
    color: #fff;
    background: linear-gradient(to right, #e8354a, #d41229);
    font-weight: 700;
}
.sphinxsearch {
    top: 80px;
    border: none;
    display: none;
    width: 960px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    background: #fff;
    z-index: 10;
    padding: 24px;
    border-end-end-radius: 16px;
    border-end-start-radius: 16px;
    overflow: hidden;
}
.sphinxsearch img {
    display: none;
}
.sphinxsearch .categories,
.sphinxsearch .products {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 60px;
}
.sphinxsearch .products {
    margin-bottom: 16px;
}
.sphinxsearch .categories span,
.sphinxsearch .products span {
    font-weight: 700;
    margin-bottom: 3px;
}
.sphinxsearch .categories a,
.sphinxsearch .products a {
    display: block;
    color: var(--text-color);
}
.sphinx-viewall a {
    color: var(--red);
}
.informationContent ul.number-list li ul.number-list-2 > li {
    counter-increment: lvl2;
}
.informationContent ul.number-list li ul.number-list-2 > li::before {
    content: counter(lvl1) "." counter(lvl2) " ";
}
.errorBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
    height: 50vh;
}
.errorBox h1 {
    font-size: 40px;
    font-weight: 700;
}
@media (max-width: 480px) {
    .search-modal {
        top: 0;
        position: absolute;
        padding-top: 0;
        width: 100%;
        padding-inline: 0;
    }
    .search-modal__dialog {
        padding: 16px;
        border-radius: 0;
    }
    .searchBtnGroup {
        display: none;
    }
    .search-modal__input {
        padding-block: 10.5px;
    }
    .sphinxsearch {
        width: 100%;
    }
}

/* d1sc0nnect0r — fullscreen popup banners (kiosk 1080x1920 only) */
@media not screen and (min-width: 1000px) and (max-width: 1200px) and (orientation: portrait) and (min-height: 1600px) {
    #popup_banners_holder {
        display: none !important;
    }
}

html.popup-banner-open,
body.popup-banner-open {
    overflow: hidden !important;
    height: 100%;
    max-height: 100%;
}

#popup_banners_holder {
    inset: 0;
    position: fixed;
    display: none;
    width: auto;
    height: auto;
    overflow: hidden;
    overscroll-behavior: none;
    z-index: 10000;
    touch-action: manipulation;
    cursor: pointer;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#popup_banners_holder::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

#popup_banners_holder .popup_banners {
    display: flex;
    justify-content: center;
    align-items: center;
    inset: 0;
    width: auto;
    height: auto;
    position: absolute;
    overflow: hidden;
}

/* 👇 САМОЕ ГЛАВНОЕ - ограничиваем изображение */
#popup_banners_holder .popup_banners > * {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* Сохраняет пропорции */
}

#popup_banners_holder .popup_backdrop {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 60%;
    pointer-events: none;
}
