:root {
    --color: #493a26;
    --color-hover: #d7a163;

    --font-family: 'Rubik', sans-serif;
    --font-size: 16px;

    --header-bg: #FFFFFF;
    --header-top-bg: #fef5e9;

    --footer-bg: #361E06;
    --footer-bottom-bg: #2E1A06;

    --br: 24px;
}

html,
body {
    color: var(--color);

    font-family: var(--font-family);
    font-size: var(--font-size);
    font-weight: normal;

    min-width: 320px;

    line-height: 1.5;

    margin: 0;
    padding: 0;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    background: var(--html-bg);
    height: 100%;
}

body {
    background: var(--body-bg);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Load animation */

#header-shape-gradient {
    --color-stop: #FF6464;
    --color-bot: #D661FF;
}

.fullpage-loader path,
.fullpage-loader circle {
    fill: url(#header-shape-gradient) #fff;
}

.fullpage-loader {
    width: 100vw;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    background: #fff;
    z-index: 9999;
    opacity: 1;
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
    background-color: var(--bg-light);
    /* background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMzYiIHZpZXdCb3g9IjAgMCA2Mi45ODQ5OSAzNi4zNTk5OSI+PHBvbHlnb24gcG9pbnRzPSIxMC4yMDUgMTguMTggMTcuMDE1IDI5Ljk3IDIwLjQxNSAzNS44NiAyMC4xMjYgMzYuMzYgMjEuMjg1IDM2LjM2IDQxLjcwNSAzNi4zNiA0Mi44NTQgMzYuMzYgNDIuNTY1IDM1Ljg2IDUyLjc3NSAxOC4xOCA2Mi45ODUgMTguMTggNjIuOTg1IDE3LjE4IDUyLjc3NSAxNy4xOCA0Mi44NTQgMCA0MS43MDUgMCA1MS45MDUgMTcuNjggNDEuNzA1IDM1LjM2IDIxLjI4NSAzNS4zNiAxOC41MzUgMzAuNiAxMS4wNzUgMTcuNjggMTguNTU1IDQuNzMgMjEuMjg1IDAgMjAuMTI2IDAgMTAuMjA1IDE3LjE4IDAgMTcuMTggMCAxOC4xOCAxMC4yMDUgMTguMTgiIGZpbGw9IiNGRkUwNkEiLz48L3N2Zz4='); */
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMzYiIHZpZXdCb3g9IjAgMCA2Mi45ODQ5OSAzNi4zNTk5OSI+PHBvbHlnb24gcG9pbnRzPSIxMC4yMDUgMTguMTggMTcuMDE1IDI5Ljk3IDIwLjQxNSAzNS44NiAyMC4xMjYgMzYuMzYgMjEuMjg1IDM2LjM2IDQxLjcwNSAzNi4zNiA0Mi44NTQgMzYuMzYgNDIuNTY1IDM1Ljg2IDUyLjc3NSAxOC4xOCA2Mi45ODUgMTguMTggNjIuOTg1IDE3LjE4IDUyLjc3NSAxNy4xOCA0Mi44NTQgMCA0MS43MDUgMCA1MS45MDUgMTcuNjggNDEuNzA1IDM1LjM2IDIxLjI4NSAzNS4zNiAxOC41MzUgMzAuNiAxMS4wNzUgMTcuNjggMTguNTU1IDQuNzMgMjEuMjg1IDAgMjAuMTI2IDAgMTAuMjA1IDE3LjE4IDAgMTcuMTggMCAxOC4xOCAxMC4yMDUgMTguMTgiIGZpbGw9IiNlY2M1OTEiLz48L3N2Zz4=');
    background-position: 0% 0%;
    background-repeat: repeat;
    background-size: auto 36px;
}

.preload-page {
    display: grid;
    grid-template-columns: repeat(3, 70px);
    grid-template-rows: repeat(3, 70px);
    grid-gap: 10px;
    animation: animationRotate 16s infinite linear;
}

.preload-page>div {
    position: relative;
    animation: animationScale 4s infinite linear;
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
    background: #fff;
}

.preload-page>div:after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: antiquewhite;
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
    z-index: -1;
}

.preload-page>div:nth-child(3) {
    animation-delay: 0.8s;
}

.preload-page>div:nth-child(2),
.preload-page>div:nth-child(6) {
    animation-delay: 0.6s;
}

.preload-page>div:nth-child(1),
.preload-page>div:nth-child(5),
.preload-page>div:nth-child(9) {
    animation-delay: 0.4s;

}

.preload-page>div:nth-child(4),
.preload-page>div:nth-child(8) {
    animation-delay: 0.2s;
}

.preload-page>div:nth-child(7) {
    animation-delay: 0s;
}

/**/

.preload-page>div:nth-child(3):after {
    background: #FF8A00;
}

.preload-page>div:nth-child(2):after,
.preload-page>div:nth-child(6):after {
    background: #D36600;
}

.preload-page>div:nth-child(1):after,
.preload-page>div:nth-child(5):after,
.preload-page>div:nth-child(9):after {
    background: #A74300;

}

.preload-page>div:nth-child(4):after,
.preload-page>div:nth-child(8):after {
    background: #7F1F00;
}

.preload-page>div:nth-child(7):after {
    background: #5B0000;
}

@keyframes animationScale {

    0%,
    100% {
        transform: scale(0);
    }

    20%,
    80% {
        transform: scale(1);
    }
}

@keyframes animationRotate {
    0% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(90deg);
    }

    45% {
        transform: rotate(90deg);
    }

    50% {
        transform: rotate(180deg);
    }

    70% {
        transform: rotate(180deg);
    }

    75% {
        transform: rotate(270deg);
    }

    95% {
        transform: rotate(270deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



.fullpage-loader--invisible {
    opacity: 0
}

/* Load animation */

/* TINYMCE */
#tinymce {
    padding: 20px;
}

.tmce_notice_info,
.tmce_notice_success,
.tmce_notice_error {
    padding: 20px 30px;
    margin: 1rem 0 1.5rem;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
    border-left: 8px solid rgba(188, 188, 188, 1);
    display: block;
}

.tmce_notice_error {
    background-color: #FFCAC6;
    border-left: 8px solid #FF3121;
    color: #222;
}

.tmce_notice_success {
    background-color: #D6FBCC;
    border-left: 8px solid #266F12;
    color: #222;
}

.tmce_notice_info {
    background-color: #E1F6FD;
    border-left: 8px solid #0A7CA2;
    color: #222;
}

/* HEADINGS [START] */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    display: block;
    position: relative;
    font-family: inherit;
    color: var(--body-heading);
    line-height: 1.2;
    font-weight: 500;
    margin: 0 0 1.5rem;
}

h1,
.h1 {
    font-size: 28px;
}

h2,
.h2 {
    font-size: 26px;
}

h3,
.h3 {
    font-size: 24px;
}

h4,
.h4 {
    font-size: 22px;
}

h5,
.h5 {
    font-size: 20px;
}

h6,
.h6 {
    font-size: 18px;
}

/* HEADINGS [END] */

/* LINKS [START] */
a {
    background-color: transparent;
    color: var(--color);
    -webkit-text-decoration-skip: objects;
    transition: all 0.5s;
}

a,
a:hover,
a:active,
.tooltip a:hover {
    text-decoration: none;
    outline: none;
}

a:hover {
    color: var(--color-hover);
}

/* LINKS [END] */



*,
::before,
::after {
    box-sizing: border-box;
}



/* HEADER [START] */
.header {
    background: var(--header-bg);
    display: flex;
    flex-direction: column;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.header_shadow {
    border-bottom: 1px solid var(--border-color);
}

.header .container {
    height: 100%;
}

/* HEADER - TOP */
.header_top {
    background: var(--header-top-bg);
    border: none;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    height: 40px;
}

.header_top-container {
    height: 100%;
    width: 100%;
    padding-left: 156px;
}

/* HEADER - BOTTOM */
.header_bottom {
    height: 60px;
}

.header_bottom-container {
    position: relative;
    height: 100%;
    gap: 40px;
}

/* HEADER - LOGO */
.header_logo {
    height: 100%;
}

.header_logo-link {
    background: #000000;
    border: 1px solid var(--basic-company);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 116px;
    height: 116px;
    border-radius: 50%;
    transform: translateY(-25%);
    overflow: hidden;
}

.header_logo-img {
    display: block;
    width: 98%;
}

.header_logo-text {
    font-size: 16px;
    font-weight: 700;
}

/* HEADER - INFORMERS */
.header_informers {
    display: flex;
    gap: 16px;
}

.header_informer_link {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    border: 1px solid var(--basic-company);
    position: relative;
    transition: all 0.5s;
}

a.header_informer_link {
    cursor: pointer;
}

/* HEADER [END] */

/* MAIN [START] */
.main {
    margin-top: 100px;
}

/* MAIN [END] */

/* SECTION TITLE [START] */
.section_heading {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

/* .section_title {} */
/* SECTION TITLE [END] */

/* SECTION MAIN [START] */
.section_main {
    background-color: var(--bg-light);
    /* background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMzYiIHZpZXdCb3g9IjAgMCA2Mi45ODQ5OSAzNi4zNTk5OSI+PHBvbHlnb24gcG9pbnRzPSIxMC4yMDUgMTguMTggMTcuMDE1IDI5Ljk3IDIwLjQxNSAzNS44NiAyMC4xMjYgMzYuMzYgMjEuMjg1IDM2LjM2IDQxLjcwNSAzNi4zNiA0Mi44NTQgMzYuMzYgNDIuNTY1IDM1Ljg2IDUyLjc3NSAxOC4xOCA2Mi45ODUgMTguMTggNjIuOTg1IDE3LjE4IDUyLjc3NSAxNy4xOCA0Mi44NTQgMCA0MS43MDUgMCA1MS45MDUgMTcuNjggNDEuNzA1IDM1LjM2IDIxLjI4NSAzNS4zNiAxOC41MzUgMzAuNiAxMS4wNzUgMTcuNjggMTguNTU1IDQuNzMgMjEuMjg1IDAgMjAuMTI2IDAgMTAuMjA1IDE3LjE4IDAgMTcuMTggMCAxOC4xOCAxMC4yMDUgMTguMTgiIGZpbGw9IiNGRkUwNkEiLz48L3N2Zz4='); */
    
    /* background-image: url('../images/honeycombs555.svg'); */
    /*темний
     background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMzYiIHZpZXdCb3g9IjAgMCA2Mi45ODQ5OSAzNi4zNTk5OSI+PHBvbHlnb24gcG9pbnRzPSIxMC4yMDUgMTguMTggMTcuMDE1IDI5Ljk3IDIwLjQxNSAzNS44NiAyMC4xMjYgMzYuMzYgMjEuMjg1IDM2LjM2IDQxLjcwNSAzNi4zNiA0Mi44NTQgMzYuMzYgNDIuNTY1IDM1Ljg2IDUyLjc3NSAxOC4xOCA2Mi45ODUgMTguMTggNjIuOTg1IDE3LjE4IDUyLjc3NSAxNy4xOCA0Mi44NTQgMCA0MS43MDUgMCA1MS45MDUgMTcuNjggNDEuNzA1IDM1LjM2IDIxLjI4NSAzNS4zNiAxOC41MzUgMzAuNiAxMS4wNzUgMTcuNjggMTguNTU1IDQuNzMgMjEuMjg1IDAgMjAuMTI2IDAgMTAuMjA1IDE3LjE4IDAgMTcuMTggMCAxOC4xOCAxMC4yMDUgMTguMTgiIGZpbGw9IiNjZGEyNjgiLz48L3N2Zz4='); */
background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMzYiIHZpZXdCb3g9IjAgMCA2Mi45ODQ5OSAzNi4zNTk5OSI+PHBvbHlnb24gcG9pbnRzPSIxMC4yMDUgMTguMTggMTcuMDE1IDI5Ljk3IDIwLjQxNSAzNS44NiAyMC4xMjYgMzYuMzYgMjEuMjg1IDM2LjM2IDQxLjcwNSAzNi4zNiA0Mi44NTQgMzYuMzYgNDIuNTY1IDM1Ljg2IDUyLjc3NSAxOC4xOCA2Mi45ODUgMTguMTggNjIuOTg1IDE3LjE4IDUyLjc3NSAxNy4xOCA0Mi44NTQgMCA0MS43MDUgMCA1MS45MDUgMTcuNjggNDEuNzA1IDM1LjM2IDIxLjI4NSAzNS4zNiAxOC41MzUgMzAuNiAxMS4wNzUgMTcuNjggMTguNTU1IDQuNzMgMjEuMjg1IDAgMjAuMTI2IDAgMTAuMjA1IDE3LjE4IDAgMTcuMTggMCAxOC4xOCAxMC4yMDUgMTguMTgiIGZpbGw9IiNlY2M1OTEiLz48L3N2Zz4=');
     
    background-position: 0% 0%;
    background-repeat: repeat;
    background-size: auto 36px;
}
.section_main .container {
    height: 580px;
}

.section_main-container {
    display: grid;
    grid-template-columns: 300px 1100px;
    grid-gap: 40px;
    gap: 40px;
    padding: 40px 0px;
}

.section_main-categories {
    background: #FFFFFF;
    padding: 25px;
    border-radius: var(--br);
    height: 100%;
    max-height: 500px;
}

.categories_title {
    font-weight: 700;
    margin-bottom: 16px;
}

.categories_list {
    height: calc(100% - 40px);
    overflow: auto;
    margin-right: -16px;
}

.categories_list:after,
.categories_list:before {
    content: '';
    width: 100%;
    height: 30px;
    position: sticky;
    left: 0;
    z-index: -1;
    opacity: 0;
    display: block;
    transition: .3s;
}

.categories_list:after {
    margin-top: -30px;
}

.categories_list:before {
    margin-bottom: -30px;
}

.categories_list.scrolled_end:after {
    bottom: 0;
    z-index: 1;
    opacity: 1;
    background: linear-gradient(360deg, #FFFDF8 50.52%, rgba(255, 253, 248, 0.00) 100%);
}

.categories_list.scrolled_start:before {
    top: 0;
    z-index: 1;
    opacity: 1;
    background: linear-gradient(180deg, #FFFDF8 50.52%, rgba(255, 253, 248, 0.00) 100%);
}

.categories_menu {
    display: flex;
    flex-direction: column;
    margin: unset;
    padding: unset;
    gap: 17px;
    padding-right: 10px;
}

.category_item {
    margin: unset;
}

.category_link {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 12px;
    font-size: 18px;
    font-weight: 400;
}

.category_link picture {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 40px;
    border: 2px solid var(--basic-company);
    overflow: hidden;
}

.category_link picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section_main-banners {
    width: 100%;
    background: #FFFFFF;
    border-radius: var(--br);
    overflow: hidden;
}

/* SECTION MAIN [END] */

/* SECTION CATEGORIES [START] */
.section_categories {
    margin-top: 130px;
}

.categories_container {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 40px;
    gap: 40px;
}

.categories_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
}

.categories_circle {
    background-color: var(--bg-light);
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMzYiIHZpZXdCb3g9IjAgMCA2Mi45ODQ5OSAzNi4zNTk5OSI+PHBvbHlnb24gcG9pbnRzPSIxMC4yMDUgMTguMTggMTcuMDE1IDI5Ljk3IDIwLjQxNSAzNS44NiAyMC4xMjYgMzYuMzYgMjEuMjg1IDM2LjM2IDQxLjcwNSAzNi4zNiA0Mi44NTQgMzYuMzYgNDIuNTY1IDM1Ljg2IDUyLjc3NSAxOC4xOCA2Mi45ODUgMTguMTggNjIuOTg1IDE3LjE4IDUyLjc3NSAxNy4xOCA0Mi44NTQgMCA0MS43MDUgMCA1MS45MDUgMTcuNjggNDEuNzA1IDM1LjM2IDIxLjI4NSAzNS4zNiAxOC41MzUgMzAuNiAxMS4wNzUgMTcuNjggMTguNTU1IDQuNzMgMjEuMjg1IDAgMjAuMTI2IDAgMTAuMjA1IDE3LjE4IDAgMTcuMTggMCAxOC4xOCAxMC4yMDUgMTguMTgiIGZpbGw9IiNGRkUwNkEiLz48L3N2Zz4=');
    background-position: 0% 0%;
    background-repeat: repeat;
    background-size: auto 36px;
    display: block;
    width: 100%;
    padding: 50% 0%;
    position: relative;
    border-radius: 50%;
    transition: background-color 0.5s;
}

.categories_item:hover .categories_circle {
    background-color: var(--bg-light);
}

.categories_image {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    margin: 0 auto;
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    border-radius: 50%;
}

.categories_image.lazy {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s !important;
    will-change: transform;
}

.categories_image.lazy.loaded {
    opacity: 1;
    transform: translateY(0px);
}

.categories_item:hover .categories_image {
    transform: translateY(10px);
}

.categories_additional {
    background-color: #FFFFFF;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    border: 4px solid var(--bg-light);
    width: 60%;
    height: 60%;
    position: absolute;
    top: -40px;
    right: 0;
    overflow: hidden;
    border-radius: 50%;
}

.categories_additional.lazy {
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.5s, transform 0.5s !important;
    will-change: transform;
}

.categories_additional.lazy.loaded {
    opacity: 1;
    transform: scale(1);
}

.categories_item:hover .categories_additional {
    transform: translate(10px, -10px);
}

.categories_name {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    line-height: 1.2;
    display: block;
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 1199px) {
    .categories_container {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 991px) {
    .categories_container {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 767px) {
    .categories_container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 575px) {
    .categories_container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 360px) {
    .categories_container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* SECTION CATEGORIES [END] */



/* SECTION PRODUCTS [START] */
.section_products {
    margin-top: 150px;
}

.section_container {
    position: relative;
}

.product_list:not(.swiper-initialized) .swiper-wrapper {
    opacity: 0;
}

.product_item {
    padding-top: 75px;
}

.product_preview {
    position: relative;
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--br);
}

.swiper-wrapper .product_preview {
    margin: 0 1px;
}

.product_preview-center {
    width: calc(100% - 180px);
    margin: 0 auto;
}

.product_preview-image {
    background: var(--second-company);
    border: 8px solid var(--second-company);
    display: block;
    position: relative;
    border-radius: var(--br);
    overflow: hidden;
    width: 100%;
    max-width: 284px;
    margin: -75px auto 0;
    height: 300px;
}

.product_preview-image.rotate {
    animation: rotateY .5s linear;
}

@keyframes rotateY {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(90deg);
    }

    100% {
        transform: rotateY(0deg);
    }
}

.product_preview-image picture {
    width: 100%;
    height: 100%;
}

.product_preview-image picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: .5s !important;
}

.product_preview__name_link {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    display: block;
    margin: 16px 0 24px;
}

.discount_label {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 56px;
    height: 56px;
    border-radius: 100px;
    background: #FFECC2;
    color: var(--color);
    font-size: 16px;
    font-weight: 700;
    z-index: 2;
    transition: all 0.5s;
}

.product_image_slider .discount_label {
    position: absolute;
    top: 24px;
    left: 24px;
}

.discount_label.hidden {
    display: none !important;
}

.wishlist_button {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--basic-company);
    border-radius: 50%;
}

.wishlist_button.selected {
    color: var(--basic-company);
}

.svg_inner {
    opacity: 0;
}

.wishlist_button.selected .svg_inner,
.product_body_wishlist.selected .svg_inner {
    opacity: 1;
}

.product_preview-foot {
    width: calc(100% + 180px);
    margin-left: -90px;
}

.product_preview__variants {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.product_preview-foot .sweet_btn {
    width: 220px;
    height: 56px;
    margin: 16px auto 24px;
}

.product_preview_variant {
    border-radius: 100px;
    border: 1px solid #f6e8d8;
    background: #FFF;
    transition: .3s;
    width: fit-content;
    max-width: 160px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    margin: unset;
    cursor: pointer;
    line-height: 1;
    padding: 0 12px;
}
.product_preview_variant span {
    min-width: 0;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
}
.product_radio:checked+.product_preview_variant {
    border-color: var(--basic-company);
    -webkit-text-stroke: 1px var(--color);
}
.product_information .product_preview_variant {
    max-width: fit-content;
}
.product_preview_prices {
    margin: 24px 0 0;
    gap: 10px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}

.old_price {
    font-size: 14px;
    text-decoration: line-through;
}

.price.price--red {
    color: #EB5757;
}

/* SECTION PRODUCTS [END] */

/* SECTION REVIEWS [START] */
.section_reviews {
    background-color: var(--bg-light);
    /* background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMzYiIHZpZXdCb3g9IjAgMCA2Mi45ODQ5OSAzNi4zNTk5OSI+PHBvbHlnb24gcG9pbnRzPSIxMC4yMDUgMTguMTggMTcuMDE1IDI5Ljk3IDIwLjQxNSAzNS44NiAyMC4xMjYgMzYuMzYgMjEuMjg1IDM2LjM2IDQxLjcwNSAzNi4zNiA0Mi44NTQgMzYuMzYgNDIuNTY1IDM1Ljg2IDUyLjc3NSAxOC4xOCA2Mi45ODUgMTguMTggNjIuOTg1IDE3LjE4IDUyLjc3NSAxNy4xOCA0Mi44NTQgMCA0MS43MDUgMCA1MS45MDUgMTcuNjggNDEuNzA1IDM1LjM2IDIxLjI4NSAzNS4zNiAxOC41MzUgMzAuNiAxMS4wNzUgMTcuNjggMTguNTU1IDQuNzMgMjEuMjg1IDAgMjAuMTI2IDAgMTAuMjA1IDE3LjE4IDAgMTcuMTggMCAxOC4xOCAxMC4yMDUgMTguMTgiIGZpbGw9IiNGRkUzQTkiLz48L3N2Zz4='); */
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMzYiIHZpZXdCb3g9IjAgMCA2Mi45ODQ5OSAzNi4zNTk5OSI+PHBvbHlnb24gcG9pbnRzPSIxMC4yMDUgMTguMTggMTcuMDE1IDI5Ljk3IDIwLjQxNSAzNS44NiAyMC4xMjYgMzYuMzYgMjEuMjg1IDM2LjM2IDQxLjcwNSAzNi4zNiA0Mi44NTQgMzYuMzYgNDIuNTY1IDM1Ljg2IDUyLjc3NSAxOC4xOCA2Mi45ODUgMTguMTggNjIuOTg1IDE3LjE4IDUyLjc3NSAxNy4xOCA0Mi44NTQgMCA0MS43MDUgMCA1MS45MDUgMTcuNjggNDEuNzA1IDM1LjM2IDIxLjI4NSAzNS4zNiAxOC41MzUgMzAuNiAxMS4wNzUgMTcuNjggMTguNTU1IDQuNzMgMjEuMjg1IDAgMjAuMTI2IDAgMTAuMjA1IDE3LjE4IDAgMTcuMTggMCAxOC4xOCAxMC4yMDUgMTguMTgiIGZpbGw9IiNlY2M1OTEiLz48L3N2Zz4=');
    background-position: 0% 0%;
    background-repeat: repeat;
    background-size: auto 36px;
    margin-top: 150px;
    padding: 150px 0px;
}

/* SECTION REVIEWS [END] */

/* SECTION ABOUT [START] */
.section_about {
    margin-top: 150px;
}

.section_about-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 40px;
    gap: 40px;
}

/* SECTION ABOUT [END] */



/* FOOTER [START] */
.footer {
    background: var(--footer-bg);
    margin-top: 150px;
}

/* FOOTER - TOP */
/* .footer_top {} */

/* FOOTER - BOTTOM */
.footer_bottom {
    background: var(--footer-bottom-bg);
    border: none;
    border-top: 1px solid #422407;
    padding: 16px 0;
}

.footer_copyright {
    gap: 16px;
}

/* FOOTER [END] */



/* AUTOCOMPLETE [START] */
.autocomplete-suggestions {
    background-color: #FFF;
    overflow: hidden;
    overflow-y: auto;
    border: 1px solid #DBDBDB;
    top: 100%;
}

.search_item:hover {
    color: #000;
}

.autocomplete-suggestions .autocomplete-selected .search_name {
    color: #FF8A00;
}

.autocomplete-suggestions strong {
    font-weight: 600;
    color: var(--basic-company);
}

.autocomplete-suggestion {
    cursor: pointer;
}

.autocomplete-suggestions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    top: calc(100% + 18px);
    border-radius: 24px;
    background: #FFF;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    padding: 25px;
    transition: all 0.5s ease-in-out;
    animation-name: dropdownFadeInUp;
    animation-duration: 0.4s;
    width: 100% !important;
    max-height: calc(100dvh - 200px) !important;
}

.autocomplete-suggestions::-webkit-scrollbar-thumb {
    background: linear-gradient(0deg, transparent 25px, #EDEDED 25px, #EDEDED calc(100% - 25px), transparent 25px);
}

.search_item_img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    min-width: 80px;
    height: 80px;
    border: 3px solid #FFECC2;
    background-color: #FFECC2;
    border-radius: 12px;
    overflow: hidden;
}

.search_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search_item {
    gap: 16px;
}

.search_item_inner {
    gap: 6px;
}

.search_name {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
}

.search_price_el {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.search_old_price {
    font-size: 14px;
    text-decoration: line-through;
}

.search_price {
    font-size: 16px;
}

.search_old_price+.search_price {
    color: #EB5757;
}

#fn_search_no_products_found {
    display: none;
    position: absolute;
    top: calc(100% + 18px);
    border-radius: 24px;
    background: #FFF;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    padding: 25px;
    transition: all 0.5s ease-in-out;
    animation-name: dropdownFadeInUp;
    animation-duration: 0.4s;
    width: 100% !important;
    max-height: calc(100dvh - 200px) !important;
}

/* AUTOCOMPLETE [END] */

/* LAZYLOAD [START] */
.lazy:not(.initial) {
    transition: opacity 1s;
}

.lazy.initial,
.lazy.loaded,
.lazy.error {
    opacity: 1;
}

/* LAZYLOAD [END] */

.header_phones {
    gap: 36px;
}

.header_phone {
    gap: 4px;
}

.sweet_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--button-color);
    height: 50px;
    padding: 0 17px;
    border-radius: 100px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    border: unset;
    transition: .3s;
}

.sweet_btn.sweet_btn_alt {
    height: 40px;
    border: 1px solid var(--basic-company);
    background: #fff;
    color: var(--color);
}

.sweet_btn.sweet_btn_disable {
    background: grey;
    cursor: default;
}

/* SCROLLBAR [END] */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: unset;
}

::-webkit-scrollbar-thumb {
    background: #D2D2D2;
    border-radius: 80px;
}

::-webkit-scrollbar-thumb:hover {
    background: #888;
}

.product_information_footer::-webkit-scrollbar {
    width: 100%;
    height: 6px;
    background-color: transparent;
}
.product_information_footer::-webkit-scrollbar-thumb {
    background: var(--basic-company);
    border-radius: 6px!important;
}
.product_information_footer::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: transparent;
}

/* SCROLLBAR [END] */

/*HEADER SEARCH [START]*/

.header_search {
    width: 100%;
}

.search {
    position: relative;
}

.search__input {
    width: 100%;
    height: 40px;
    border-radius: 150px;
    border: 1px solid var(--basic-company);
    background: #faf9f7;
    padding: 0px 16px 0px 48px;
}

.search_button {
    position: absolute;
    z-index: 1;
    width: 24px;
    height: 24px;
    top: 8px;
    left: 16px;
    background: unset;
    border: unset;
    color: #BABABA;
}

/*HEADER SEARCH [END]*/

.footer_grid {
    display: grid;
    grid-template-columns: 20% 29% 29% 20%;
    margin-bottom: 30px;
    gap: 2%;
}

.footer_ttl {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

footer a {
    color: #fff;
}

.footer_copyright a {
    text-decoration: underline;
}

.footer_phones,
.footer_contacts {
    gap: 16px;
}

.footer_phone {
    gap: 8px;
}

.footer_phone svg {
    min-width: 24px;
}

.footer_phones .footer_phone:not(:first-child) {
    padding-left: 32px;
}

.menu_group--footer,
.footer_categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.menu_group--footer li,
.footer__menu_item {
    width: calc(50% - 6px);
    margin: 0;
    font-weight: 400;
}

.footer__menu_item.closed {
    display: none;
}

.footer_inner.opened .closed {
    display: block;
}

.footer__view_all {
    font-size: 16px;
    font-weight: 400;
    text-decoration-line: underline;
    margin-top: 12px;
    display: flex;
    width: fit-content;
}

.footer_socials {
    gap: 16px;
    margin-bottom: 24px;
}

.social_link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--bg-light);
    border-radius: 50%;
}

.banner_group_content {
    height: 100%;
    width: 100%;
}

.banner_group_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 440px;
    padding: 80px 0;
    margin-left: 80px;
}

.banner_group_name {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.banner_group_annotation {
    font-size: 96px;
    font-weight: 700;
    line-height: 1;
}

.banner_group_link {
    width: 221px;
    height: 56px;
    margin-top: auto;
}

.swiper_custom_arrow {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #fff;
    border: 1px solid var(--basic-company);
    border-radius: 50%;
    transition: .3s;
    color: #312B26;
}

.swiper~.swiper-button-prev {
    left: -20px;
}

.swiper~.swiper-button-next {
    right: -20px;
}

.review_item_body {
    border-radius: 24px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    padding: 23px;
    gap: 12px;
}

.review_aithor_date {
    color: #A8A8A8;
}

.review_item_header {
    gap: 11px;
}

.review_item_image {
    width: 100px;
    min-width: 100px;
    height: 100px;
    border-radius: 24px;
    border: 4px solid #FFECC2;
    background: #FFECC2;
    overflow: hidden;
}

.review_item_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review_item_description span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.review_item_name {
    font-weight: 700;
}

.review_item_rating {
    border-radius: 24px;
    background: var(--header-top-bg);
    margin-left: auto;
    padding: 12px 14px;
    font-size: 18px;
    color: #672F00;
}

.review_item_rating svg {
    color: #FEAC00;
}

.payments {
    gap: 16px;
}

.payment {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 40px;
    border: 1px solid var(--bg-light);
    border-radius: 30px;
    padding: 3px 13px;
}

.payment img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.informer_counter {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--basic-company);
    background: var(--header-top-bg);
    width: 24px;
    height: 24px;
    font-size: 14px;
    color: #672F00;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: -7px;
}

.fn_main_menu.active {
    color: #FFF;
    background: var(--basic-company);
}

.main_menu_grid {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    border-radius: 24px;
    background: #FFF;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    padding: 40px;
    width: calc(100% - 155px);
    max-height: calc(100dvh - 100px);
    grid-template-columns: 1fr 240px;
    grid-gap: 40px;
    transition: all 0.5s ease-in-out;
    animation-name: dropdownFadeInUp;
    animation-duration: 0.4s;
}

.main_menu_grid.active {
    display: grid;
}

.main_menu_ttl {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
}

.main_menu_list ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.main_menu_list li {
    font-weight: 400;
    margin: unset;
}

.main_menu_categories {
    height: 100%;
}

.main_menu_categories .categories_menu {
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 15px;
    align-items: center;
}

.main_menu_categories .categories_nav {
    overflow: auto;
}

.main_menu_categories .categories_menu li {
    width: calc(33% - 14px);
}

.main_menu_categories .categories_menu li span {
    line-height: 1.2;
}

@keyframes dropdownFadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.search_results {
    position: relative;
}

.fn_main_menu:not(.active) .open {
    display: none;
}

.fn_main_menu.active .open {
    display: block;
}

.fn_main_menu:not(.active) .close {
    display: block;
}

.fn_main_menu.active .close {
    display: none;
}

.to_top {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page_header {
    margin-bottom: 40px;
    row-gap: 24px;
}

.h1 {
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    margin: unset;
}

.products_sort {
    width: 200px;
}

.products_footer {
    margin-top: 80px;
    row-gap: 24px;
}

.category_descrition {
    width: calc(100% - 600px);
}

.category_description__image {
    width: 500px;
    height: fit-content;
}

.product_preview_wrapper {
    padding-top: 75px;
}

.catalog_grid {
    display: grid;
    grid-template-columns: repeat(3, calc(33% - 12px));
    grid-gap: 40px;
    column-gap: 24px;
}

.product_preview__no_image {
    width: 100%;
    height: 100%;
}

.product_preview__no_image svg {
    width: 70%;
    height: 70%;
}

.alt_section {
    background-color: #FFFBED;
}

.fn_messanger:not(.active_ms) .open {
    display: none;
}

.fn_messanger.active_ms .open {
    display: block;
}

.fn_messanger:not(.active_ms) .close {
    display: block;
}

.fn_messanger.active_ms .close {
    display: none;
}

.sweet_messangers {
    position: fixed;
    z-index: 999;
    right: 100px;
    top: calc(50% - 32px);
}

.messanger_link {
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid var(--basic-company);
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    animation-name: dropdownFadeInUp;
    animation-duration: 0.4s;
}

.messanger_link:not(.fn_messanger) {
    position: absolute;
    display: none;
}

.active_ms .messanger_link:not(.fn_messanger) {
    display: flex;
}

.messanger_link:nth-child(4) {
    bottom: calc(100% + 16px);
}

.messanger_link:nth-child(3) {
    bottom: calc(100% + 96px);
}

.messanger_link:nth-child(2) {
    bottom: calc(100% + 176px);
}

.messanger_link:nth-child(1) {
    bottom: calc(100% + 256px);
}

.product_header {
    margin-bottom: 40px;
}

.product_top {
    margin-bottom: 40px;
}

.product_images {
    width: calc(100% - 540px);
    height: fit-content;
    border-radius: 24px;
    padding: 40px;
    background: var(--header-top-bg);
}

.product_images_slider {
    position: relative;
    width: 160px;
    height: 600px;
    padding: 40px 0;
}

.product_image_slider {
    position: relative;
    width: calc(100% - 176px);
}

.product_image_wrapper picture,
.product_images_wrapper picture {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.product_image_wrapper {
    height: 600px;
    border-radius: 24px;
    border: 4px solid var(--basic-company);
    overflow: hidden;
    transition: unset;
}

.product_images_wrapper {
    height: 160px;
    width: 160px;
    border-radius: 24px;
    border: 4px solid var(--basic-company);
    overflow: hidden;
}

.product_image_wrapper picture,
.product_images_wrapper img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.product_images_wrapper picture {
    margin: auto;
}

.product_image_wrapper img,
.product_images_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product_image_slider .swiper-button-next {
    right: 24px;
}

.product_image_slider .swiper-button-prev {
    left: 24px;
}

.product_images_list {
    height: 100%;
}

.product_images_slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-vertical~.swiper-button-next {
    right: calc(50% - 20px) !important;
    top: calc(100% - 10px);
    transform: rotate(90deg);
}

.swiper-vertical~.swiper-button-prev {
    right: calc(50% - 20px) !important;
    left: unset;
    top: 15px;
    transform: rotate(90deg);
}

.swiper-slide-thumb-active .product_images_wrapper {
    border-color: var(--button-color-hover);
}

.swiper:not(.swiper-initialized) {
    overflow: hidden;
}

.fn_images_slide:not(.swiper-initialized) .swiper-wrapper .swiper-slide:nth-child(1n+3) {
    display: none;
}

.product_information {
    width: 500px;
    gap: 32px;
}

.product_information_footer {
    margin-top: 40px;
    gap: 40px;
    width: 100%;
    background: var(--bg-light);
    padding: 16px 24px;
    overflow: auto;
}
.product_anchor {
    text-decoration: none;
    width: fit-content;
    color: var(--body-heading);
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}
.product_anchor:hover {
    text-decoration: underline;
    color: var(--body-heading);
}

.product_variant_sku span:first-child,
.product_annotation span:first-child {
    color: #999;
}

.product_information_header {
    gap: 64px;
}

.product_body_wishlist {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wishlist_product_button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--basic-company);
    border-radius: 50%;
}

.selected .wishlist_product_button {
    color: var(--basic-company);
}

.product_rating,
.post_rating {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 50px;
    border: 1px solid #D2D2D2;
    background: #FFF;
    padding: 12px 18px;
}

.product_body_form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.product_annotation {
    display: inline-flex;
    gap: 4px;
}

.product_prices {
    font-size: 24px;
    gap: 6px;
}

.product_prices .old_price {
    font-size: 16px;
}

.product_available {
    margin-top: 6px;
    font-size: 14px;
}

.product_available_in_stock {
    color: #27AE60;
}

.product_available_out_stock {
    color: #EB5757;
}

.product_variants {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product_body_btns {
    display: flex;
    align-items: center;
    gap: 40px;
}

.product_body_btns .sweet_btn {
    width: 221px;
}

.amount {
    display: flex;
    align-items: center;
    gap: 8px;
}

.amount span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid #D2D2D2;
    border-radius: 50%;
    transition: .3s;
    cursor: pointer;
}

.amount_input {
    border-radius: 100px;
    border: 1px solid #D2D2D2;
    background: #F9F9F9;
    width: 72px;
    height: 48px;
    text-align: center;
}

.product_bottom_main {
    width: calc(100% - 600px);
    gap: 56px;
}

.product_bottom_ttl {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.desc_dealivery_payment {
    margin-bottom: 16px;
}

.desc_product_ttl {
    font-weight: 700;
}

.item_dealivery_payment ul {
    margin: unset;
    margin-left: 20px;
}

.item_dealivery_payment ul li {
    margin: unset;
}

.dealivery_payment_item:not(:last-child) {
    margin-bottom: 16px;
}

.product_features {
    gap: 16px;
}

.product_feature_item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product_feature_item div {
    width: 50%;
}

.product_feature_name {
    color: #999;
}

.product_side {
    width: 460px;
    height: fit-content;
    position: sticky;
    padding-top: 75px;
    top: 120px;
}

.review_block_header .sweet_btn {
    height: 48px;
    min-width: 208px;
}

.review_block_header {
    margin-bottom: 24px;
}

.product_no_reviews {
    border-radius: var(--br);
    border: 1px solid #D2D2D2;
    background: #FFF;
    padding: 24px;
    font-size: 18px;
}

.popup_form_inner {
    display: flex;
    flex-direction: column;
    width: 400px;
    max-width: 100%;
    gap: 24px;
}

.popup_form_header {
    font-size: 24px;
    height: 40px;
    display: flex;
    align-items: center;
}

.form_input,
.form_textarea {
    width: 100%;
    height: 48px;
    padding: 0 24px;
    border-radius: 64px;
    border: 1px solid #D2D2D2;
    background: #F9F9F9;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
}

.form_textarea {
    height: unset;
    padding: 24px;
    border-radius: 24px;
}

label.error {
    font-size: 16px;
    padding: 5px 26px 0;
}

::placeholder {
    color: #C7C7C7;
    font-family: var(--font-family);
}

.form_footer .sweet_btn {
    margin: 0 auto;
    width: 100%;
    max-width: 344px;
}

.rating-stars input {
    display: none;
}

.rating-stars,
.rating-stars label,
.review_block_header,
.review_form_rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.rating-stars {
    gap: 8px
}

.rating-stars .rating_fill {
    fill: #FF8A00;
    -webkit-transition: .3s;
    transition: .3s
}

.rating-stars label {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    cursor: pointer
}

.rating-stars label svg {
    width: 100%;
    height: 100%
}

.rating-stars label:hover:before {
    -webkit-transition: all .25s ease 0s;
    transition: all .25s ease 0s
}

.rating-stars input:checked+label~label .rating_fill {
    fill: transparent
}

.rating-stars input:checked+label~label:hover .rating_fill {
    fill: #FF8A00
}

.review_form_rating {
    flex-direction: column;
}

.comments_block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.comment_item {
    position: relative;
    border-radius: var(--br);
    border: 1px solid #D2D2D2;
    background: #FFF;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.anchor_link {
    position: absolute;
    top: -120px;
    opacity: 0;
    visibility: hidden;
}

.comment_item_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #120C00;
    font-size: 18px;
    font-weight: 700;
}

.comment_item_footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.comment_item_admin {
    color: #EB5757;
}

.comment_item_date {
    color: #828282;
}

.swiper-navigation-disabled~.swiper-button-next,
.swiper-navigation-disabled~.swiper-button-prev {
    display: none;
}

.fn_variants_slide .swiper-slide {
    width: auto !important;
}

.fn_variants_slide .swiper-slide:last-child {
    margin: unset !important;
}

.product_preview_variants {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    padding: 0 20px;
}

.cart_popup_wrapper {
    width: 100%;
    height: 100%;
    transition: all 0.5s ease-in-out;
    animation-name: dropdownFadeInRight;
    animation-duration: 0.4s;
    padding: unset !important;
}

@keyframes dropdownFadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(50%, 0, 0);
        transform: translate3d(50%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.cart_purchase_title {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    padding: 24px;
    border-bottom: 1px solid #D2D2D2;
}

.cart_popup_inner,
.cart_popup_purchases {
    height: 100%;
}

.cart_popup_footer {
    margin-top: auto;
    padding: 24px;
    border-top: 1px solid #D2D2D2;
    gap: 16px;
}

.cart_popup_total_wrapper {
    gap: 5px;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
}

.cart_popup_total_wrapper .currency {
    font-size: 18px;
    margin-bottom: 3px;
}

.cart_popup_purchases_wrapper {
    padding: 0 24px;
    overflow: auto;
    max-height: calc(100dvh - 257px);
}

.purchase_item {
    position: relative;
    padding: 24px 0;
    border-bottom: 1px solid #D2D2D2;
    gap: 12px;
}

.purchase_item_image {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 16px;
    border: 3px solid #FFECC2;
    overflow: hidden;
    background: #FFECC2;
}

.purchase_item_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.purchase_item_image svg {
    width: 70%;
    height: 70%;
}

.purchase_item_content {
    gap: 7px;
    width: 100%;
}

.purchase__remove {
    position: absolute;
    top: 24px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.purchase_item_name {
    max-width: calc(100% - 34px);
    width: 100%;
}

.purchase_item_prices {
    gap: 10px;
}

.amount.purchase_item_amount span {
    width: 24px;
    height: 24px;
}

.purchase_item_amount .amount_input {
    width: 48px;
    height: 24px;
}

.cart_page .h6 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 24px;
}

.block--cart_purchases .h6 {
    margin-bottom: unset;
}

.form_cart .sweet_btn {
    width: 100%;
}

.order_boxeded .h6 {
    margin-bottom: 16px;
}

.form__footer .sweet_btn {
    min-width: 200px;
}

.delivery__description {
    border-radius: 12px;
    background: #F9F9F9;
    border: unset;
    padding: 15px;
    font-size: 16px;
    color: #312B26;
}

.order_payment__form .sweet_btn,
.order_payment__checkout .sweet_btn {
    min-width: fit-content;
    max-width: 100%;
    font-size: 16px;
    margin-top: 24px;
    width: 300px;
}