#messageContainer {
    display: none;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

#messageContainer div {
    background-color: #fefefe;
    margin: 15% auto;
    font-size: 14px;
    padding: 20px;
    border: 1px solid #ddd;
    width: 40%;
}

.success-message {
    color: #fff;
    background-color: #28a745;
    padding: 10px;
    border-radius: 5px;
}
.slick-next {
    right: -60px !important;
}

.slick-prev {
    left: -60px !important;
}

.slick-next:before,
.slick-prev:before {
    display: none;
}

/* general css */

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

:root {
    --font: "Inter", sans-serif;
    --main_color: #0e1b4d;
    --title_color: #0e1b4d;
    --text_color: #0e1b4d;
    --caption_color: rgba(14, 27, 77, 0.75);
    --card_modal_bg: rgba(14, 27, 77, 0.5);
}

body {
    box-sizing: border-box;
    font-family: var(--font);
    font-size: 17px;
    color: var(--title_color);
    margin: 0;
    padding: 0;
    letter-spacing: 0.9px;
}

h1, .h1 {
    font: 800 46px/1.3 var(--font);
    color: var(--main_color);
}

h2, .h2 {
    font: 800 28px/1.4 var(--font);
    color: var(--main_color);
}

a {
    text-decoration: none;
    transition: .3s;
}

.container {
    max-width: 1680px;
    margin: 0 auto;
    padding-left: 50px;
    padding-right: 50px;
}

.caption {
    font-weight: 600;
    color: var(--caption_color);
    margin-bottom: 8px;
    display: inline-block;
    font-size: 13px;
}

.caption .count_in_cart {
    display: none;
}

.hidden {
    display: none !important;
}

.star-rating_stars {
    display: flex;
    margin-right: 10px;
}

.rating-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.star-rating {
    display: flex;
    align-items: center;
    margin: 15px 0 30px;
}

.spinner {
    animation: rotator 1.4s linear infinite;
}

.zoom-image {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    position: absolute;
    left: 20px;
    top: 20px;
    border: 1px solid #e6e6e6;
    opacity: 0;
    transition: .3s;
    pointer-events: none;
}

.zoom-image:after {
    content: "";
    width: 15px;
    height: 15px;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    background-image: url(/img/zoom.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transform: translate(-50%, -50%);
}

.mob-v {
    display: none !important;
}
.bold-text{
    color: var(--caption_color);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.066px;
    line-height: 1.7;
}
/* quantity */
.quantity-item_container {
    display: flex;
}

.quantity-input_wrapp {
    display: grid;
    grid-template-columns: 45px 50px 45px;
    height: 50px;
    position: relative;
}

.quantity-input_wrapp:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border: 1px solid var(--caption_color);
    border-radius: 26px;
    pointer-events: none;
}

.quantity_button {
    border: none;
    outline: none;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.quantity_input {
    border: none;
    padding: 0 5px;
    flex-grow: 1;
    -webkit-appearance: none;
    appearance: none;
    font-weight: 500;
    opacity: .85;
    text-align: center;
    font-size: 18px;
}

.quantity_button svg {
    width: 12px;
    pointer-events: none;
}

.quantity *:focus-visible {
    outline: 2px solid rgba(14, 27, 77, .5);
    outline-offset: 3px;
    box-shadow: 0 0 0 0.3rem rgb(255, 255, 255), 0 0 0.5rem 0.4rem rgba(14, 27, 77, 0.3);
}
/* price container */
.price-container {
    display: flex;
    margin-bottom: 5px !important;
}
.price-item {
    font-weight: 600;
    margin-right: 10px;
}

.price-item-regular {
    color: var(--caption_color);
    font-size: 17px;
    text-decoration: line-through;
}

.price-item-sale {
    font-size: 19px;
    color: var(--main_color);
}

.mt-0 {
    margin-top: 0;
}

.badge {
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    padding: 7px 12px;
    text-align: center;
    word-break: break-word;
    font-weight: 600;
}

.price_badge-sold-out {
    border: 1px solid var(--main_color);
    display: none;
}

.price_badge-sale {
    background-color: #0589b3;
    color: #fff;
}

.price_regular {
    display: none;
}

.price_sale {
    display: flex;
    align-items: center;
    height: 100%;
}
.add-product {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 0;
    padding: 10px 30px;
    cursor: pointer;
    font-size: 18px;
    color: var(--main_color);
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    font-weight: 600;
    width: 100%;
    min-height: 70px;
    position: relative;
    border-radius: 50px;
    margin-bottom: 16px;
}
.add-product:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 10px solid var(--main_color);
    border-radius: 50px;
    transition: .2s;
    box-shadow: 0 4px 5px rgba(14, 27, 77, 0);
}

.add-product:hover:after {
    box-shadow: 0 0 0 1.3px rgba(14, 27, 77, 0.7), 0 0 0 1.3px var(--main_color);
}
.share-button_btn {
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--main_color);
    display: flex;
    min-height: 30px;
    align-items: center;
    transition: .1s;
    padding: 0;
    cursor: pointer;
}
.share-button_btn:hover {
    text-decoration: underline;
}
.icon-share {
    height: 20px;
    margin-right: 16px;
    min-width: 20px;
}
/* end quantity */
/* header css */

.announcement-bar {
    background-color: #0589b3;
    position: relative;
    z-index: 10;
}

.announcement-accent-bar {
    background-color: #08bf7a;
}

.announcement-bar__message {
    margin: 0;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 13px 0;
    margin: 0;
    letter-spacing: 0.9px;
    line-height: 1;
}

.announcement-bar_link {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
}

.announcement-bar_link:hover {
    text-decoration: underline;
}

.icon-arrow {
    display: inline-block;
    pointer-events: none;
    margin-left: 6px;
    vertical-align: middle;
    width: 18px;
    height: 11px;
    flex-shrink: 0;
}

.announcement-bar_link:hover .icon-arrow path,
button:hover .icon-arrow path {
    transform: translate(-0.05rem);
}

.icon-arrow path {
    transform: translate(-0.25rem);
    transition: transform .3s ease;
}


/* header */
.header {
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: #fff;
}

.header .container {
    padding-top: 20px;
    padding-bottom: 20px;
}

.header .flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    max-width: 240px;
}

.header .header_logo {
    padding: 7px;
}

.header .header_icons {
    display: flex;
    align-items: center;
}

.header .header-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.header .header-icon:hover img {
    transform: scale(1.07);
}

.header .header-icon img {
    filter: grayscale(1);
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: .2s;
}

.header .header-icon.header_search img {
    width: 23px;
    height: 23px;
}

.header .cart-count-bubble {
    position: absolute;
    background-color: var(--main_color);
    color: #fff;
    height: 18px;
    width: 18px;
    border-radius: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    bottom: 5px;
    right: 5px;
    line-height: 1;
    letter-spacing: 0;
}

@media(max-width: 767px) {
    .container {
        padding: 0 15px;
    }

    .mob-v {
        display: flex !important;
    }

    .desc-v {
        display: none !important;
    }

    .announcement-bar__message {
        font-size: 14px;
    }

    .header .container {
        padding: 10px 30px;
    }

    .header .logo {
        width: 100%;
        height: 100%;
    }

    .header .header_logo {
        padding: 0 30px;
    }
    h1, .h1 {
        font-size: 34px;
        line-height: 1.2;
    }

}

/* product-section */
.product-section {
    padding: 60px 0;
}

.product-section h1 {
    margin: 0;
}

.product-section .product-slider {
    width: 45%;
}

.product-section .product-description {
    width: 55%;
    padding-left: 80px;
}

.product-section .product-description_wrapper {
    max-width: 630px;
}

.product-section .column-sticky {
    display: block;
    position: sticky;
    top: 10px;
}

.product-section .flex-container {
    display: flex;
    justify-content: space-between;
}

.product-section .main-swiper {
    width: 100%;
}

.product-section .main-swiper .swiper-wrapper {
    aspect-ratio: 1/1;
}

.product-section .main-swiper .swiper-slide img,
.product-section .main-swiper .swiper-slide video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-section .swiper-slide_inner {
    position: relative;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.product-section .swiper-slide.play-icon .swiper-slide_inner:after {
    content: "";
    position: absolute;
    width: 21px;
    height: 21px;
    background-color: #fff;
    border-radius: 50%;
    right: 8px;
    top: 8px;
    background-image: url(/img/play-icon.svg);
    background-repeat: no-repeat;
    background-size: 8px;
    background-position: center;
}

.product-section .main-swiper .swiper-slide img {
    cursor: pointer;
}

.product-section .main-swiper .swiper-slide:hover .zoom-image {
    opacity: 1;
}

.product-section .main-swiper .swiper-slide {
    display: flex;
    justify-content: center;
}

.product-section .main-swiper .swiper-slide video {
    object-fit: contain !important;
    width: auto;
    height: 100%;
    border-radius: 20px;
}

.product-section .product-thumbs {
    box-sizing: border-box;
    padding: 10px 0;
}

.product-section .product-thumbs .swiper-slide {
    position: relative;
    aspect-ratio: 1/1;
    border: 1px solid transparent;
    border-radius: 20px;
    overflow: hidden;
}

.product-section .product-thumbs .swiper-slide-thumb-active {
    border-color: var(--main_color);
}

.product-section .product-thumbs .swiper-slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}

.product-section .product-thumbs .swiper-pagination {
    display: none;
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    width: auto;
    height: 30px;
    min-width: 50px;
}

.product-section .product-thumbs .swiper-button-pagination {
    position: relative;
    top: 0;
    left: 0;
    width: 44px;
    height: 44px;
}

.product-section .product-thumbs .swiper-button-pagination:after,
.product-section .product-thumbs .swiper-button-pagination:before {
    font-size: 11px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
}

.product-thumbs__padgination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.product-section .inline-richtext {
    font-size: 16px;
    color: var(--caption_color);
    font-weight: 600;
}
.product-section .product_tax.caption.mt-0{
    margin-top: 0;
}
.product-section .product-description_wrapper>*+* {
    margin: 15px 0;
}

.product-section .product_text {
    margin-bottom: 0;
}

.product-section .stars {
    --percent: calc(var(--rating) / 5 * 100%);
    display: inline-block;
    font-size: 20px;
    font-family: var(--font);
    line-height: 1;
    margin-right: 8px;
}

.product-section .stars:before {
    content: '★★★★★';
    letter-spacing: 3px;
    background: linear-gradient(90deg, rgb(10, 8, 1) var(--percent), #c9c9c9 var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-section .rating {
    display: flex;
}

.product-section .payment-button {
    width: 100%;
    padding: 10px 30px;
    min-height: 45px;
    border: 2px solid #ffc520;
    background: #ffc520;
    color: #253b80;
    font-weight: 500;
    text-align: center;
    border-radius: 50px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 16px;
    letter-spacing: 1.2px;
    transition: .1s;
    cursor: pointer;
}

.product-section .payment-button:hover {
    background: #f6b600;
    border-color: #f6b600;
}

.product-section .payment-button img {
    width: 60px;
    height: 20px;
    object-fit: contain;
    margin-left: 8px;
}

.payment-button_more {
    margin: 16px 0 10px;
    font-size: 13px;
    letter-spacing: 0.05px;
    text-decoration: underline;
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
}
.product-section .product-form {
    margin: 30px 0;
    max-width: 450px;
}

.product-section .offers-block_inner {
    border: 1px solid #e6e6e6;
}

.product-section .offers-block_title {
    display: flex;
    align-items: center;
    background: transparent;
    height: 64px;
    padding: 0px 18px;
}

.product-section .offers-block_title h4 {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin: 0px;
    padding: 0px;
}

.product-section .offers-single-block {
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-section .discount_price {
    padding-left: 18px;
    text-align: right;
    display: flex;
    flex-direction: column;
}

.product-section .discount-label {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.2;
    display: flex;
    align-items: center;
}

.product-section .discount-label input {
    appearance: none;
    position: relative;
    overflow: hidden;
    margin: 0;
    width: 0;
    height: 0;
}

.product-section .discount-label {
    cursor: pointer;
    max-width: 100%;
}

.product-section .discount-label img {
    width: 100px;
    height: 100px;
    margin-right: 10px;
    flex-shrink: 0;
    object-fit: cover;
}

.product-section .discount-label.active {
    font-weight: 600;
}

.product-section .discount-label:hover .checkmark::after {
    background-color: #000;
}

.product-section .input-wrapper {
    height: 24px;
    width: 24px;
    position: relative;
    display: inline-flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    flex-shrink: 0;
    margin-right: 12px;
}

.product-section .checkmark {
    border: 1px solid rgb(230, 230, 230);
    height: 24px;
    width: 24px;
    margin: auto;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 100%;
}

.product-section .checkmark::after {
    content: "";
    height: 14px;
    width: 14px;
    background: transparent;
    transition: 0.25s linear 0s;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 100%;
    transform: translate(-50%, -50%);

}

.product-section input:checked~.checkmark:after {
    background-color: #000;
}

.product-section .new-price {
    font-size: 16px;
    font-weight: 600;
    text-align: right;
    margin-bottom: 6px;
    color: rgb(0, 0, 0);
}

.product-section .old-price {
    text-decoration: line-through;
    font-size: 14px;
    text-align: right;
    color: rgb(102, 102, 102);
}

.product-section .offers-block_inner>div:not(:last-child) {
    border-bottom: 1px solid #e6e6e6;
}

.product-section .offers-block_footer-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    border: none;
    cursor: pointer;
    color: #fff;
    width: 100%;
    height: 48px;
    transition: opacity 100ms ease-in 0s;
    font-size: 14px;
    font-weight: 500;
}

.product-section .offers-block_footer-submit:hover {
    opacity: 0.8;
}

.product-section .offers-block_footer-submit svg {
    margin-left: 8px;
}

.product-section .text {
    margin: 30px 0;
}

.product-section .text p:first-child {
    margin-top: 0;
}

.product-section .text li {
    margin: 10px 0;
    position: relative;
    padding-left: 28px;
}

.product-section .text li:before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 0;
}

.product-section .text ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.product-section .text h5 {
    font-size: 15px;
    color: var(--main_color);
    margin: 25px 0 0;
}

.product-section .share-button {
    margin: 0;
}

@media(max-width: 997px) {
    .product-section .offers-single-block {
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-end;
    }

    .product-section .discount_price {
        padding: 0;
        margin-top: 15px;
    }

    .product-section .offers-single-block {
        padding: 10px;
    }

    .product-section .offers-block_title {
        padding: 0 10px;
    }
}

@media(max-width: 767px) {
    .product-section .flex-container {
        flex-direction: column;
    }

    .product-section .product-slider {
        width: 100%;
    }

    .product-section .product-description {
        width: 100%;
        padding: 0;
    }

    .main-swiper {
        display: none;
    }

    .product-section .product-thumbs .swiper-slide {
        border: none;
        aspect-ratio: auto;
        height: 480px;
        display: flex;
        justify-content: center;
    }

    .product-section .product-thumbs .swiper-slide img {
        object-fit: contain;
        border-radius: 20px;
        overflow: hidden;
        max-width: 100%;
        max-height: 100%;
        position: relative;

    }

    .product-section .product-thumbs .swiper-pagination {
        display: block;
        font-size: 11px;
    }
    .product-section {
        padding: 30px 0;
    }

    .product-section .swiper-slide_inner {
        width: auto;
        height: auto;
        pointer-events: all;
    }

    .product-section .discount-label img {
        width: 70px;
        height: 70px;
    }

}

/* product modal */
.product-modal {
    background-color: #fff;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow-y: auto;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
    z-index: 11;
}

.product-modal .close-modal img {
    pointer-events: none;
}

.product-modal .close-modal {
    background-color: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    right: 20px;
    padding: 12px;
    position: fixed;
    z-index: 2;
    top: 20px;
    width: 40px;
    height: 40px;
}

.product-modal .product-modal_dialog {
    padding: 20px 120px;
    background-color: #fff;
}

.product-modal .product-modal_content img {
    width: auto;
    max-width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: contain;
}

.product-modal .product-modal_content>* {
    margin: 20px 0;
}

.product-modal .video-media {
    padding-top: 50%;
    position: relative;
}

.product-modal .video-media button {
    display: block;
    max-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
}

.product-modal .video-media button video {
    display: block;
    max-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.product-modal .video_button-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 65px;
    height: 65px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
}

.product-modal .video_button-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.product-modal .product-modal_content {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

@media(max-width: 767px) {
    .product-modal .product-modal_dialog {
        padding: 15px;
    }

    .product-modal .video-media {
        padding-top: 100%;
    }

    .product-modal .product-modal_content>* {
        display: none;
    }

    .product-modal .product-modal_dialog .active {
        display: block !important;
    }
}

/* end product modal */

/* card modal */
.card-modal.active {
    visibility: visible;
}

.card-modal {
    visibility: hidden;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    background-color: var(--card_modal_bg);
    transition: visibility .2s ease;
}

.card-modal .card-modal_inner {
    height: 100%;
    width: 420px;
    padding: 0 15px;
    border: 1px solid rgba(14, 27, 77, .2);
    border-right: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translate(100%);
    transition: transform .2s ease;
    background-color: #fff;
}

.card-modal.active .card-modal_inner {
    transform: translate(0);
}

.card-modal .card-modal_header {
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 16px 0;
}

.card-modal .cart-drawer__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.card-modal .cart-drawer__empty .button {
    background: rgb(8, 191, 122);
    width: 100%;
    max-width: 190px;
    /*min-height: 67px;*/
    padding: 24px;
    text-align: center;
    -webkit-appearance: none;
    appearance: none;
    font-size: 16px;
    color: #fff;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    position: relative;
    font-weight: 800;
    letter-spacing: 1px;
}

.card-modal .cart-drawer__empty .button:hover {
    box-shadow: 0 0 0 1.3px rgb(8, 191, 122), 0 0 0 1.3px rgb(8, 191, 122);
}

.card-modal .card_heading {
    display: none;
    margin: 0;
}

.card-modal .card_close {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 10px;
    outline: none;
    cursor: pointer;
    position: relative;
    right: -10px;
}

.card-modal .card_close:hover img {
    transform: scale(1.02);
}

.card-modal .card_close img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    pointer-events: none;
    transition: .2s;
}

.card-modal .content-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #e6e6e6
}

.card-modal .content-top>div {
    width: 47%;
    opacity: .85;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--caption_color);
}

.card-modal .content-top>div:nth-child(even) {
    text-align: right;
}

.card-modal .cart-item {
    display: flex;
    padding-top: 25px;
}

.card-modal .cart-image {
    width: 100px;
    display: block;
    flex-shrink: 0;
}

.card-modal .cart-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.card-modal .cart-item__name {
    font-size: 17px;
    color: var(--main_color);
    margin: 0;
    font-weight: 800;
    line-height: 1.3;
}

.card-modal .cart-item__name:hover {
    text-decoration: underline;
}

.card-modal .cart-item__general {
    display: flex;
}

.card-modal .cart-item__details {
    padding: 0 30px;
}

.card-modal .cart-item__prices {
    margin: 10px 0;
}

.card-modal .product-option {
    font-size: 15px;
    word-break: break-word;
}

.card-modal .cart-item__old-price {
    opacity: .7;
    font-weight: 500;
    text-decoration: line-through;
}

.card-modal .discounts__discount svg {
    width: 12px;
    height: 12px;
    margin-right: 8px;
}

.card-modal .discounts__discount {
    font-size: 13px;
    display: none !important;
    align-items: center;
    font-weight: 600;
}

.card-modal .cart-item__totals {
    text-align: right;
}

.card-modal .cart-item__total-old {
    font-size: 15px;
    color: var(--main_color);
    text-decoration: line-through;
    margin-bottom: 3px;
    display: block;
    opacity: .7;
    font-weight: 600;
}

.card-modal .cart-item__total {
    font-size: 17px;
    color: var(--main_color);
    font-weight: 600;
}

.card-modal .cart-item__quantity {
    padding: 0 30px;
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.card-modal .cart-item__remove {
    background: none;
    border: none;
    outline: none;
    padding: 10px;
    margin-left: 16px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-modal .cart-item__remove img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.card-modal .card-modal_footer {
    display: none;
    padding: 16px 0;
}

.card-modal .card-modal_content {
    display: none;
    overflow: auto;
    flex: 1;
    border-bottom: 1px solid #e6e6e6;
}

.card-modal .totals__total {
    margin: 0;
    font-size: 18px;
    color: var(--main_color);
    line-height: 1;
}

.card-modal .totals {
    display: flex;
    align-items: center;
}

.card-modal .totals__total-value {
    font-size: 19px;
    opacity: .7;
    font-weight: 600;
    margin: 0 0 0 20px;
    line-height: 1;
}

.card-modal .tax-note p {
    margin: 12px 0;
    font-size: 13px;
    opacity: .75;
    line-height: 1.6;
    font-weight: 600;
}

.card-modal .cart__checkout-button {
    background: rgb(8, 191, 122);
    width: 100%;
    min-height: 67px;
    padding: 0 30px;
    -webkit-appearance: none;
    appearance: none;
    font-size: 16px;
    color: #fff;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    position: relative;
    font-weight: 800;
    letter-spacing: 1px;
}

.card-modal .cart__checkout-button:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    z-index: 1;
    transition: box-shadow .2s ease;
}

.card-modal .cart__checkout-button:hover:after {
    box-shadow: 0 0 0 1.3px rgb(8, 191, 122), 0 0 0 1.3px rgb(8, 191, 122);
}

.loading__spinner:not(.hidden)+.cart-item__total-prices {
    opacity: 50%;
    visibility: hidden;
}

.card__overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

@keyframes rotator {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(270deg);
    }
}

/* end card  modal */

/* search modal */
.search-modal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    visibility: hidden;
    opacity: 0;
    top: -100%;
    transition: .3s;
}

.search-modal.active {
    visibility: visible;
    top: 0;
    opacity: 1;
}

.search-modal .search-modal__content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 65px;
    position: relative;

}

.search-modal .search-modal__form {
    width: 100%;
    max-width: 780px;
    position: relative;
}

.search-modal .search__input {
    height: 50px;
    position: relative;
    border: 1px solid #000;
    border-radius: 26px;
}

.search-modal .field__input {
    width: 100%;
    height: 100%;
    padding: 10px 120px 10px 15px;
    border-radius: 26px;
    overflow: hidden;
    font-size: 17px;
    font-weight: 500;
    appearance: none;
    outline: none;
    color: #000;
    border: 1px solid transparent;
}

.search-modal .field__input:focus {
    border-color: #000;
}

.search-modal .field__input[type="search"]::-webkit-search-cancel-button {
    display: none;
}

.search-modal .field__input:focus,
.search-modal .field__input:not(:placeholder-shown) {
    padding-top: 21px;
}

.search-modal .field__input::placeholder {
    opacity: 0;
    visibility: hidden;
}

.search-modal .field__input:focus~.field__label,
.search-modal .field__input:not(:placeholder-shown)~.field__label,
.search-modal .field__input:-webkit-autofill~.field__label {
    font-size: 10px;
    top: 3px;
}

.search-modal .field__button {
    position: absolute;
    background: none;
    border: none;
    outline: none;
    padding: 0;
    height: 100%;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    top: 0;
}

.search-modal .field__button:hover img {
    transform: scale(1.08);
}

.search-modal .search__button {
    right: 0;
}

.search-modal .reset__button {
    position: absolute;
    right: 45px;
}

.search-modal .reset__button:hover span {
    transform: scale(1.08);
}

.search-modal .reset__button span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    border: 1px solid rgba(0, 0, 0, .08);
    transition: .3s;
}

.search-modal .reset__button img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    transition: .2s;
}

.search-modal .search__button img {
    width: 17px;
    height: 20px;
    object-fit: contain;
    transition: .2s;
}

.search-modal .reset__button:not(:focus):after {
    border-right: 1px solid rgba(0, 0, 0, .08);
    display: block;
    height: 65%;
    content: "";
    position: absolute;
    right: 0;
}

.search-modal .close-btn {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
}

.search-modal .close-btn img {
    pointer-events: none;
}

.search-modal .field__label {
    position: absolute;
    font-size: 17px;
    line-height: 1.5;
    color: rgba(0, 0, 0, .75);
    left: 17px;
    top: 10px;
    font-weight: 600;
    transition: .3s;
}

.search-modal .modal-overlay:after {
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, .5);
    top: 100%;
    left: 0;
    right: 0;
    height: 100vh;
}

.search-modal .predictive-search {
    position: absolute;
    width: 100%;
    background: #fff;
    top: calc(100% + 5px);
    left: 0;
    border: 1px solid rgba(0, 0, 0, .1);
    border-top: none;
    z-index: 3;
    overflow-y: auto;
    border-bottom-right-radius: 18px;
    border-bottom-left-radius: 18px;
    overflow: hidden;
}

.search-modal .predictive-search__item {
    padding: 12px 20px;
    width: 100%;
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    color: #000;
    font-weight: 800;
}

.search-modal .predictive-search__item svg {
    width: 16px;
    height: 16px;
}

.predictive-search__loading-state {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #fff;
}

@media(max-width: 767px) {
    .search-modal .search-modal__content {
        padding: 0 15px;
    }
}

/* product-reviews */
.product-reviews {
    padding: 60px 0;
}

.summary-overview__rating-num {
    font-size: 37px;
    line-height: 30px;
    color: var(--caption_color);
    margin-right: 10px;
    font-weight: 500;
}

.summary-overview__rating .rating-icon {
    width: 26px;
    height: 26px;
}

.summary-overview__rating {
    display: flex;
    align-items: center;
}

.summary-overview__text {
    font-size: 15px;
    margin-top: 10px;
    color: var(--caption_color);
    font-weight: 600;
}

/* end product-reviews */
/* tiktok-embed */
.tiktok-embed{
    padding-bottom: 40px;
}
.tiktok-embed .flex-container {
    display: flex;
    flex-wrap: wrap;
    padding-left: 30px;
    padding-right: 30px;
}

.tiktok-embed .iframe-wrapp {
    width: 33.3%;
    height: 740px;
    margin-bottom: 30px;
    min-width: 340px;
    padding: 0 20px;
}

.tiktok-embed .iframe-wrapp_inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.tiktok-embed .iframe-wrapp:not(:last-child) {
    border-right: 2px solid rgba(0, 0, 0, .2);
}

.tiktok-embed .iframe-wrapp iframe,
.tiktok-embed .iframe-wrapp video {
    position: absolute;
    left: 0;
    top: 0;
    object-fit: contain;
    width: 100%;
    height: 100%;
}

@media(max-width: 1299px) {
    .tiktok-embed .iframe-wrapp {
        height: 600px;
    }
}

@media(max-width: 1199px) {
    .tiktok-embed .iframe-wrapp {
        width: 50%;
        border: none;
    }

}

@media(max-width: 767px) {
    .tiktok-embed .iframe-wrapp {
        width: 100%;
    }

    .tiktok-embed .iframe-wrapp:nth-child(odd) {
        border: none;
    }

    .tiktok-embed .flex-container {
        padding: 0 15px;
    }
}

/* end tiktok-embed */
/* product-title */
.product-title {
    background-color: black;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-title__title {
    color: white;
    font-size: 20px;
    margin: 0;
    font-weight: 600;
}

/* end  product-title*/

/*reviews section*/
.slick-initialized .slick-slide {
    display: flex !important;
    gap: 15px;
    /*max-height: 600px;*/
}

.summary-rating-bar {
    width: 100%;
    padding: 10px;
}

.summary-rating {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    align-items: center;
    margin-bottom: 5px;
}

.product-reviews__header {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.rating-bar {
    display: flex;
    align-items: center;
}

.rating-label,
.rating-count {
    flex-basis: 10%;
    text-align: center;
}

.rating-progress {
    flex-grow: 1;
    height: 15px;
    background-color: #eee;
    margin: 0 5px;
    overflow: hidden;
}

.progress-value {
    height: 100%;
    background-color: #ffd200;
}

.slider-nav.slick-initialized .slick-list {
    /*width: 100px !important;*/
    /*height: 50px;*/
    padding: 0 !important;
}

.slider-nav {
    padding-top: 50px;
    padding-bottom: 20px;
}

.slider-nav.slick-initialized .slick-list .slick-slide img {
    display: inline-block;
    width: 80px;
    height: 50px;
    margin-right: 6px;
    border: 3px solid #d4d4d4;
    -webkit-background-size: cover !important;
    font-size: 0;
    opacity: .6;
    cursor: pointer;
    background-position-y: center !important;
    vertical-align: top;
}

.slider-nav.slick-initialized .slick-list .slick-slide.slick-active.slick-current img {
    opacity: 1;
    border-style: dashed;
}

.item-review {
    margin-bottom: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.item-review:first-child {
    margin-top: 0;
    border-top: none;
}

.item-review .review-header {
    display: flex;
    justify-content: space-between;
}

.review-header .review-header__box {
    display: flex;
    /*gap: 15px;*/
}

.review-header_img {
    position: relative;
    float: left;
    padding: 0;
    color: #bbb;
    background: #f5f5f5;
    border-radius: 50%;
    margin-right: 10px;
    text-shadow: 1px 1px 0 #fff;
}

.review-header_name {
    font-size: 18px;
    text-align: center;
    text-transform: inherit;
    font-style: initial;
    margin-right: 10px;
    padding-left: 5px;
    display: table-cell;
    vertical-align: middle;
    height: 56px;
    width: 55px;
    font-weight: 700;
}

.review-header_name svg {
    width: 20px;
    height: 20px;
    font-size: 21px;
    position: absolute;
    right: -5px;
    bottom: 0;
}

.review-info__box .review-author {
    margin-right: 7px;
    font-size: 14px;
    font-weight: bold;
}

.review-info__box .review-header_verified {
    color: #1cc286;
    font-size: 14px;
    font-weight: bold;
}

.review-info__box .review-location {
    color: #555;
    font-size: 12px;
    font-weight: 400;
}

.reviews-created {
    float: right;
    color: #555;
    font-size: 12px;
    font-weight: 400;
}

.review-body_title {
    font-size: 15px;
    line-height: 24px;
    min-height: 15px;
    margin: 5px 0 0;
    padding: 0;
    border: none;
    font-weight: 700;
    text-align: left;
}

.review-body_description {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
}

.review-body img {
    margin-top: 10px;
    width: auto;
    border: 1px solid #ccc;
    margin-right: 0;
    height: 130px;
    transition: .2s;
    cursor: zoom-in;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    clear: both;
    font-size: 12px;
    opacity: .8;
    margin-top: 25px;
}

.review-footer_likes {
    display: flex;
    gap: 15px;
    align-items: center;
}

.review-footer_likes a {
    cursor: not-allowed;
    color: #000;
}

.review-footer_likes .fa-thumbs-up:before,
.review-footer_likes .fa-thumbs-down:before {
    color: #000;
    padding-right: 5px;
}

.review-footer_share {
    display: flex;
    gap: 4px;
    align-items: center;
    cursor: pointer;
}

.product-reviews__content .pagination {
    display: flex;
    text-align: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    color: #007aff;
}

.product-reviews__content .pagination span.active {
    text-decoration: underline;
}

#reviewsModal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, .8);
    background-color: rgba(116, 99, 99, .65);
}

#reviewsModal .modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    position: relative;
    max-height: 600px;
    max-width: 900px;
}

#reviewsModal .close {
    position: absolute;
    color: #aaaaaa;
    right: 15px;
    font-size: 55px;
    font-weight: 400;
    top: 0;
    z-index: 999;
}

#reviewsModal .close:hover,
#reviewsModal .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-reviews-slider {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.modal-reviews-slider .left_box {
    width: 50%;
    /*height: 100%;*/
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-reviews-slider .left_box img {
    width: unset;
    min-width: 50%;
    max-width: 100%;
    background-color: #fff;
    display: inline-block;
    vertical-align: middle;
    max-height: 500px;
}

.modal-reviews-slider .right_box {
    margin-top: 50px;
    width: 50%;
}

.right_box h2 {
    font-size: 18px;
    margin-bottom: 0;
    margin-top: 6px;
    font-weight: bold;
}

.right_box h2 span {
    margin-left: 7px;
    color: #1cc286;
}

.right_box .modal-rating {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    line-height: 20px;
    clear: both;
    border-top: 0 solid #ddd;
    padding-top: 0;
    color: #353333;
    font-size: 12px;
}

.right_box .review-body_description {
    line-height: 25px;
    color: #0E1B4DBF;
    overflow: auto;
    max-height: 300px;
}

.right_box .review-footer_likes {
    justify-content: end;
    margin-top: 15px;
}

.right_box .review-footer_likes a {
    font-size: 12px;
}

.right_box .home_scrubber {
    margin-top: 20px;
    margin-bottom: 0;
    width: 100%;
    border-top: 1px solid #eee;
    padding-top: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.right_box .home_scrubber a {
    line-height: 16px;
    text-align: center;
    font-size: 12px;
    color: #000;
}

.right_box .home_scrubber a:hover {
    text-decoration: underline;
}

.product-review-count {
    font-weight: 700;
    border-bottom: 3px solid #000;
    display: inline-block;
    height: 100%;
    width: auto !important;
    margin-right: 15px;
    padding: 6px 10px 10px;
    color: #000;
    font-size: 14px;
    cursor: pointer;
    box-sizing: border-box;
    margin-top: 35px;
}

.product-review-count span {
    background: #f8f9fa;
    padding: 2px 5px;
    margin-left: 10px;
}

.product-review-sort select {
    margin-top: -1px;
    appearance: none;
    border-radius: 3px;
    font-size: 11px;
    min-width: 170px;
    margin-bottom: 15px;
    background-position: right -1px center;
    background-image: url('/img/icon-arrow-down-bg.svg');
    border: 1px solid #ccd6e0;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: auto;
    color: #333;
    position: initial;
    min-height: 35px;
    line-height: 1.25;
    text-overflow: '';
    bottom: 12px;
    transition: .2s ease-in-out;
    font-weight: 400;
    background-color: #fff;
    background-repeat: no-repeat;
    height: 35px;
    cursor: pointer;
    background-size: initial;
    padding: 0 12px;
}

.product-review-sort {
    display: flex;
    justify-content: end;
    border-top: 1px solid #eee;
}

.summary-rating-count {
    width: 15%;
    display: inline-block;
    text-align: left;
    padding-left: 5px;
    color: #555;
    white-space: nowrap;
    margin-right: 5px;
    font-weight: 600;
}

#send_review textarea,
#send_review input {
    font-weight: 400;
    margin: 7px 0 10px;
    display: block;
    width: 100%;
    min-height: 30px;
    padding: 0 8px;
    line-height: 30px;
    height: auto;
    max-width: 100%;
    border: 1px solid #d7d7d7;
}

#send_review textarea:focus-visible,
#send_review input:focus-visible {
    outline: 0;
    outline-offset: 0.3rem;
    box-shadow: 0 0 0 0.3rem rgb(255, 255, 255), 0 0 0.5rem 0.4rem rgba(14, 27, 77, .3);
}

#send_review label {
    font-size: 14px;
    line-height: 20px;
    color: #000;
    font-weight: 600;
}

#send_review .stamped-form-contact-email {
    width: 32.33333%;
    max-width: 300px;
    display: inline-block;
    min-height: 1px;
    padding-right: 15px;
}

#send_review .stamped-form-contact-name {
    float: left;
    width: 32.33333%;
    max-width: 300px;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
}

#send_review .stamped-form-contact-stars {
    margin-bottom: 10px;
}

#send_review {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease-out;
}

#send_review.open {
    max-height: 750px;
    padding: 15px;
    border: 1px solid rgba(221, 221, 221, 0.3);
}

.star-rating .star {
    cursor: pointer;
    width: 17px;
    height: 17px;
    margin-right: 5px;
}

.star-rating .star.selected .star-filled {
    fill-opacity: 1;
}

#send_review .stamped-form-contact-btn {
    text-align: end;
}

#send_review .review_submit {
    background: #000;
    color: #fff;
    width: auto;
    padding: 23px 43px;
    border: 0;
    border-radius: 50px;
    cursor: pointer;
    font-size: 18px;
    margin: 10px 0 40px;
}

.summary-ratings .summary-rating-stars {
    width: 95px;
    display: inline-block;
    cursor: pointer;
    color: #555;
}

.summary-overview {
    width: 200px;
    float: left;
}

.summary-ratings .summary-rating-stars .stars-box {
    display: flex;
    font-size: 20px;
}

.summary-ratings .summary-rating-stars .stars-box img {
    height: 15px;
    width: 15px;
}

.summary-ratings {
    float: left;
    padding-left: 20px;
    border-left: 1px solid #eee;
    color: #999;
    font-size: 12px;
    line-height: normal;
    border-right: 1px solid #eee;
    margin-right: 20px;
    width: 305px;
    margin-bottom: 20px;
}

.summary-ratings:hover .summary-rating {
    opacity: 0.5;
}

.summary-rating:hover {
    opacity: 1 !important;
}

.summary-photos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}

.summary-photos img {
    width: 75px;
    height: 50px;
    display: block;
    cursor: zoom-in;
}

.summary-action {
    float: right;
    flex-grow: 1;
    margin: 0 0 0 15px;
}

.summary-action span {
    font-size: 13px;
    float: right;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    width: auto;
    line-height: 30px;
    background: 0 0;
    color: #000;
    border: 1px solid #ccd6e0;
    padding: 4px 20px;
    border-radius: 3px;
    font-weight: 700;
    box-shadow: 2px 3px 5px 0 #8888886b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-action span:hover {
    box-shadow: none;
    text-decoration: none;
    opacity: .9;
}

.stamped-share-links {
    display: none;
    font-size: 12px;
    margin-top: 10px;
    margin-left: -10px;
    cursor: pointer;
}

@media(max-width: 767px) {

    #send_review .stamped-form-contact-email,
    #send_review .stamped-form-contact-name {
        width: 100%;
        max-width: unset;
    }

    #send_review .review_submit {
        padding: 10px 30px;
    }

    .slick-next,
    .slick-prev {
        display: none;
    }

    .slick-initialized .slick-slide {
        flex-direction: column;
    }

    .modal-reviews-slider .left_box {
        width: 100%;
    }

    .modal-reviews-slider .right_box {
        margin-top: 10px;
        width: 100%;
    }

    .slider-nav {
        display: none;
    }

    #reviewsModal .modal-content {
        width: 100%;
        margin: 2% auto 0;
        max-height: unset;
    }

    .right_box .review-body_description {
        max-height: unset;
    }
}

.footer {
    padding-top: 0;
    padding-bottom: 60px;
    background-color: #000;
}

.footer .flex-block {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 100px;
    flex-wrap: wrap;
}

.footer .flex-block>div {
    width: calc(50% - 20px);
}

.footer .footer__menu-items {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.footer .footer__menu-items a {
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    font-weight: 600;
    line-height: 26px;
}

.footer__menu-items li:not(:last-child) {
    padding-bottom: 12px;
}

.footer__column__title {
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
    margin-top: 0;
    font-weight: 700;
}

.footer__column__email {
    color: rgba(255, 255, 255, .75);
    margin: 0;
    font-size: 17px;
    font-weight: 600;
}

.footer-payment__list {
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: center;
    list-style-type: none;
}

.list-payment__item:not(:last-child) {
    margin-right: 10px;
}

.copyright__content,
.copyright__content a {
    font-size: 12px;
    color: rgba(255, 255, 255, .75);
    font-weight: 600;
}

@media(max-width: 767px) {
    .footer .flex-block>div {
        width: 100%;
    }

    .footer .flex-block>div:not(:last-child) {
        margin-bottom: 45px;
    }

    .footer .flex-block {
        padding: 0 25px 30px;
    }

    .footer__content-bottom {
        padding-top: 60px;
    }

    .footer__copyright {
        text-align: center;
    }

    .footer__column__title {
        font-size: 18px;
    }

    .footer__menu-items li {
        font-size: 15px;
        padding: 10px 0;
    }
}

/* animation */
.js-animation {
    opacity: 0;
    transform: translateY(30px);
}

.js-animation.e-visible {
    opacity: 1;
    transform: translateY(0px);
    animation: fadeInDown 0.6s cubic-bezier(0, 0, .3, 1);
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* collage section */
.collage{
    padding: 36px 0;
}
.collage .grid-container{
    display: grid;
    grid-gap: 28px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.collage .collage__item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(min-width: 998px){
    .collage .collage__item:nth-child(3n-2){
        grid-column: 1 / span 2;
        grid-row: span 2;
    }
    .collage .collage__item:nth-child:nth-child(3n-1), 
    .collage .collage__item:nth-child:nth-child(3n){
        grid-column-start: 3;
    }
}
@media(max-width: 997px){
    .collage .grid-container{
        grid-template-columns: 1fr;
    }
    .collage .grid-container{
        grid-gap: 15px;
    }
    .collage .collage__item{
        max-height: 700px;
    }
    .collage {
        padding: 30px 0;
    }
}

/* image_with_text */
.image_with_text{
    padding: 36px 0;
}
.image_with_text .flex-container{
    display: flex;
    justify-content: space-between;
}
.image-with-text__heading{
    color: var(--title_color);
    margin: 0;
}
.image_with_text .text-side{
    padding: 70px;
}
.image_with_text .image-side img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media(min-width: 998px){
    .image_with_text .flex-container > div{
        width: 50%;
    }
}
@media(max-width: 997px){
    .image_with_text .flex-container{
        flex-direction: column;
    }
    .image_with_text .text-side{
        padding: 30px;
    }
    .featured-product{
        padding: 30px 0;
    }
}

/* featured_product */
.featured-product{
    padding: 36px 0;
}
.featured-product .flex-container{
    display: flex;
}
.featured-product__image-inner{
    position: relative;
    padding-top: 100%;
}
.featured-product__image img{
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
}
.featured-product .h1{
    margin-top: 0;
    margin-bottom: 20px;
}
.featured-product__subtitle{
    margin: 0;
    font-size: 11px;
    text-transform: uppercase;
}
.featured-product .add-product{
    margin-top: 25px;
}
.featured-product .share-button_btn:hover .icon-arrow path{
    transform: translate(-0.05rem);
}
.featured-product .price-container{
    margin-bottom: 10px;
}
@media(min-width: 998px){
    .featured-product .flex-container > div{
        width: 50%;
    }
    .featured-product__content{
        padding: 0 70px;
        max-width: 610px;
    }
}
@media(max-width: 997px){
    .featured-product{
        padding: 30px 0;
    }
    .featured-product .flex-container{
        flex-direction: column;
    }
    .featured-product__bottom{
        max-width: 460px;
    }
    .featured-product .add-product{
        margin-bottom: 0;
    }
    .featured-product__content{
        margin-top: 30px;
    }
}