@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

.montserrat-500 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

:root,
[data-bs-theme="light"] {
    /* Bootstrap 5.3+ */
    --bs-font-sans-serif: "Montserrat", system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
    --bs-font-monospace: Roboto, ui-monospace, SFMono-Regular, Menlo, Monaco,
    Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-body-font-family: var(--bs-font-sans-serif);

    --fc-font-sans-serif: var(--bs-font-sans-serif);
    --fc-font-monospace: var(--bs-font-monospace);
}

body {
    font-family: var(--bs-body-font-family), serif !important;
}

#site-header .ico-wrap > .badge,
#site-sticky-header .ico-wrap > .badge {
    position: absolute;
    top: -6px;
    right: -6px;
    --fc-badge-padding-x: 0;
    --fc-badge-padding-y: 0;
    --fc-badge-border-radius: 50%;
    min-width: 22px;
    height: 22px;
    line-height: 22px;
    border: 1px solid #fff;
    background: var(--green);
    font-family: var(--bs-font-sans-serif), serif;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
}

#site-header .search-wrap .btn,
#site-sticky-header .h-desktop .btn,
#site-sticky-header .h-tablet .btn,
#site-sticky-header .h-mobile .btn {
    --fc-btn-bg: var(--green);
    --fc-btn-border-color: var(--green);
    --fc-btn-color: #fff;
    --fc-btn-font-weight: 700;
    --fc-btn-line-height: 1.2;

    padding: 10px 64px;
    margin-left: 8px;
    border-radius: calc(var(--radius) - 6px);
    background-color: var(--fc-btn-bg);
    border: 1px solid var(--fc-btn-border-color);
    color: var(--fc-btn-color);
    font-size: 16px;
    font-weight: 600;
}

#site-sticky-header .h-desktop .btn,
#site-sticky-header .h-tablet .btn,
#site-sticky-header .h-mobile .btn {
    padding: 10px 15px;
    margin-left: 0;
}

#site-sticky-header .h-tablet .btn.input-btn,
#site-sticky-header .h-mobile .btn.input-btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

#site-header .search-wrap .btn:hover,
#site-sticky-header .h-desktop .btn:hover,
#site-sticky-header .h-tablet .btn:hover,
#site-sticky-header .h-mobile .btn:hover {
    filter: brightness(0.95);
}

#site-sticky-header .custom-green-border {
    border: 1px solid var(--green);
}

@media (min-width: 1025px) {
    :root {
        --sticky-top: 0px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    :root {
        --sticky-top: 0px;
    }
}

@media (max-width: 768px) {
    :root {
        --sticky-top: 0px;
    }
}

#site-sticky-header.sticky-header {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--sticky-top, 0);
    z-index: 9999;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-110%); /* скрыта */
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.2s ease;
    will-change: transform, opacity;
}

#offcanvasCategory {
    z-index: 13000;
}

body.offcanvas-open .offcanvas-backdrop {
    z-index: 12000;
}

body.category-offcanvas-open #site-sticky-header {
    z-index: 9000;
    pointer-events: none;
}

@media (max-width: 1024px) {
    body.offcanvas-open #sticky {
        z-index: 11000 !important;
    }
}

#site-sticky-header.sticky-header.is-visible {
    transform: translateY(0);
    opacity: 1;
}

#site-sticky-header .h-desktop,
#site-sticky-header .h-tablet,
#site-sticky-header .h-mobile {
    display: none;
}

@media (min-width: 1025px) {
    #site-sticky-header .h-desktop {
        display: block;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    #site-sticky-header .h-tablet {
        display: block;
    }
}

@media (max-width: 768px) {
    #site-sticky-header .h-mobile {
        display: block;
    }
}

.h-mobile .mb-search {
    border: 1px solid var(--green);
    border-radius: 0.75rem;
    overflow: hidden;
}

.h-mobile .mb-search .input-group-text,
.h-mobile .mb-search .form-control {
    border: none;
}

.h-mobile .btn,
.h-mobile .input-group-text,
.h-mobile .form-control {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
}

.h-mobile .mb-search {
    margin-top: 0.25rem;
}

body.sticky-padding {
    padding-top: var(--sticky-h, 0px);
}

#site-header .badge:empty,
#site-sticky-header .badge:empty {
    display: none;
}

@media (min-width: 1200px) {
    #site-header.container,
    #site-header.container-lg,
    #site-header.container-md,
    #site-header.container-sm,
    #site-header.container-xl,
    #site-header.container-xxl {
        max-width: 1200px;
    }

    #site-sticky-header .custom-green-border {
        line-height: 24px;
    }

    #site-sticky-header .btn-success {
        line-height: 20px;
    }
}

@media screen and (min-device-width: 1001px) and (max-device-width: 2000px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        padding-top: 30px !important;
    }
}

@media screen and (min-device-width: 768px) and (max-device-width: 1000px) {
    .sticky-header .container {
        padding-top: 30px !important;
    }
}

@media (min-width: 769px) {
    #site-header .header-nav {
        display: block !important;
        max-height: none !important;
        overflow: visible !important;
    }

    #site-header.container,
    #site-header.container-lg,
    #site-header.container-md,
    #site-header.container-sm,
    #site-header.container-xl,
    #site-header.container-xxl {
        padding-left: 0;
        padding-right: 0;
        padding-top: 86px !important;
    }

    #site-header .cats {
        justify-content: center;
        column-gap: 27px;
        row-gap: 0;
    }

    #site-sticky-header .custom-green-border {
        line-height: 24px;
    }

    #site-sticky-header .btn-success {
        line-height: 20px;
    }
}

@media (max-width: 768px) {
    #site-sticky-header .container,
    #site-sticky-header .container-lg,
    #site-sticky-header .container-md,
    #site-sticky-header .container-sm,
    #site-sticky-header .container-xl,
    #site-sticky-header .container-xxl,
    #site-header.container,
    #site-header.container-lg,
    #site-header.container-md,
    #site-header.container-sm,
    #site-header.container-xl,
    #site-header.container-xxl {
        padding-left: 0;
        padding-right: 0;
        padding-top: 0 !important;
        width: 100%;
        max-width: none;
    }

    #site-sticky-header .container,
    #site-sticky-header .container-lg,
    #site-sticky-header .container-md,
    #site-sticky-header .container-sm,
    #site-sticky-header .container-xl,
    #site-sticky-header .container-xxl {
        padding-top: 20px !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    #site-header .search-wrap .btn {
        padding: 10px;
        border-radius: calc(var(--radius) - 6px);
        background-color: var(--fc-btn-bg);
        border: 1px solid var(--fc-btn-border-color);
        color: var(--fc-btn-color);
        font-size: 0;
    }

    #site-header .header-nav {
        display: none !important;
    }

    footer.footer-wrap .container {
        padding-top: 10px !important;
    }
}

/* mob menu */
[hidden] {
    display: none !important;
}

/* Drawer */
.drawer {
    position: fixed;
    inset: 70px auto 0 0;
    width: 85vw;
    max-width: 360px;
    height: calc(100% - 70px);
    background: #fff;
    box-shadow: 2px 0 16px rgba(0, 0, 0, 0.2);
    transform: translateX(-100%); /* вне экрана */
    opacity: 0; /* для fade */
    transition: transform 0.25s ease, opacity 0.2s ease;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    will-change: transform, opacity;
}

.drawer.is-open {
    transform: translateX(0);
    opacity: 1;
}

.drawer__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
}

.drawer__close {
    font-size: 24px;
    line-height: 1;
    background: none;
    border: 1px solid #333;
    cursor: pointer;
}

.drawer__body {
    padding: 6px 16px 24px;
    overflow: auto;
}

.drawer__body .cats {
    display: inline-block;
    list-style: none;
    width: 100%;
}

.drawer__body .cats li {
    display: block;
    border-bottom: 1px solid #f2f2f2;
}

.drawer__body .cats a {
    display: block;
    padding: 14px 0;
    color: #1f2d1f;
    text-decoration: none;
}

/* Backdrop */
.drawer__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1095;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.drawer__backdrop.is-visible {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .drawer,
    .drawer__backdrop {
        transition: none;
    }
}

@layer headerOverrides {
    :root {
        --green: #1FA966; /* main green */
        --green-hover: #186F45; /* main hover green */
        --text: #183110; /* main text */
        --muted: #0e1d0980; /* secondary text */
        --accent: #bd2a5a; /* accent text */
        --border: #e5e7eb;
        --gray: #e0e5eb;
        --price-color: #1154C1;
        --radius: 14px;
        --sticky-h: 36px;
    }

    #site-header {
        padding-top: 18px;
        padding-bottom: 8px;
        color: var(--text);
    }

    #site-header .menu-btn {
        display: none;
    }

    /* === Top line =================================================== */
    #site-header .header-top {
        gap: 16px;
    }

    /* 1 column */
    #site-header .contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: var(--text);
    }

    #site-header .contact > img.ico {
        display: block;
    }

    #site-header .contact-main,
    #site-sticky-header .h-desktop .contact-main,
    #site-sticky-header .h-tablet .contact-main,
    #site-sticky-header .h-mobile .contact-main {
        padding-top: 8px;
        font-weight: 700;
        font-size: 20px;
        color: var(--text);
        line-height: 1.05;
        letter-spacing: 0.01em;
    }

    #site-sticky-header .h-desktop .contact-main,
    #site-sticky-header .h-tablet .contact-main,
    #site-sticky-header .h-mobile .contact-main {
        font-size: 16px;
    }

    #site-header .contact-sub,
    #site-sticky-header .h-desktop .contact-sub,
    #site-sticky-header .h-tablet .contact-sub {
        margin-top: -4px;
        font-size: 14px;
        color: var(--text);
    }

    #site-sticky-header .h-desktop .contact-sub,
    #site-sticky-header .h-tablet .contact-sub {
        font-size: 12px;
        margin-top: 0;
    }

    /* 2 column */
    #site-header .brand {
        text-decoration: none;
        color: var(--text);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        min-width: 280px;
        padding-left: 0.5em;
    }

    #site-header .brand-logo {
        display: block;
        height: 63px;
        width: auto;
    }

    #site-header .brand-sub {
        font-size: 14px;
        color: var(--muted);
        margin-top: 2px;
    }

    #site-header .header-sub {
        gap: 16px;
        display: flex;
        align-items: center;
    }

    #site-header .header-sub .brand-issue {
        font-weight: 700;
        color: var(--accent);
        margin-top: 16px;
        font-size: 16px;
        font-style: italic;
    }

    /* 3 column */
    #site-header .actions {
        display: flex;
        gap: 28px;
        align-items: flex-start;
    }

    #site-header .act {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: var(--text);
        font-size: 14px;
        line-height: 1.1;
        text-align: center;
    }

    #site-header .act span {
        color: var(--text);
        font-size: 14px;
        line-height: 1.1;
        text-align: center;
        padding-top: 0.5rem;
    }

    #site-header .act.hidden {
        display: none;
    }

    #site-header .short-title {
        display: none;
    }

    #site-header .long-title {
        display: block;
    }

    #site-header .ico {
        display: block;
    }

    #site-header .ico-wrap {
        position: relative;
        display: inline-block;
    }

    /* === Search ============================================================ */
    #site-header .header-search {
        margin-top: 16px;
    }

    #site-header .search-wrap {
        display: flex;
        gap: 12px;
        align-items: center;
    }

    #site-header .search-wrap .form-control {
        box-shadow: none;
        font-size: 14px;
        border: 1px solid var(--green) !important;
        padding-left: 40px !important;
        background: url("../images/header_images/search.svg") no-repeat 12px center;
        background-size: 18px 18px;
    }

    #site-header .search-wrap .form-control:focus {
        outline: none;
    }

    /* === Menu ====================================================== */
    #site-header .header-nav {
        margin-top: 28px;
        margin-bottom: 20px;
    }

    #site-header .cats {
        display: flex;
        flex-wrap: wrap;
        gap: 36px;
        list-style: none;
        padding: 0 !important;
        margin: 0 !important;
        justify-content: space-between;
    }

    #site-header .cats a {
        text-decoration: none;
        color: var(--text) !important;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: -0.01em;
    }

    #site-header .cats a:hover {
        color: #0a0a0a;
    }

    /*@media (max-width: 576px)*/
    @media (max-width: 768px) {
        #site-header .header-top {
            display: grid !important;
            grid-template-columns: 1fr auto 1fr;
            grid-template-rows: auto auto auto;
            column-gap: 12px;
            row-gap: 14px;
            align-items: center;
            letter-spacing: 0.01em;
        }

        /* ====== Contact ====== */
        #site-header .contact {
            display: grid;
            grid-template-columns: 32px auto;
            grid-template-rows: auto auto;
            column-gap: 10px;
            justify-content: center;
            align-items: center;
            grid-column: 1 / -1;
            grid-row: 1;
            padding: 10px 14px;
            height: 70px;
            background: var(--accent);
            color: #fff;
            text-decoration: none;
            letter-spacing: 0.01em;
        }

        #site-header .contact > img.ico {
            grid-column: 1;
            grid-row: 1 / span 2;
            display: block;
            content: url("../images/header_images/call_white.svg");
        }

        #site-header .contact-main {
            grid-column: 2;
            grid-row: 1;
            padding-top: 8px;
            font-size: 18px;
            font-weight: 700;
            text-align: center;
            color: #fff;
            line-height: 1.1;
            margin: 0;
        }

        #site-header .contact-sub {
            grid-column: 2;
            grid-row: 2;
            font-size: 14px;
            font-weight: 500;
            color: #fff;
            margin-top: -16px;
        }

        /* -- 1 mob column -- */
        #site-header .menu-btn {
            grid-column: 1;
            grid-row: 2;
            justify-self: start;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            color: var(--text);
            padding-left: 20px;
            padding-top: 28px;
        }

        #site-header .menu-btn .ico {
        }

        #site-header .menu-btn .menu-text {
            font-size: 12px;
            padding-left: 6px;
            color: var(--text);
        }

        /* -- 2 mob column -- */
        #site-header .brand {
            display: contents;
        }

        #site-header .header-sub .brand-issue {
            grid-column: 1 / -1;
            grid-row: 3;
            justify-self: center;
            margin-top: 0;
            color: var(--accent);
            font-weight: 500;
            font-size: 14px;
            letter-spacing: -0.01em;
        }

        #site-header .brand-logo {
            display: block;
            height: 40px;
            width: auto;
            margin-top: 22px;
        }

        /* -- 3 mob column -- */
        #site-header .actions {
            grid-column: 3;
            grid-row: 2;
            justify-self: end;
            display: grid;
            padding-right: 20px;
            padding-top: 18px;
        }

        #site-header .actions .act {
            display: none;
        }

        #site-header .actions .act:last-child {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 500;
        }

        #site-header .actions .act:last-child span {
            font-size: 12px;
            font-weight: 500;
            padding-top: 0;
        }

        #site-header .actions .ico {
            width: 24px;
            height: 24px;
        }

        #site-header .badge {
            top: -6px;
            right: -8px;
            min-width: 16px;
            height: 16px;
            line-height: 16px;
            font-size: 10px;
        }

        #site-header .short-title {
            display: block;
        }

        #site-header .long-title {
            display: none;
        }

        /* ====== Mob Search ====== */
        #site-header .header-search {
            padding-left: 20px;
            padding-right: 20px;
        }

        #site-header .header-search .search-wrap {
            position: relative;
            width: 100%;
            margin-bottom: 20px;
        }

        #site-header .header-search .form-control {
            width: 100%;
            padding-right: 60px;
            border-radius: 25px;
        }

        #site-header .header-search .btn {
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            border-radius: 0 25px 25px 0;
            padding: 0 15px;
        }

        #site-header .header-search .btn::after {
            content: "OK";
            font-size: 16px;
            font-weight: 700;
        }

        #site-header .header-search .btn span,
        #site-header .header-search .btn::before {
            display: none;
        }
    }
}

@import layer(headerOverrides);

/* Footer */
.footer-wrap {
    background: #fff;
}

.footer-box {
    background: var(--accent);
    color: #fff;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.footer-wrap.py-4 {
    padding-bottom: 0 !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 124px 124px 124px 434px 124px 1fr;
    column-gap: 46px;
    row-gap: 24px;
}

.footer-box .f-multi-col {
    display: grid;
    grid-template-columns: 124px 1fr;
    column-gap: 46px;
    row-gap: 24px;
    align-items: start;
}

.footer-box .f-multi-col .f-bottom {
    grid-column: 1 / -1;
}

.footer-box h6.text-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.footer-box a {
    color: var(--gray) !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.footer-box a:hover {
    text-decoration: underline;
}

.footer-box span.text-footer-muted,
.footer-box a.text-footer-muted {
    color: var(--gray) !important;
    font-size: 12px;
    font-weight: 400;
}

.footer-box a.text-footer-muted:hover,
.footer-box span.text-footer-muted:hover {
    text-decoration: none;
}

.footer-box ul {
    margin: 0;
    padding: 0;
}

.footer-box li {
    margin: 0.25rem 0;
}

.footer-box .py-1-5 {
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
}

.footer-subscribe .form-control {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 6px 0 0 6px;
    border-right: none;
}

.footer-subscribe .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.footer-subscribe .form-control:focus {
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.footer-subscribe .btn {
    border-radius: 0 6px 6px 0;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-left: none;
    color: #fff;
    padding: 0 12px;
    border-left: none !important;
}

.footer-subscribe .btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.footer .text-secondary {
    color: var(--gray) !important;
    font-size: 14px;
    font-weight: 500;
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 48px 124px 124px 434px 48px 1fr;
        column-gap: 40px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .footer-wrap {
        background: var(--accent);
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

    .footer-box {
        background: transparent;
    }

    .footer-grid {
        grid-template-columns: 10px 100px 110px 400px 10px 1fr;
        column-gap: 20px;
    }
}

@media (max-width: 768px) {
    .footer-wrap {
        background: var(--accent);
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        padding-top: 0 !important;
    }

    .footer-box {
        background: transparent;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        column-gap: 20px;
    }

    .footer-grid .f-empty,
    .footer-grid .f-subscribe {
        display: none !important;
    }

    .footer-box .f-sm-hide {
        display: none;
    }

    .footer-box .f-legal {
        align-self: flex-end;
        margin-bottom: 12px;
    }
}

/** Hero block main page **/
.promo-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 285px 590px 285px;
    gap: 20px;
    align-items: stretch;
}

.promo-col {
    display: grid;
    row-gap: 16px;
}

.promo-grid .col-1,
.promo-grid .col-2,
.promo-grid .col-3 {
    width: 100%;
}

.promo-col .two-up {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.promo-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #f2f2f2;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    color: inherit;
    text-decoration: none;
}

.promo-card-img {
    position: relative;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.promo-card-img:hover {
    transform: scale(1.02);
    transition: transform 0.25s ease;
}

.promo-card-content {
    position: absolute;
    inset: 18px 16px 16px 20px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    z-index: 1;
}

.super .promo-card-content {
    inset: 18px 16px 16px 60px;
}

.promo-card-title {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    font-size: 18px;
    margin-top: 8px;
    text-transform: uppercase;
}

.super .promo-card-title {
    font-weight: 800;
    color: #fff;
    font-size: 64px;
}

.super .promo-card-title span {
    font-weight: 800;
    color: #fff;
    font-size: 28px;
}

.promo-card-subtitle {
    font-weight: 400;
    line-height: 1.2;
    color: var(--text);
    font-size: 16px;
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .promo-card-title, .promo-card-subtitle {
        font-size: 14px;
    }
}

.super .promo-card-subtitle {
    color: #fff;
}

.promo-card-btn {
    display: flex;
    padding: 4px 20px;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    transition: transform 0.15s ease, filter 0.15s ease;
    cursor: pointer;
    width: 121px;
    max-height: 34px;
    align-self: start;
    margin-top: auto;
}

.super .promo-card-btn {
    background: #fff;
    color: var(--accent);
    padding: 4px 18px;
    font-weight: 700;
    margin-top: 10px;
}

@media (max-width: 1200px) and (min-width: 991px) {
    .promo-grid {
        grid-template-columns: 233px 466px 233px;
        gap: 14px;
        max-width: 960px;
    }
}

@media (max-width: 990px) and (min-width: 769px) {
    .promo-grid {
        grid-template-columns: 186px 372px 186px;
        gap: 12px;
        max-width: 768px;
    }

    .promo-card-content {
        inset: 12px 12px 12px 14px;
    }

    .promo-card-title {
        font-size: 14px;
        line-height: 1.2;
        margin-top: 4px;
    }

    .promo-card-subtitle {
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    .promo-grid {
        gap: 14px;
    }

    .promo-col .two-up {
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .promo-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 0 20px;
        grid-template-areas:
      "g4 g4" /* 1 row */
      "g2 g1" /* 2 row: left g1, right g5 */
      "g2 g3" /* 3 row: left g2, right g3 (теперь здесь g3) */
      "g7 g7" /* 3 row */
      "g5 g9" /* 4 row, column 2: left g3, right g9 */
      "g6 g9" /* 6 row: left g6, right g9 (теперь здесь g6) */
      "g8 g8";
    }

    .promo-col,
    .promo-col .two-up {
        display: contents;
    }

    .g1 {
        grid-area: g1;
    }

    .g2 {
        grid-area: g2;
    }

    .g3 {
        grid-area: g3;
    }

    .g4 {
        grid-area: g4;
    }

    .g5 {
        grid-area: g5;
    }

    .g6 {
        grid-area: g6;
    }

    .g7 {
        grid-area: g7;
    }

    .g8 {
        grid-area: g8;
    }

    .g9 {
        grid-area: g9;
    }

    .g8,
    .g7 {
        height: auto; /* убираем фикс. высоту */
        aspect-ratio: 16 / 9; /* или нужное соотношение */
        overflow: hidden;
    }

    .g8 .promo-card-img,
    .g7 .promo-card-img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* обрезает лишнее, не тянет */
        display: block;
    }

    /*.g8, .g7 {*/
    /*    height: 164px;*/
    /*    overflow: hidden;*/
    /*}*/
    /*.g8 img,*/
    /*.g7 img {*/
    /*    max-height: 100%;*/
    /*    object-fit: cover;*/
    /*    width: 100%;*/
    /*}*/
    .btn-desc {
        display: none;
    }

    .super .promo-card-content {
        inset: 18px 16px 16px 16px;
        margin: auto;
    }
}

#site-sticky-header .multi-field .input-group {
    border: 1.5px solid var(--green);
    border-radius: 12px;
    overflow: hidden;
}

#site-sticky-header .multi-field .input-group > .input-group-text,
#site-sticky-header .multi-field .input-group > .form-control {
    border: 0 !important;
    box-shadow: none !important;
}

#site-sticky-header .multi-field .input-group:focus-within {
    border-color: #2b7a2b;
    box-shadow: 0 0 0 3px rgba(79, 169, 51, 0.18);
}

#site-sticky-header .multi-field .input-group > .input-group-text {
    display: inline-flex;
    align-items: center;
    background: #fff;
}

#site-sticky-header .multi-field .input-group > .form-control {
    padding-left: 0.25rem;
}

.kb-open #site-sticky-header,
#site-sticky-header.freeze {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

.kb-open body {
    padding-top: var(--sticky-h, 0px);
}

#kb-backdrop[hidden] {
    display: none;
}

#kb-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1090;
    background: transparent; /* кликабельная «пустая» область */
}

/** ------- Category section -------- **/
:root {
    --cat-radius: 12px;
    --cat-gap: 22px;
    --cat-bg1: #e7f1e6;
    --cat-bg2: #f5e7ee;
    --cat-bg3: #e6f0fb;
    --cat-bg4: #eaf7ef;
}

.container-all-product {
    padding-top: 0 !important;
}

/*END Category grid*/

/* PC ≥1200px  */
.cats-wrap {
    max-width: 1200px;
    margin-top: 24px;
}

.cats-title {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text);
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(6, 181px);
    grid-auto-rows: 181px;
    gap: var(--cat-gap);
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.row > .cat-grid {
    padding-left: var(--bs-gutter-x, 0.75rem);
    padding-right: var(--bs-gutter-x, 0.75rem);
    box-sizing: border-box;
}

.cat-card {
    width: 181px;
    height: 181px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 10px;
    box-sizing: border-box;
    margin: 0 !important;
    color: var(--text);
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
}

.cat-ico {
    display: block;
    width: 96px;
    height: auto;
    max-width: 120px;
    max-height: 110px;
    object-fit: contain;
    margin: 0 auto;
}

.cat-name {
    margin: 0;
    max-width: 90%;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.cat-card.bg-green {
    background: #e5f2e0;
}

.cat-card.bg-pink-light {
    background: #be2b5a26;
}

.cat-card.bg-blue-light {
    background: #0d6fde26;
}

.cat-card.bg-accent {
    background: #bd2a5a;
    color: #fff;
}

.cat-cta {
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-cta-text {
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.25;
}

.cat-cta .cta-3l,
.cat-cta .cta-2l {
    display: none;
    text-align: center;
}

@media (min-width: 1200px) {
    .cat-grid {
        grid-template-columns: repeat(6, 181px);
        grid-auto-rows: 181px;
        gap: var(--cat-gap);
    }

    .cat-grid.cat-grid--limit-8 > .cat-card:not(.cat-cta):nth-of-type(n + 12) {
        display: none !important;
    }

    .cat-cta .cta-3l {
        display: block;
    }
}

/* ---------- Tablet 990–1199px (5×2) ---------- */
@media (min-width: 990px) and (max-width: 1199px) {
    .cats-wrap {
        max-width: 960px;
    }

    .cat-grid {
        grid-template-columns: repeat(5, 181px);
        grid-auto-rows: 181px;
        gap: 16px;
        justify-content: center;
        max-width: calc(5 * 181px + 4 * 16px);
    }

    .cat-grid.cat-grid--limit-8 > .cat-card:not(.cat-cta):nth-of-type(n + 10) {
        display: none !important;
    }

    .cat-grid.cat-grid--limit-8 > .cat-cta {
        grid-column: 5;
        grid-row: 2;
    }

    .cat-cta .cta-3l {
        display: block;
    }
}

/* ---------- Tablet 769–989px (4×2) ---------- */
@media (min-width: 769px) and (max-width: 989px) {
    .cats-wrap {
        max-width: 768px;
    }

    .cat-grid {
        grid-template-columns: repeat(4, 181px);
        grid-auto-rows: 181px;
        gap: 15px;
        justify-content: center;
        max-width: calc(4 * 181px + 3 * 15px);
    }

    .cat-grid.cat-grid--limit-8 > .cat-card:not(.cat-cta):nth-of-type(n + 8) {
        display: none !important;
    }

    .cat-grid.cat-grid--limit-8 > .cat-cta {
        grid-column: 4;
        grid-row: 2;
    }

    .cat-cta .cta-3l {
        display: block;
    }
}

/* ---------- Mobile ≤768px ---------- */
@media (max-width: 768px) {
    .cats-wrap {
        padding: 0 20px !important;
    }

    .cat-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: auto;
        gap: 12px;
        align-items: start;
    }

    .cat-card {
        position: relative;
        padding: 0;
        width: auto;
        height: auto;
        overflow: hidden;
        border-radius: 12px;
        background-clip: padding-box;
    }

    .cat-card::before {
        content: "";
        display: block;
        padding-top: 100%;
    }

    .cat-card .cat-stack {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: clamp(8px, 3.5vw, 14px);
        padding: clamp(10px, 3vw, 14px);
    }

    .cat-card .cat-ico {
        display: block;
        width: 40%;
        height: auto;
        object-fit: contain;
    }

    .cat-card .cat-name {
        margin: 0;
        max-width: 90%;
        text-align: center;
        font-weight: 600;
        line-height: 1.2;
        font-size: clamp(13px, 3.8vw, 16px);
    }

    .cat-cta {
        grid-column: 1 / -1;
        height: clamp(52px, 14vw, 60px);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cat-cta .cta-2l {
        display: block;
    }
}

/** ------- END category section ---------- **/

/** ----- Product Cart ------ **/
.object-fit-contain {
    object-fit: contain;
}

.bestsellers {
    max-width: 1200px;
    margin-top: 24px;
}

.product-card {
    max-width: 285px;
    min-height: 504px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;

    position: relative;
    border-radius: 12px;
    border: 1px solid #f4f4f6;
    overflow: hidden;
}

.ribbon-multi {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.ribbon-corner {
    position: absolute;
    width: 120px;
    height: 120px;
    transform: rotate(-45deg) translate(-10%, -20%);
    transform-origin: top left;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 2px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    text-transform: lowercase;
    background: var(--accent);
}

.ribbon-corner.badge-0 {
    top: 0;
    left: -60px;
    width: 110px;
    z-index: 3;
}

.ribbon-corner.badge-1 {
    top: 15px;
    left: -70px;
    width: 140px;
    height: 140px;
    z-index: 2;
}

.ribbon-corner.badge-2 {
    top: 17px;
    left: -80px;
    width: 180px;
    height: 170px;
    z-index: 1;
}

.bg-violet {
    background: #644b9f;
}

.bg-burgundy {
    background: var(--accent);
}

.bg-green {
    background: var(--green);
}

.ribbon-tl {
    top: 8px;
    left: -60px;
}

.ribbon-corner::before,
.ribbon-corner::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 12px;
    background: inherit;
}

.ribbon-corner::before {
    left: -12px;
}

.ribbon-corner::after {
    right: -12px;
}

.products-container .card-body {
    display:flex;
    flex-direction:column;
    flex-grow: 1;
}

.products-container .card-bottom {
    margin-top: auto;
}

.products-container .card-body .text-muted {
    color: #0e1d0980 !important;
    font-size: 12px;
    font-weight: 500;
}

.products-container .card-body .text-danger {
    color: var(--accent) !important;
    font-size: 14px;
    font-weight: 700;
}

.card-body .card-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.4;
    max-height: calc(1.4em * 3);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.card-body .card-price {
    color: var(--price-color);
    font-size: 20px;
    font-weight: 700;
    font: "Roboto", sans-serif;
    line-height: 1;
}

.card-body .card-old-price {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    font: "Roboto", sans-serif;
    line-height: 1;
    padding-top: 3px;
}

.product-card-img-bg {
    width: 100%;
    height: 240px;
    background: #f8f8fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.card-actions {
    padding: 0 16px 16px;
}

.card-actions .btn {
    border-radius: 8px;
    font-weight: 600;
}

.pc-btn-green {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.pc-btn-green:hover,
.pc-btn-green:focus {
    background: var(--green-hover);
    border-color: var(--green-hover);
    color: #fff;
}

.pc-btn-outline-blue {
    background: transparent;
    color: var(--price-color);
    border: 1px solid var(--price-color);
}

.pc-btn-outline-blue:hover,
.pc-btn-outline-blue:focus {
    background: rgba(4, 93, 250, 0.06);
    color: #045dfa;
    border-color: #045dfa;
}

@media (max-width: 420px) {
    .ribbon-corner {
        line-height: 1.2;
        font-size: 10px;
    }

    /*.ribbon-corner.badge-0 {*/
    /*  width: 100px;*/
    /*  height: 100px;*/
    /*}*/
    /*.ribbon-corner.badge-1 {*/
    /*  width: 120px;*/
    /*  height: 120px;*/
    /*}*/
    /*.ribbon-corner.badge-2 {*/
    /*  width: 120px;*/
    /*  height: 120px;*/
    /*}*/
    /*.ribbon-corner {*/
    /*  width: 90px;*/
    /*  line-height: 1.2;*/
    /*  height: 90px;*/
    /*  font-size: 10px;*/
    /*}*/
    .ribbon-tl {
        left: -40px;
        top: 12px;
    }
}

/** ----- End product cart -- **/

/* product card see all */
.seeall-card {
    max-width: 285px;
    min-height: 504px;
    background: #f8f8fa;
    border-radius: 12px;
    border: 1px solid #f8f8fa;
    padding: 24px 16px;
}

.seeall-icon {
    color: var(--accent);
}

.seeall-text {
    font-size: 18px !important;
    font-weight: 600;
    color: #000000;
    line-height: 1.2rem;
}

.seeall-action {
    margin-top: 24px;
    padding: 0 16px 16px;
    width: 100%;
}

.seeall-btn {
    width: 100%;
    border-radius: 8px;
    font-weight: 600;
    background: var(--accent);
    color: #fff;
    padding: 0.55rem 1rem;
}

.seeall-btn:hover {
    background: #922146;
    color: #fff;
}

/* ---------- Tablet 990–1199px (5×2) ---------- */
@media (min-width: 990px) and (max-width: 1199px) {
    .products-container {
        max-width: 960px;
    }
}

@media (min-width: 769px) and (max-width: 989px) {
    .products-container {
        max-width: 768px;
        padding-top: 0 !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        margin-top: 0 !important;
    }
}

@media (max-width: 768px) {
    .products-container {
        padding-top: 0 !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .card-actions {
        padding: 0;
    }

    .seeall-action {
        padding: 0;
    }
}

/* edn product card see all */

/* Add to cart popup */
.modal-body-atc {
    /* height: 400px; */
    display: flex;
    flex-direction: column;
}

.modal-body-atc-content {
    background-color: #f8f8fa;
    /* height: 240px; */
}

.red-heading {
    color: #bd2a5a;
}

/* END Add to cart popup */

/* New colors */
.btn-primary {
    --fc-btn-color: #fff;
    --fc-btn-bg: #1FA966;
    --fc-btn-border-color: #1FA966;
    --fc-btn-hover-color: #fff;
    --fc-btn-hover-bg: #186F45;
    --fc-btn-hover-border-color: #186F45;
    --fc-btn-focus-shadow-rgb: 47, 185, 47;
    --fc-btn-active-color: #fff;
    --fc-btn-active-bg: #1FA966;
    --fc-btn-active-border-color: #1FA966;
    --fc-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --fc-btn-disabled-color: #fff;
    --fc-btn-disabled-bg: #1FA966;
    --fc-btn-disabled-border-color: #1FA966;
}

.btn-info {
    --fc-btn-color: #fff;
    --fc-btn-bg: #104db0;
    --fc-btn-border-color: #104db0;
    --fc-btn-hover-color: #fff;
    --fc-btn-hover-bg: #015bd3;
    --fc-btn-hover-border-color: #0156c6;
    --fc-btn-focus-shadow-rgb: 39, 129, 249;
    --fc-btn-active-color: #fff;
    --fc-btn-active-bg: #0156c6;
    --fc-btn-active-border-color: #0150ba;
    --fc-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --fc-btn-disabled-color: #fff;
    --fc-btn-disabled-bg: #104db0;
    --fc-btn-disabled-border-color: #104db0;
}

.container-size {
    max-width: 1200px;
    margin: 0 auto;
}

.how-to-order {
    padding-left: 20px;
    padding-right: 20px;
}

.mobile-px-20 {
    padding-right: 20px !important;
}
@media (max-width: 768px) {
    .container-mobile {
        padding-top: 0px !important;
    }
    .mobile-heading {
        padding-bottom: 18px;
        font-size: 20px;
    }
    .px-sm-20 {
        padding-right: 20px;
        padding-left: 20px;
    }
}

.noUi-connect {
    background: var(--green);
}

.basket-heading {
    font: var(--text);
    font-size: 14px;
    line-height: 14px;
    text-align: center;
    width: 100%;
}

.basket-img {
    height: 20px;
    width: 20px;
    margin-top: -3px;
}

.basket-head {
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    justify-content: space-between;
    margin-top: 21px;
    margin-bottom: -23px;
    z-index: 1000;
    background-color: #fff;
}

@media (max-width: 768px) {
    .basket-head {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.basket-head-phone {
    display:flex;
    flex-wrap: wrap;
    max-width: 175px;
    margin-top: -9px;
    justify-content: center;
}

.btn-close {
    position: absolute;
    right: 10px;
    font-size: 15px;
    top: 5px;
}

.offcanvas-body {
    padding: 40px;
}

@media (max-width: 768px) {
    .offcanvas-body {
    padding: 20px;
    }
}

/* Information page */
.info-content-wrapper {
    width:70%;
    padding-right: 5%;
}

@media (max-width: 992px) {
    .info-content-wrapper {
        width:100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .info-content-wrapper {
        width:100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    .container-info {
        padding-top: 0 !important;
    }
}

@media (max-width: 576px) {
    .info-content-wrapper {
        width:100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

#console {
    position: sticky;
    top: 30%;
    margin-left: auto;
    width: 200px;
    padding: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    align-self: flex-start;
}

@media (max-width: 1200px) {
    #console {
        width: 250px;
        right: 30px;
        top: 25%;
    }
}

@media (max-width: 992px) {
    #console {
        width: 220px;
        right: 20px;
        top: 20%;
    }
}

@media (max-width: 768px) {
    .info-description-text {
        font-size: 16px !important;
    }
    #console {
        display: none !important;
    }
}

@media (max-width: 576px) {
    #console {
        display: none !important;
    }
}

@media (max-width: 480px) {
    #console {
        display: none !important;
    }
}

.info-section-icon {
    height: 44px;
    width: auto;
}

.info-block {
    scroll-margin-top: 80px;
}

@media (min-width: 993px) {
    .info-block {
        scroll-margin-top: 80px;
    }
}

@media (max-width: 992px) {
    .info-block {
        scroll-margin-top: 200px;
    }
}

@media (max-width: 768px) {
    .info-block {
        scroll-margin-top: 180px;
    }
}

@media (max-width: 576px) {
    .info-block {
        scroll-margin-top: 160px;
    }
}

.hto-title {
    font-size: 18px;

    }

@media (max-width: 768px) {
    .hto-title {
        font-size: 17px;

    }
}

.link {
    color: var(--green);

}

@media (max-width: 768px) {
    .page-404 {
        padding: 0 20px;
        margin: 40px 0;
    }
}
.text-primary {
color: var(--green);
}

@media (max-width: 767.98px) {
    .me-1.align-text-bottom .text-muted {
        font-size: 11px;
        display: block;
    text-align: center;
        color: #6c757d !important;
    }
    .d-flex img.icon-shape {
    margin-right: 20px; /* или любое нужное значение */
}
.d-flex h6 {
    font-size: 12px;
}
}

#offcanvasRight {
    z-index: 10000;
}

/* Mobile navigation menu */
/* Скрыть sticky header на мобильных */
    @media (max-width: 991px) {
        #site-sticky-header {
            display: none !important;
        }
        
        body.sticky-padding {
            padding-top: 0 !important;
        }
        
        body {
            padding-bottom: 70px;
        }
    }

    .bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid #e0e0e0;
        display: none;
        justify-content: space-around;
        align-items: center;
        padding: 8px 0 20px;
        z-index: 9999;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    }

    @media (max-width: 991px) {
        .bottom-nav {
            display: flex;
        }
    }

    .bottom-nav .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #b0b0b0;
        flex: 1;
        transition: color 0.3s;
        padding: 4px 0;
    }

    .bottom-nav .nav-item.active {
        color: #1FA966;
    }

    .bottom-nav .icon-wrapper {
        position: relative;
    }

    .bottom-nav .nav-icon {
        width: 28px;
        height: 28px;
        fill: currentColor;
    }

    .bottom-nav .nav-label {
        font-size: 11px;
        font-weight: 400;
        margin-top: 4px;
    }

    .bottom-nav .nav-item.active .nav-label {
        font-weight: 500;
        color: #183110;
    }

    .bottom-nav .cart-badge {
        position: absolute;
        top: -4px;
        right: -4px;
        min-width: 18px;
        height: 18px;
        background: #ff1493;
        border-radius: 9px;
        color: white;
        font-size: 11px;
        font-weight: 600;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 0 5px;
        border: 2px solid white;
    }

    .bottom-nav .cart-badge.show {
        display: flex;
    }