/* Root Variables */
:root {
    /* Background colors */
    --bg-primary: #E2E1D8 !important;
    --bg-secondary: #F3F3F2;
    --bg-danger: #F04F3A;;
    --bg-white: #ffffff;
    --bg-focus: #FCF8ED;
    --bg-inactive: #8D8D8C;
    --bg-black: #000000;
    --brand-dark: #4b2975;

    /* Buttons */
    --bg-button-active: #437466;

    /* Font colors */
    --text-primary: #1A1A1A;
    --text-black: #000000;
    --text-focus: #D6BF40;;
    --text-white: #ffffff;
    --text-inactive: #8D8D8C;

    /* Border colors */
    --border-main: #437466;
    --border-inactive: #E2E2DF;
    --border-white: #fff;


    --bs-border-radius: 0.375rem;
    --bs-card-title-spacer-y: 0.5rem;
}

/* Root Variables */
:root {
    --primary-font-family: Calibre;
}


.primary-bg {
    background-color: var(--bg-primary);
}

body {
    font-family: var(--primary-font-family), sans-serif;
    line-height: 20px; /* 125% */
    font-weight: 400;
    leading-trim: both;
    text-edge: cap;
    font-size: 16px;
    font-style: normal;
    color: var(--text-primary);
}

a {
    color: var(--text-primary);
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}


h1, h2, h3, h4, h5 {
    color: var(--text-primary);
    font-family: var(--primary-font-family), sans-serif;
    font-style: normal;
    font-weight: 500;
}

h2 {
    font-size: 32px;
    line-height: 32px; /* 100% */
}


h4 {
    font-size: 24px;
    line-height: normal;
}


h5, .h5 {
    font-size: 1.25rem;
}

p {
    color: var(--text-primary);
    font-family: var(--primary-font-family), sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
    margin: unset;
    min-height: 20px;
    padding-bottom: 10px;
}


/** Header **/

header #header-navigation, header .linklist {
    gap: 30px;
}

header .linklist {
    align-items: center;
    margin: 10px 0;
}

header .social-login {
    gap: 12px;
}

header .social-login a img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

header .linklist a {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.lang-btn {
    background-color: var(--bg-primary); /* soft background */
    border: none;
    border-left: 1px solid var(--border-white);
    border-right: 1px solid var(--border-white);
    padding: 0.25rem 0.75rem;
    color: #000;
}

.lang-btn.dropdown-toggle::after {
    display: none;
}


/** END OF HEADER **/

/** BLOCK START **/
.block {
    margin: 40px 0;
}

.block-title {
    color: var(--text-primary);
    font-family: var(--primary-font-family), sans-serif;
    font-style: normal;
    font-weight: 500;
}

h4.block-title {
    font-size: 24px;
    line-height: 32px; /* 133.333% */
}

/** END OF BLOCK **/


/** REASSURANCE START **/

#block-reassurance .block-title {
    padding-bottom: 57px;
}

#block-reassurance .icon-wrapper {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 100px;
    background-color: #E9E8DE;
    position: relative;
}

#block-reassurance .icon-wrapper svg {
    position: absolute;
    bottom: 0;
    right: 0;
}

#block-reassurance .icon-wrapper img {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    fill: #3B5C53;
}

/** END REASSURANCE **/

/*** Customization block **/
#customization_block {
    border-radius: 8px;
    height: 544px;
}

#customization_block.info-block {
    background-color: #4B2975;
    background-image: url('/SVF_HTML/assets/img/customization-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#customization_block .position-relative {
    z-index: 2;
    height: 100%;
}

#customization_block h2 {
    color: var(--text-white);
    font-size: 80px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#customization_block .cta-block {
    position: relative;
    left: 57px;
    height: 100%;
}

#customization_block .primary-cta {
    position: absolute;
    top: 80px;
}

#customization_block .primary-cta p {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 108.333% */
}

#customization_block .primary-cta .cta {
    margin-top: 40px;
    display: inline-block;
}

#customization_block .primary-cta .cta {
    border-radius: 4px;
    color: var(--text-white);
    border: 1px solid var(--text-white);
    padding: 19px 38px;
    text-decoration: none;
    transition-duration: 250ms;
}


#customization_block .secondary-cta {
    position: absolute;
    bottom: 64px;
}

#customization_block .secondary-cta .cta svg {
    fill: var(--text-white);
}

#customization_block .secondary-cta .cta {
    color: var(--text-white);
    text-decoration: none;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    padding: 10px 20px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#customization_block .cta:hover {
    color: #513E6C;
    background-color: var(--text-white);
    transition-duration: 250ms;
}

#customization_block .cta:hover svg {
    fill: #513E6C;
    transition-duration: 250ms;
}

/*** END Customization block **/

/*** Blog posts block **/
#home-blog-posts .read-more {
    margin-top: 24px;
    display: inline-flex;
}

#home-blog-posts svg {
    width: 10px;
    height: 11px;
    stroke-width: 1.4px;
    stroke: var(--border-main);
    margin-left: 10px;
}

#home-blog-posts p {
    font-size: 16px;
    line-height: 22px; /* 137.5% */
}

.fade-5-lines {
    /* 1) clamp to 5 lines */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;

    -webkit-mask-image: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 40%,
            rgba(0, 0, 0, 0.3) 100%
    );
    mask-image: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 40%,
            rgba(0, 0, 0, 0.3) 100%
    );
}

/*** END Blog posts block **/

/*** Information block START**/

#custom-text .info-box {
    background-color: var(--bg-secondary);
    border-radius: 0.5rem;
    padding: 2.5rem 2rem 2rem 2rem;
}

#custom-text .quote-icon {
    top: -1rem; /* pull up 1rem above the box */
    left: 2rem; /* align inside the box’s left padding */
}

#custom-text p {
    font-size: 18px;
    font-style: italic;
    line-height: 24px; /* 133.333% */
}

#custom-text .quote-icon,
#custom-text .quote-icon svg {
    display: block;
}

/*** END Information block **/

/*** subscription block START**/
.subscribe-section {
    /* or your custom dark-purple */
    background-color: var(--brand-dark);
    border-radius: 0.5rem;
}

/*** END subscription block**/


/** BOOTSTRAP EXTENSION **/
.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.align-items-center {
    align-items: center !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.flex-column {
    flex-direction: column !important;
}

.text-center {
    text-align: center !important;
}

.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}

.rounded {
    border-radius: var(--bs-border-radius) !important;
}

.custom-grid-4-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem; /* g-4 */
}

.custom-grid-2-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem; /* g-4 */
}

/* from md up (≥768px) – 4 columns */
@media (min-width: 768px) {
    .custom-grid-4-2 {
        grid-template-columns: repeat(4, 1fr); /* row-cols-md-4 */
    }

    .custom-grid-2-1 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem; /* g-4 */
    }
}

h3, .h3 {
    font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
    h3, .h3 {
        font-size: 1.75rem;
    }
}

.card-title {
    margin-bottom: var(--bs-card-title-spacer-y);
    color: var(--text-primary);
}

/** END BOOTSTRAP EXTENSION**/

a span svg {
    margin-left: 15px;
}

/** Footer **/
.footer-container {
    background-color: var(--bg-secondary);
    padding-bottom: 40px;
}

.footer-container .copyright {
    color: var(--text-primary);
    font-family: var(--primary-font-family), sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

#requisites img.logo {
    width: 54.154px;
    height: 64px;
    margin-bottom: 33px;
}

#requisites .entity-label, #requisites .entity-value, #requisites .company-name {
    color: var(--text-primary);
    font-family: var(--primary-font-family), sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-bottom: 8px;
}

#requisites .company-name {
    font-size: 18px;
}

#requisites .entity-value {
    font-weight: 400;
    padding-bottom: 24px;
}

/** END OF FOOTER **/

/** breadcrumb start **/

#wrapper .breadcrumb {
    padding-top: 16px;
}

#wrapper .breadcrumb li a {
    color: var(--text-inactive);
}

#wrapper .breadcrumb li:last-child {
    color: var(--text-primary);
}

/** END OF breadcrumb**/

/** START OF CATEGORY **/

#category {
    #category-description {
        width: 100%;
        height: auto;
        img {
            width: 100%;
            height: auto;
        }
    }
}
#js-product-list-footer h1, #category-faq h2, #category-blog-posts .h3 {
    color: var(--text-primary);
    font-family: var(--primary-font-family), sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 24px;
}

#js-product-list-footer .category-footer-content, #category-faq {
    padding-bottom: 64px;
}

#js-product-list-footer .category-footer-content p {
    color: var(--text-black);
    font-family: var(--primary-font-family), sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
}

#category-faq .ppcategoryfaq-q-line {
    padding: 24px 0 24px 24px;
}

#category-faq .ppcategoryfaq-q {
    color: var(--text-primary);
    font-family: var(--primary-font-family), sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: unset;
    width: 100%;
}

#category-faq .faq-entity {
    border-radius: 6px;
    background: var(--bg-secondary);
    border: 1px solid var(--bg-secondary);
}

#category-faq .faq-entity:not(.collapsed) {
    background-color: var(--bg-white);
}

#category-faq .faq-entity:not(:last-child) {
    margin-bottom: 8px;
}

#category-faq .ppcategoryfaq-a p {
    line-height: 22px;
    padding-bottom: 28px;
}

#category-blog-posts .h3 {
    margin-bottom: 48px;
}

#category-blog-posts .blog-item-title {
    color: var(--text-primary);
    font-family: var(--primary-font-family), sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

#category-blog-posts .blog-item-img img {
    border-radius: 6px;
    background: rgba(51, 57, 57, 0.06);
}


#category-blog-posts .blog-item-read-more {
    color: var(--text-primary);
    font-family: var(--primary-font-family), sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

/** END OF CATEGORY **/


/** PRODUCT PAGE START**/
#product .product-media .product-video iframe {
    width: 100%;
    border-radius: 9px;
    background: var(--bg-black);
}

/* 1) Lay out the two panes side by side */
.images-container {
    display: flex;
    align-items: flex-start; /* thumbnails align to top of main image */
    gap: 1rem; /* space between main & thumbs */
}

/* 2) Let the main image grow, keep thumbnails narrow */
.product-cover {
    flex: 1; /* fill remaining width */
}

/* 3) Make the thumbnail panel a fixed (or max-) width column */
.js-qv-mask {
    flex: 0 0 120px; /* 120px wide; tweak to fit your thumb size */
    display: flex;
    flex-direction: column; /* stack thumbs vertically */
    overflow-y: auto; /* scroll if too many */
    overflow-x: hidden; /* never scroll horizontally */
}

/* 4) Stack the <li>’s vertically */
.js-qv-mask .product-images {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* space between thumbnails */
}

/* 5) Reset any inline-oriented styles on the <li> */
.js-qv-mask .thumb-container {
    margin: 0; /* remove old gutters */
}

/* 1) Make sure the thumbnail container is the positioning context */
.js-images-container {
    position: relative;
}

/* 2) Stack thumbs vertically as before */
.js-qv-mask {
    position: relative; /* anchor for the arrows */
    flex: 0 0 120px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

/* 3) Position the arrow-wrapper absolutely beside the thumbnail pane */
.js-qv-mask + .scroll-box-arrows.scroll {
    position: absolute;
    top: 0;
    right: 0; /* sits flush at the right edge of the thumbnails */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none; /* let clicks pass through gaps */
}

/* 4) Make each icon clickable */
.scroll-box-arrows.scroll .material-icons {
    pointer-events: auto;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    padding: 0.25rem;
    font-size: 1.5rem;
}

/* 5) Optional: tighten up your spacing */
.scroll-box-arrows.scroll .left {
    align-self: center;
}

.scroll-box-arrows.scroll .right {
    align-self: center;
}

.pagination .current a {
    font-size: unset;
    color: var(--text-black);
}

.leo-top-menu .dropdown-menu {
    min-width: 15rem;
}

/** END PRODUCT PAGE**/

#_desktop_logo img {
    width: 54px;
    height: auto;
}

#header .header-nav {
    background: var(--bg-primary);
}

#header .header-top {
    padding: 15px 0;
}

.displayNav1 {
    display: flex;
}

.header-link-list {
    padding: 0.9375rem 0.9375rem 0.9375rem 0;
}

.header-nav .block-social {
    padding: 0.7375rem 0.9375rem 0.9375rem 0;

}

.header-link-list ul, .header-nav .block-social ul {
    display: inline-flex;
    margin-bottom: unset;
}

.header-link-list ul li a {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.header-link-list ul li:not(:first-child) {
    padding-left: 15px;
}

#header .header-top a[data-depth="0"] {
    color: var(--text-primary);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: unset;
}

.block-social ul li {
    width: 25px;
    height: unset;
    margin: unset;
    background-color: unset;
    background-size: contain;
}

.block-social ul li:hover {
    background-color: unset;
}


#header .header-nav .language-selector {
    margin-top: unset;
    border-left: 1px solid #F2F1E7;
    border-right: 1px solid #F2F1E7;
}

#_desktop_language_selector .dropdown .btn-unstyle {
    padding: 0.9375rem;
}

#_desktop_language_selector .dropdown .expand-more {
    text-transform: uppercase;
}

#_desktop_language_selector .dropdown-menu {
    min-width: unset;
    text-transform: uppercase;
}

#_desktop_language_selector .dropdown-item {
    padding: 5px 10px;
}


/** Footer subscription **/
#blockEmailSubscription_displayFooterBefore {
    border-radius: 8px;
    background: linear-gradient(112deg, #513E6C 18.25%, #3D2D54 83.26%);
    margin-bottom: 132px;

    .subscribe-block {
        padding: 20px 15px 20px 15px;
    }

    @media (min-width: 768px) {
        .subscribe-block {
            padding: 72px 64px 83px 62px;
        }
    }

    .title {
        color: #D6BF40;
        font-family: var(--primary-font-family), sans-serif;
        font-size: 40px;
        font-style: normal;
        font-weight: 500;
        line-height: 42px; /* 105% */
    }

    .sub-title {
        color: #FFF;
        font-family: var(--primary-font-family), sans-serif;
        font-size: 40px;
        font-style: normal;
        font-weight: 500;
        line-height: 42px;
    }


    .input-wrapper input {
        width: 100%;
        height: 48px;
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.20);
        border: 1px solid rgba(255, 255, 255, 0.20);
        margin-bottom: 16px;
        color: white;
        padding: 10px;
        line-height: 48px;
    }

    .row .col-xs-4 input {
        border-radius: 4px;
        background: #FFF;
        color: var(--text-primary);
        font-family: var(--primary-font-family), sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    .row .col-xs-8 p {
        color: #C3BACF;
        font-family: var(--primary-font-family), sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 18px; /* 128.571% */
    }
}

@media (min-width: 768px) {
    #blockEmailSubscription_displayFooterBefore .subscribe-block > div:first-child {
        padding-right: calc(50% - 416px);
    }
}

/** Product page **/
#product {
    H1 {
        color: var(--text-primary);
        font-family: var(--primary-font-family), sans-serif;
        font-size: 32px;
        font-style: normal;
        font-weight: 500;
        line-height: 36px; /* 112.5% */
    }
}

.current-price-value {
    color: var(--text-primary);
    font-family: var(--primary-font-family), sans-serif;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.product-discount .regular-price {
    color: var(--text-inactive);
    font-family: var(--primary-font-family), sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: line-through;
}


.has-discount .discount {
    border-radius: 4px 4px 4px 0px;
    background: #F04F3A;
    width: 42px;
    height: 24px;
    color: var(--text-white);
    font-family: var(--primary-font-family), sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 7px 4px 7px 5px;
    display: inline-block;
}

.product-information .product-description ul {
    list-style: none; /* remove default bullets */
    margin: 0;
    padding: 20px 0 0 0;
}

.product-information .product-description ul li {
    position: relative; /* establish positioning context */
    padding-left: 20px; /* space for the SVG bullet */
}

.product-information .product-description ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 36%;
    width: 11px;
    height: 9px;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml;utf8,\ <svg xmlns='http://www.w3.org/2000/svg' width='11' height='9' viewBox='0 0 11 9'><path fill='%23437466' d='M8.57607 1.01873C8.74981 0.853325 8.98101 0.761883 9.22088 0.763698C9.46075 0.765513 9.69054 0.860443 9.86175 1.02846C10.033 1.19647 10.1322 1.42442 10.1386 1.66422C10.1449 1.90402 10.0578 2.1369 9.89573 2.31372L4.97475 8.46804C4.89013 8.55918 4.78801 8.63232 4.67448 8.68309C4.56094 8.73386 4.43834 8.76121 4.314 8.76351C4.18965 8.76582 4.06612 8.74302 3.95079 8.69649C3.83546 8.64996 3.73069 8.58065 3.64276 8.4927L0.379367 5.22931C0.288487 5.14463 0.215594 5.04251 0.165038 4.92905C0.114481 4.81558 0.0872963 4.69309 0.0851049 4.56889C0.0829135 4.44469 0.105761 4.32133 0.152283 4.20615C0.198806 4.09097 0.26805 3.98634 0.355887 3.8985C0.443723 3.81067 0.548351 3.74142 0.663529 3.6949C0.778707 3.64838 0.902076 3.62553 1.02628 3.62772C1.15048 3.62991 1.27296 3.6571 1.38643 3.70766C1.49989 3.75821 1.60201 3.8311 1.6867 3.92198L4.26929 6.50334L8.55264 1.04586L8.57607 1.01873Z'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
}

.input-color:checked + span, .input-color:hover + span, .input-radio:checked + span, .input-radio:hover + span {
    border-radius: 6px;
    border: 1px solid var(--border-main);;
}

@media (min-width: 768px) {
    #product .js-product-container > .col-md-4 {
        padding: unset;
    }
}

.radio-label {
    color: var(--text-primary);
    font-family: var(--primary-font-family), sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    padding: 9px 15px;
    line-height: 16px;
    border-radius: 6px;
    border: 1px solid #E2E2DF;
}

.product-actions .control-label {
    display: block;
    width: 100%;
    color: var(--text-primary);
    font-family: var(--primary-font-family), sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 10px;
}

.product-quantity {
    justify-content: space-between;
}

.product-actions .add-to-cart, .add-to-cart-or-refresh .add-to-cart {
    padding-top: 0.625rem;
    line-height: inherit;
    border-radius: 6px;
    background: #437466;
}

.product-add-to-cart .wishlist-button-add i {
    color: var(--text-primary) !important;
}

.product-add-to-cart .wishlist-button-add {
    background-color: #fff !important;
    border-radius: 6px !important;
    border: 1px solid #E2E2DF !important;
    width: 48px !important;
    height: 48px !important;
    flex-shrink: 0 !important;
    box-shadow: unset !important;
}

.product-miniature.oos, .recommendation__item.oos{
    opacity: 0.6;
    filter: grayscale(50%);
}

.product-miniature {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 5px;
}

.product-miniature:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.product-miniature:hover .thumbnail-top {
    background-color: #fff;
}

.product-miniature .product-price-and-shipping {
    color: var(--text-primary);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: unset;
}

.product-miniature .regular-price {
    color: var(--text-inactive);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: line-through;
}

#tab-content .product-manufacturer {
    display: flex;
}

.product-manufacturer .manufacturer-logo {
    max-width: 150px;
    margin-right: 20px;
}

.product-miniature .product-title a {
    color: var(--text-primary);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: 40px;
}

.product-description .product-title {
    line-height: 1.25rem;
}

.active_filters {
    background: var(--bg-primary);
}

#product {
    .recommendation {
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 16px;


        .recommendation__title {
            margin: 0 0 12px;
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }

        .recommendation__list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .recommendation__item {
            display: flex;
            align-items: center;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            padding: 8px;
            margin-bottom: 8px;
        }

        .recommendation__item.is-selected {
            border-color: #437466;
        }

        .recommendation__item-image {
            position: relative;
            flex-shrink: 0;
            width: 56px;
            height: 56px;
            margin-right: 12px;
        }

        .badge--discount {
            position: absolute;
            top: -4px;
            left: -4px;
            background: #e5533b;
            color: #fff;
            font-size: 12px;
            line-height: 1;
            padding: 2px 4px;
            border-radius: 4px;
        }

        .recommendation__item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 4px;
        }

        .recommendation__item-content {
            flex: 1;
        }

        .recommendation__item-title {
            margin: 0 0 4px;
            font-size: 14px;
            color: #333;
        }

        .recommendation__item-price {
            display: flex;
            align-items: baseline;
        }

        .price--current {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-right: 6px;
        }

        .price--old {
            font-size: 14px;
            color: #999;
            text-decoration: line-through;
        }

        .recommendation__total {
            display: flex;
            justify-content: space-between;
            margin: 12px 0;
            font-size: 16px;
            color: #333;
        }

        .recommendation__total-label {
            font-weight: 500;
        }

        .recommendation__total-amount {
            font-weight: 600;
        }

        .recommendation__button {
            width: 100%;
            padding: 12px;
            background: #437466;
            color: #fff;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .recommendation__button svg {
            margin-right: 8px;
        }

        .recommendation__item-action {
            position: relative;
            width: 28px;
            height: 28px;
            border-radius: 4px;
            background: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        /* hide native checkbox */

        .recommendation__item-checkbox {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
        }

        /* only show the “+” by default */

        .icon-add {
            display: block;
        }

        .icon-check {
            display: none;
        }

        .recommendation__item-action .icon-add {
            border-radius: 3px;
            background: #FFF;
            box-shadow: 0px 4px 10px 0px rgba(26, 48, 47, 0.12);
        }

        .recommendation__item-action .icon-add,
        .recommendation__item-action .icon-check {
            width: 24px;
            height: 24px;
        }

        /* when checked, swap icons and change background */

        .recommendation__item-checkbox:checked + .icon-add {
            display: none;
        }

        .recommendation__item-checkbox:checked + .icon-add + .icon-check {
            display: block;
        }

        .recommendation__item-checkbox:checked ~ .icon-add ~ .icon-check,
        .recommendation__item-checkbox:checked ~ .icon-check {
            display: block;
        }

        .recommendation__item-checkbox:checked ~ .icon-add,
        .recommendation__item-checkbox:checked ~ .icon-add ~ .icon-check {
            /* change background when checked */
            background: #437466;
            border-radius: 3px;
        }

        .recommendation__item-checkbox:checked ~ .icon-add ~ .icon-check svg,
        .recommendation__item-action .icon-add svg {
            margin: 4px;
        }
    }

    .js-product-prices {
        display: flex;

        .product-price, .js-product-additional-info {
            flex: 50%;
        }
    }
}

#_desktop_user_info, #_desktop_cart, #search_widget {
    display: flex;
    float: right;

    padding: 0 5px;
}

#_desktop_user_info, #_desktop_cart {
    line-height: 40px;
}

#_desktop_user_info svg, #_desktop_cart svg {
    display: inline-block;
    margin: 2px 8px;
    vertical-align: middle;
}

#_desktop_cart .header {
    position: relative;
}

#_desktop_cart .cart-products-count {
    position: absolute;
    left: 21px;
    height: 14px;
    width: 14px;
    text-align: center;
    background-color: var(--bg-danger);
    border-radius: 50%;
    line-height: 19px;
    color: #fff;
    font-weight: 700;
    top: 0px;
    font-size: 12px;
}

#cms .page-content .vertical-middle {
    display: flex;
    align-items: center;
}

#cms .page-content .vertical-middle h2 {
    width: 100%;
}

#cms .page-content img {
    width: 100%;
    height: auto;
}

#cms .page-content .colleague {
    text-align: center;
    padding: unset;
}

#cms .page-content .colleague h2 {
    padding-top: 10px;
    margin-bottom: unset;
}

#cms .about-overlay {
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
    background-color: rgba(67, 116, 102, 0.95);
    color: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    width: 90%;
}

.off-canvas-nav-megamenu .offcanvas-mainnav, .off-canvas-nav-megamenu .dropdown-menu {
    background: var(--bg-secondary);
}

@media screen and (max-width: 800px) {
    #cms .about-overlay {
        padding: 0.5rem;
    }

    h2, .h2 {
        font-size: 1.1rem;
    }

    h3, .h3 {
        font-size: 1.0rem;
    }

    #search_widget form, #search_widget {
        width: 100%;
    }

    .off-canvas-button-megamenu,
    .offcanvas-mainnav .navbar-nav li.dropdown .caret:before {
        color: var(--text-primary);
    }

    #header .header-nav .user-info {
        padding: 0.75rem;
        margin-top: unset;
        margin-left: unset;
    }

    #_mobile_menu {
        height: 50px;
        width: 62.5px;
    }

    #cms .page-content .vertical-middle {
        display: inline-grid;
    }

    #cms .page-content .vertical-middle img {
        margin-bottom: 15px;
    }

    #cms .page-cms-10 .pt-3 div:first-child {
        order: 2;
    }

    #cms .colleague h3 {
        min-height: 45px;
        padding-top: 5px;
    }

    #requisites .entity-value {
        padding-bottom: 12px;
    }

    #mobile_top_menu_wrapper {
        padding: unset;
        background: unset;

        .js-top-menu-bottom .language-selector-wrapper .dropdown {
            padding: 0.825rem;
            display: flex;
            min-height: 50px;

            select {
                background: unset;
                text-transform: uppercase;
            }
        }
    }
    .add-to-cart {
        font-size: 12px;
        .material-icons{
            font-size: 12px;
        }
    }
}

#reviews_section_click {
    #product_reviews_block_tab .comment_author span {
        font-weight: unset;
        padding-right: unset
    }

    #product_reviews_block_tab {
        .comment {
            .comment_author_infos {
                .name {
                    display: flex;
                    align-items: last baseline;
                    flex-wrap: wrap;
                    color: var(--text-primary);
                    font-family: var(--primary-font-family), sans-serif;
                    font-size: 16px;
                    font-style: normal;
                    font-weight: 500;
                    line-height: normal;
                    padding-right: 15px;
                }
            }

            .recommended {
                .rec-title {
                    color: #437466;
                    font-family: var(--primary-font-family), sans-serif;
                    font-size: 12px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 20px;
                }
            }

            .comment_details {
                .title_block {
                    font-size: 18px;
                    font-weight: 500;
                    display: block;
                    margin-bottom: 10px;
                }
            }

            .respond {
                background: #b5c28c91;
                margin-left: 10%;
            }
        }
    }

    #score-chart-holder .score {
        margin: 0 0 14px;
        color: #1A1A1A;
        font-family: var(--primary-font-family), sans-serif;
        font-size: 40px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    .reviews-number {
        padding-top: 10px;
    }
}

#product_review_block_extra {
    .scroll_review .material-icons {
        width: 18px;
        height: 18px;
        font-size: 22px;
    }

    .review_count_extra {
        font-size: 18px;
    }

    .reviews {
        color: #1A1A1A;
        font-family: var(--primary-font-family), sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: none;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }
}

.js-product-miniature .add-to-cart-or-refresh {
    .control-label, .qty {
        display: none
    }

    .add, .add-to-cart {
        width: 100%;
    }

    .wishlist-button-add {
        display: none;
    }
}
@media screen and (max-width: 800px) {
    .js-product-miniature .add-to-cart-or-refresh {
        .add, .add-to-cart {
            font-size: 0.8rem;
        }
        .btn-primary .material-icons {
            margin-right: 0.3rem
        }
    }
}
#module-ppblog-posts .js-product{
        .add-to-cart-or-refresh, .wishlist-button-add{
            display:none;
        }
}
