﻿@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: bold;
    src: url(/fonts/IRANSansX/IRANSansXFaNum-Bold.woff) format("woff"),url(/fonts/IRANSansX/IRANSansXFaNum-Bold.woff2) format("woff"),url(/fonts/IRANSansX/IRANSansXFaNum-Bold.ttf) format("truetype")
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: normal;
    src: url(/fonts/IRANSansX/IRANSansXFaNum-Regular.woff) format("woff"),url(/fonts/IRANSansX/IRANSansXFaNum-Regular.woff2) format("woff"),url(/fonts/IRANSansX/IRANSansXFaNum-Regular.ttf) format("truetype")
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 500;
    src: url(/fonts/IRANSansX/IRANSansXFaNum-Medium.woff) format("woff"),url(/fonts/IRANSansX/IRANSansXFaNum-Medium.woff2) format("woff"),url(/fonts/IRANSansX/IRANSansXFaNum-Medium.ttf) format("truetype")
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 200;
    src: url(/fonts/IRANSansX/IRANSansXFaNum-Light.woff) format("woff"),url(/fonts/IRANSansX/IRANSansXFaNum-Light.woff2) format("woff"),url(/fonts/IRANSansX/IRANSansXFaNum-Light.ttf) format("truetype")
}

@font-face {
    font-family: IRANSansX;
    font-style: normal;
    font-weight: 900;
    src: url(/fonts/IRANSansX/IRANSansXFaNum-Black.woff) format("woff"),url(/fonts/IRANSansX/IRANSansXFaNum-Black.woff2) format("woff"),url(/fonts/IRANSansX/IRANSansXFaNum-Black.ttf) format("truetype")
}

* {
    font-family: 'IRANSansX';
    direction: rtl;
}

:root {
    --primary-color: #c9a96e;
}

a {
    text-decoration: none;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    box-shadow: none;
}

/*-- Hide scrollbar -- */
html::-webkit-scrollbar {
    display: none;
}

html {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.focus-none:focus {
    outline: 0;
    box-shadow: none !important;
}

.box-shadow-none {
    box-shadow: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-group-append, .input-group-prepend {
    display: -ms-flexbox;
    display: flex;
}

input[type=number] {
    -moz-appearance: textfield;
}

h1, h2 {
    font-size: 1.5rem;
}

.f10 {
    font-size: 10px;
}

.f11 {
    font-size: 11px;
}

.f12 {
    font-size: 12px;
}

.f13 {
    font-size: 13px;
}

.f14 {
    font-size: 14px;
}

.f15 {
    font-size: 15px;
}

.pointer {
    cursor: pointer
}

.form-label {
    position: relative;
    font-weight: bold
}

.required {
    color: red;
    position: absolute;
    top: -5px;
    left: -11px;
    font-size: 15px;
}

.ltr {
    direction: ltr
}
/*------------*/
#enterCode .code-input {
    width: 50px;
    height: 50px;
    font-size: 20px;
    padding: 0;
    direction: ltr;
}
/*------------*/
.categories-menu-bg {
    display: none;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    z-index: 21;
    backdrop-filter: blur(3px);
    background-color: hsla(0, 0%, 5%, .4);
}

    .categories-menu-bg.active {
        display: block;
    }

/*------------*/

.aside-bg {
    content: ' ';
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 20;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    transition: all ease-in-out .2s;
    backdrop-filter: blur(3px);
    background-color: hsla(0, 0%, 5%, .4);
}

    .aside-bg.active {
        visibility: visible;
        opacity: 1;
    }

.sec-aside-cart {
    position: fixed;
    visibility: hidden;
    top: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 21;
    height: 100%;
    background: #fff;
    box-shadow: 0 0 5px #00000057;
    transition: all ease-in-out .2s;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

    .sec-aside-cart.active {
        right: 0;
        visibility: visible;
    }

    .sec-aside-cart .header {
        display: flex;
        background-color: #eee;
        padding: 15px 20px;
        align-items: center;
        border-bottom: 1px solid #e8d5d5;
    }

        .sec-aside-cart .header .title {
            font-size: 20px;
        }

        .sec-aside-cart .header .close {
            color: #888;
            cursor: pointer;
            border: 1px solid #888;
            width: 30px;
            height: 30px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 10px;
            transition: 0.2s;
        }

            .sec-aside-cart .header .close:hover {
                background-color: #888;
                color: #fff;
            }

    .sec-aside-cart .products {
        flex-grow: 1;
    }

        .sec-aside-cart .products .empty-cart {
            text-align: center;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

            .sec-aside-cart .products .empty-cart img {
                margin-bottom: 10px;
            }

        .sec-aside-cart .products .scrollbar {
            position: absolute;
            inset: 0;
            max-height: 100%;
            overscroll-behavior: none;
            overflow: hidden;
            overflow-y: auto;
        }

        .sec-aside-cart .products .item {
            display: flex;
            padding: 20px;
        }

            .sec-aside-cart .products .item:not(:last-child) {
                border-bottom: 1px solid #eee;
            }

            .sec-aside-cart .products .item .image-container {
                width: 20%;
                flex: 0 0 auto;
                display: flex;
                align-items: center;
                justify-content: center;
            }

                .sec-aside-cart .products .item .image-container img {
                    width: 75px;
                    height: 75px;
                    object-fit: cover;
                    border-radius: 5px
                }

            .sec-aside-cart .products .item .detail {
                width: 80%;
                flex: 0 0 auto;
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                padding-right: 12px
            }

                .sec-aside-cart .products .item .detail .title-container {
                    display: flex;
                    justify-content: space-between;
                    margin-bottom: 10px;
                    width: 100%;
                    flex: 0 0 auto;
                    align-items: center;
                }

                    .sec-aside-cart .products .item .detail .title-container a {
                        color: #888;
                    }

                    .sec-aside-cart .products .item .detail .title-container .title {
                        font-size: 16px;
                        width: 70%;
                    }

    .sec-aside-cart .bottom-content {
        padding: 20px;
        border-top: 1px solid #eee;
        background-color: #fff;
        margin-top: auto;
        flex-shrink: 0;
        flex-grow: 0;
    }

        .sec-aside-cart .bottom-content .totalPrice-container {
            margin-bottom: 30px;
        }

            .sec-aside-cart .bottom-content .totalPrice-container .item {
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

        .sec-aside-cart .bottom-content .btns a {
            width: 100%;
            display: block;
            padding: 12px;
            text-align: center;
            border-radius: 8px;
        }

            .sec-aside-cart .bottom-content .btns a.cart {
                margin-bottom: 10px;
                background-color: #e4e4e4;
                color: #666;
            }

            .sec-aside-cart .bottom-content .btns a.checkout {
                background-color: var(--primary-color);
                color: #fff;
            }

/*------------*/
.top-alert .alert {
    border: 0;
    border-radius: 0;
    background-color: var(--primary-color);
    margin: 0;
}

    .top-alert .alert span.text {
        color: #fff;
    }

.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

    .alert-dismissible .close i {
        color: #fff;
        font-size: 20px;
        cursor: pointer;
    }

.alert-dismissible ._div_btn a {
    box-shadow: 0 5px 6px rgb(0 0 0 / 12%);
}

/*------------*/
header {
    /* box-shadow: rgba(0, 0, 0, 0.04) 0px 4px 5px; */
    padding-top: 0.75rem;
    /* background: #fff; */
}

    header .header-top {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

        header .header-top .logo-container {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
        }

            header .header-top .logo-container img {
                width: 100%;
                height: 60px;
                object-fit: contain;
            }

        header .header-top .search-input-container {
            position: relative;
            flex: 0 0 auto;
            z-index: 20;
        }

            header .header-top .search-input-container .searchInput {
                background: #f9f9f9;
                border: none;
                border-radius: 35px;
                width: 100%;
                padding: 10px 15px;
                font-weight: 300;
                border: 1px solid #e5e7eb;
            }

                header .header-top .search-input-container .searchInput:focus {
                    box-shadow: none !important;
                }

            header .header-top .search-input-container i.searchIcon {
                position: absolute;
                top: 0;
                left: 15px;
                bottom: 0;
                margin: auto;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                color: #b2b9c9;
            }

    header .suggestion-box-bg {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        content: '';
        z-index: 19;
        backdrop-filter: blur(3px);
        background-color: hsla(0, 0%, 5%, .4);
    }

    header .header-top .search-input-container .suggestion-box {
        display: none;
        position: absolute;
        top: 120%;
        width: 100%;
        background: white;
        border: 1px solid #e5e7eb;
        border-radius: 20px;
        z-index: 20;
        overflow: hidden;
        max-height: 300px;
        overflow-y: scroll;
    }

    header .header-top .search-input-container .suggestion-box {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

        header .header-top .search-input-container .suggestion-box::-webkit-scrollbar {
            display: none;
        }

    header .header-top .search-input-container .suggestion-items {
        display: none;
        border-bottom: 1px solid #eee;
    }

        header .header-top .search-input-container .suggestion-items .item {
            padding: 5px 10px;
            cursor: pointer;
            text-align: right;
            color: #000;
            display: flex;
            align-items: center;
        }

            header .header-top .search-input-container .suggestion-items .item .image-container {
                margin-left: 10px;
            }

                header .header-top .search-input-container .suggestion-items .item .image-container img {
                    width: 50px;
                    height: 50px;
                    object-fit: cover;
                    border-radius: 5px;
                }

            header .header-top .search-input-container .suggestion-items .item .p-tilte {
                width: 80%;
            }

            header .header-top .search-input-container .suggestion-items .item:hover {
                background-color: #f5f5f5;
            }

        header .header-top .search-input-container .suggestion-items .more-btn {
            padding: 10px 15px 20px 15px;
            text-align: left;
        }

            header .header-top .search-input-container .suggestion-items .more-btn a {
                color: #8c8c8c;
                font-size: 14px;
            }

                header .header-top .search-input-container .suggestion-items .more-btn a i {
                    font-size: 10px;
                    vertical-align: middle;
                }

    header .header-top .search-input-container .recent-search {
        padding: 10px 15px 20px 15px;
    }

        header .header-top .search-input-container .recent-search .title {
            color: #8c8c8c;
            margin-bottom: 20px;
        }

        header .header-top .search-input-container .recent-search .item {
            color: rgb(9 9 11 / 80%);
            border: 1px solid #cbcbff;
            border-radius: 10px;
            padding: 2px 12px;
            margin-left: 8px;
            transition: .2s;
        }

            header .header-top .search-input-container .recent-search .item:hover {
                border: 1px solid #4949d7;
            }

    /* -- */
    header .header-top .left-btns-container .btn-shopping-cart .counter {
        position: absolute;
        top: -10px;
        right: -10px;
        padding: 0 7px;
        display: flex;
        border-radius: 50%;
        background-color: var(--primary-color);
        color: #fff;
        width: 24px;
        height: 24px;
        font-size: 12px;
        justify-content: center;
        align-items: center;
    }

    header .header-top .left-btns-container {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

        header .header-top .left-btns-container .btn-login {
            background-color: var(--primary-color);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            height: 45px;
            padding: 0 15px;
            border: 0;
            cursor: pointer;
        }

        header .header-top .left-btns-container .btn-account {
            background-color: var(--primary-color);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            height: 45px;
            cursor: pointer;
            border: 0;
        }

            header .header-top .left-btns-container .btn-account i {
                font-size: 10px;
                margin-right: 8px;
            }

            header .header-top .left-btns-container .btn-account::after {
                display: none;
            }

        header .header-top .left-btns-container .btn-account-d .dropdown-divider {
            margin: 2px 0;
            border-color: #eee;
        }

        header .header-top .left-btns-container .btn-account-d .dropdown-item {
            padding: 8px 15px;
        }

            header .header-top .left-btns-container .btn-account-d .dropdown-item:active {
                background-color: unset;
                color: #000;
            }

        header .header-top .left-btns-container .btn-login svg {
            width: 20px;
        }

        header .header-top .left-btns-container .btn-shopping-cart {
            height: 45px;
            border-radius: 10px;
            border: 1px solid var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 8px;
            position: relative;
            cursor: pointer;
        }

            header .header-top .left-btns-container .btn-shopping-cart svg {
                width: 30px;
            }

/*------------*/
.sec-slider {
    margin: 20px 0 50px 0;
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.sec-slider #slider-owl .owl-dots {
    bottom: 5px;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
}

    .sec-slider #slider-owl .owl-dots .owl-dot span {
        width: 8px;
        height: 8px;
        margin: 0px 3px;
        background: #ddd;
        display: block;
        transition: opacity .2s ease;
        border-radius: 30px;
        transition: 0.2s;
    }

    .sec-slider #slider-owl .owl-dots .owl-dot.active span {
        background: var(--primary-color);
        width: 20px;
    }

.sec-banners .banners {
    display: flex;
    gap: 20px;
}

    .sec-banners .banners img {
        width: 100%;
    }

/*-----------*/
.sec-main-category .item {
    border: 1px solid rgb(164 151 141 / 30%);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 15px;
    padding: 10px 8px;
}

    .sec-main-category .item img {
        width: 50%;
        margin-bottom: 10px;
        width: 65px;
        height: 65px;
        object-fit: contain;
    }

    .sec-main-category .item .title {
        color: #A1978D;
        font-weight: 500;
    }

/*-----------*/
.scrollbar {
    overflow-y: scroll;
    overflow-x: hidden;
}

    .scrollbar:hover::-webkit-scrollbar,
    .scrollbar:hover::-webkit-scrollbar-thumb,
    .scrollbar:focus::-webkit-scrollbar,
    .scrollbar:focus::-webkit-scrollbar-thumb {
        visibility: visible;
    }

    .scrollbar::-webkit-scrollbar {
        visibility: visible;
        -webkit-appearance: none;
        width: 4px;
        background-color: transparent;
    }

    .scrollbar:hover::-webkit-scrollbar,
    .scrollbar:hover::-webkit-scrollbar-thumb,
    .scrollbar:focus::-webkit-scrollbar,
    .scrollbar:focus::-webkit-scrollbar-thumb {
        visibility: visible;
    }

    .scrollbar::-webkit-scrollbar-thumb {
        visibility: visible;
        border-radius: 3px;
        background-color: rgba(182, 193, 210, 0.55);
    }

/*-----------*/
footer .footerTopSvg {
    margin-bottom: -1px;
    text-align: center;
}

    footer .footerTopSvg svg {
        transform: rotate(180deg);
        width: 110px;
        margin: auto
    }

footer {
    position: relative;
}

    footer .bg {
        background-color: #1A1A1A;
        padding: 60px 0 15px 0;
    }

    footer .content .col-title {
        font-weight: 600;
        font-size: 22px;
        color: #c9a96e;
        position: relative;
        margin-bottom: 30px;
    }

    footer .about .text {
        line-height: 2
    }

    footer .about .col-title {
        font-weight: 600;
        font-size: 22px;
        color: #c9a96e;
        position: relative;
        margin-bottom: 30px;
    }

    footer .about .text {
        color: #9ca3af
    }

    /* -- */
    footer .content {
        margin-bottom: 40px;
    }

        footer .content .contact ul {
            list-style-type: none;
            padding: 0;
        }

    footer .contact ul li {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }

        footer .contact ul li span {
            font-weight: 500;
            color: #bbab8e;
        }

        footer .contact ul li a {
            color: #9ca3af;
            display: block;
            font-weight: 500;
            font-size: 16px;
        }

        footer .contact ul li .iconBg {
            background-color: #4B419E0D;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            margin-left: 15px;
        }

        footer .contact ul li i {
            color: #c9a96e;
        }

    /* -- */

    footer .content .links ul {
        list-style-type: none;
        padding: 0;
    }

        footer .content .links ul li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

            footer .content .links ul li i {
                margin-left: 15px;
                color: #4B419E;
                font-size: 14px;
            }

            footer .content .links ul li a {
                color: #000;
            }

    /* -- */

    footer .social {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 10px;
    }

        footer .social .item {
            background-color: rgb(201 169 110 / 0.2);
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
        }

            footer .social .item i {
                color: #c9a96e;
                font-size: 19px;
            }

    /* -- */

    footer .license {
        display: flex;
    }

        footer .license .item img {
            object-fit: contain;
        }

    /* -- */

    footer .sign {
        text-align: center;
        color: #888;
        font-weight: 300;
        font-size: 15px;
    }

/*-----------*/

.sec-selected-products {
    margin-top: 80px;
}

    .sec-selected-products .sec-title {
        margin-bottom: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center
    }

        .sec-selected-products .sec-title h4 {
            color: #d39c4a;
            font-weight: 800;
            font-size: 24px
        }

        .sec-selected-products .sec-title p {
            color: #e3bd83;
            margin-top: 8px
        }

        .sec-selected-products .sec-title a {
            color: #888;
            margin-left: 10px;
            font-size: 15px;
        }

    .sec-selected-products .content {
        background: #FFF9EF;
        padding: 65px 0 50px 0;
        background-image: url(../images/flwbg.png);
        background-repeat: no-repeat;
        background-position: bottom left;
    }

    .sec-selected-products .owl-carousel .owl-stage {
        display: flex;
    }

    .sec-selected-products .product-slider article.product-cItem .item {
        border: none;
        background: #fff;
        padding: 0.3rem;
        border-radius: 0.5rem;
    }

    .sec-selected-products .product-slider article.product-cItem .image-container {
        margin-bottom: 0;
    }

    .sec-selected-products .product-slider article.product-cItem .detail {
        padding: 20px 10px 15px 10px;
    }

#selected-products-owl .owl-dots {
    display: none;
}

#selected-products-owl .owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
}

    #selected-products-owl .owl-nav button {
        position: absolute;
        border-radius: 50%;
        background-color: #fff !important;
        top: 35%;
        z-index: 10;
        cursor: pointer;
        height: 40px;
        width: 40px;
        box-shadow: 1px 1px 3px 0px hsl(0deg 8% 65% / 47%);
    }

        #selected-products-owl .owl-nav button i {
            vertical-align: middle;
            color: #d39c4a;
        }

    #selected-products-owl .owl-nav .owl-prev {
        right: 0;
    }

    #selected-products-owl .owl-nav .owl-next {
        left: 0;
    }

    #selected-products-owl .owl-nav .owl-prev {
        right: -50px;
    }

    #selected-products-owl .owl-nav .owl-next {
        left: -50px;
    }

/*-----------*/

.sec-sort-price .gallery .card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: .55s cubic-bezier(.2,.8,.2,1);
    cursor: pointer;
}

.sec-sort-price .overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,.65), rgba(0,0,0,.15), transparent);
}

    .sec-sort-price .overlay h3 {
        margin: 0;
        font-size: 20px;
        font-weight: 700;
        z-index: 1
    }

    .sec-sort-price .overlay p {
        margin-top: 8px;
        font-size: 16px;
        z-index: 1;
        color: #ddd
    }

.sec-sort-price .card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.15);
    transition: .4s;
}

.sec-sort-price .card:hover::after {
    background: rgba(0,0,0,0);
}

/*-----------*/
.sec-product {
    position: relative;
}

    .sec-product .product-slider .owl-stage-outer,
    .related-products .owl-stage-outer {
        padding: 10px 6px;
    }

    .sec-product .sec-title h4 {
        position: relative;
        margin: 0;
        color: #6a3c0d;
        font-weight: 800;
        font-size: 24px;
    }

    /* ------------------------- */
    .sec-product .product-slider article.product-cItem .item,
    .related-products article.product-cItem .item {
        border: none;
        box-shadow: rgb(0 0 0 / 10%) 0px 1px 5px 1px;
        background: #fff;
        border-radius: 0.5rem;
    }

    .sec-product .product-slider article.product-cItem .image-container img,
    .sec-selected-products .product-slider article.product-cItem .image-container img,
    .related-products article.product-cItem .image-container img,
    #category-page .products-container .filtered-products .item .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px 10px 0 0;
    }

    .sec-product .product-slider article.product-cItem .detail,
    .sec-selected-products .product-slider article.product-cItem .detail,
    .related-products article.product-cItem .detail,
    #category-page .products-container .filtered-products .item .detail {
        padding: 10px
    }

        .sec-product .product-slider article.product-cItem .detail .p-title,
        .sec-selected-products .product-slider article.product-cItem .detail .p-title,
        .related-products article.product-cItem .detail .p-title,
        #category-page .products-container .filtered-products .item .detail .p-title {
            font-weight: 500;
            color: #000;
            line-height: 24px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            height: 50px;
        }

        .sec-product .product-slider article.product-cItem .detail .price-container .price span,
        .sec-selected-products .product-slider article.product-cItem .detail .price-container .price span,
        .related-products article.product-cItem .detail .price-container .price span,
        #category-page .products-container .filtered-products .item .detail .price-container .price span {
            font-weight: bold;
            color: #000;
            font-weight: 500
        }

        .sec-product .product-slider article.product-cItem .detail .price-container .price svg,
        .sec-selected-products .product-slider article.product-cItem .detail .price-container .price svg,
        .related-products article.product-cItem .detail .price-container .price svg,
        #category-page .products-container .filtered-products .item .detail .price-container .price svg {
            fill: #424242;
        }

        .sec-product .product-slider article.product-cItem .detail .price-container,
        .sec-selected-products .product-slider article.product-cItem .detail .price-container,
        .related-products article.product-cItem .detail .price-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

/*-----------*/


.product-slider-owl .owl-dots {
    display: none;
}

.product-slider-owl .owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
}

    .product-slider-owl .owl-nav button {
        position: absolute;
        border-radius: 50%;
        top: 35%;
        z-index: 10;
        cursor: pointer;
        height: 40px;
        width: 40px;
    }

        .product-slider-owl .owl-nav button i {
            vertical-align: middle;
            color: #6a3c0d;
        }

    .product-slider-owl .owl-nav .owl-prev {
        right: 0;
    }

    .product-slider-owl .owl-nav .owl-next {
        left: 0;
    }

    .product-slider-owl .owl-nav .owl-prev {
        right: -50px;
    }

    .product-slider-owl .owl-nav .owl-next {
        left: -50px;
    }


/*-----------*/
.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: none;
}

/*-----------*/
.breadcrumb {
    display: flex;
    align-items: center;
}

    .breadcrumb a {
        color: rgb(0 0 0 / 87%);
    }

    .breadcrumb i {
        color: rgb(0 0 0 / 56%);
        font-size: 11px;
        padding: 0 12px;
    }

    .breadcrumb span {
        color: rgb(0 0 0 / 32%);
    }

/*-----------*/

#product-fullScreen-Modal .modal-content {
    border: none;
    position: relative;
}

    #product-fullScreen-Modal .modal-content .back {
        position: absolute;
        background: rgb(0 0 0 / 10%);
        top: 20px;
        right: 10px;
        z-index: 2;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        cursor: pointer;
    }

        #product-fullScreen-Modal .modal-content .back i {
            color: #888;
        }

#product-fullScreen-Modal #fullScreen-Images-carousel .owl-stage-outer {
    border-radius: 10px;
}

#fullScreen-Images-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 4px 0px 4px;
    background: #cccccc;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px
}

#fullScreen-Images-carousel .owl-dots .owl-dot.active span,
#fullScreen-Images-carousel .owl-dots .owl-dot:hover span {
    background: var(--primary-color)
}

#fullScreen-Images-carousel .owl-dots {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 20px;
}

/*-----------*/
.product-thumbnail-images {
    margin-top: 10px;
}

    .product-thumbnail-images .item {
        position: relative;
        border-radius: 5px;
        overflow: hidden;
        cursor: pointer;
    }

        .product-thumbnail-images .item:not(.active):after {
            position: absolute;
            top: 0;
            bottom: 0;
            right: 0;
            left: 0;
            content: '';
            background-color: rgb(0 0 0 / 30%);
        }

.product-card .product-thumbnail-images img {
    width: 100%;
    object-fit: cover;
}

/*-----------*/

.sec-selected-category .sec-title {
    text-align: center;
    margin-bottom: 25px;
}

    .sec-selected-category .sec-title p {
        font-weight: 800;
        font-size: 24px;
        color: #6a3c0d
    }

    .sec-selected-category .sec-title img {
        width: 250px;
    }

.sec-selected-category .item {
    text-align: center;
    display: block;
}

    .sec-selected-category .item .image-container {
        margin-bottom: 12px;
        border-radius: 25px;
        overflow: hidden;
    }

        .sec-selected-category .item .image-container img {
            width: 100%;
            transition: 0.6s
        }

    .sec-selected-category .item:hover img {
        transform: scale(1.1)
    }

    .sec-selected-category .item p {
        font-size: 16px;
        color: #111;
    }
/*-----------*/
.product-card .product-images {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.product-card #Images-carousel .owl-stage-outer {
    border-radius: 10px;
}

.product-card .product-images .item {
    cursor: pointer;
}

    .product-card .product-images .item img {
        object-fit: cover;
    }

.product-card .product-images .owl-nav {
    position: absolute;
    top: 45%;
    width: 100%;
}

    .product-card .product-images .owl-nav button {
        position: absolute;
        cursor: pointer;
    }

        .product-card .product-images .owl-nav button i {
            vertical-align: middle;
            color: rgb(0 0 0 / 56%);
            font-size: 11px;
            padding: 0 12px;
        }

    .product-card .product-images .owl-nav .owl-prev {
        right: 0;
    }

    .product-card .product-images .owl-nav .owl-next {
        left: 0;
    }

/* --- */

.product-card .product-info .top-title {
    margin-bottom: 30px;
}

    .product-card .product-info .top-title h1.p-title {
        font-size: 1.5rem;
        font-weight: 600;
    }

.product-card .product-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: nowrap;
    height: 100%;
}

    .product-card .product-info .top-title .en-title {
        color: rgb(9 9 11 / 60%);
        font-size: .85rem;
    }

    .product-card .product-info .labels .item {
        background: #f5f5f5;
        display: inline-block;
        padding: 2px 5px;
        border-radius: 5px;
        font-size: 12px;
        margin-left: 5px;
    }

    .product-card .product-info .product-Varietis {
        margin-bottom: 30px;
    }

        .product-card .product-info .product-Varietis .product-Variety-item {
            margin-bottom: 10px;
        }

        .product-card .product-info .product-Varietis .content {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }

        .product-card .product-info .product-Varietis .item input {
            display: none;
        }

        .product-card .product-info .product-Varietis .item label {
            padding: 0px 10px;
            border: 2px solid #e4e4e7;
            border-radius: 50px;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            min-width: 3rem;
            min-height: 3rem;
            display: flex;
            position: relative;
            box-shadow: 0px 1px 10px rgba(0, 0, 0, .05);
        }

        .product-card .product-info .product-Varietis .item label {
            color: rgb(9 9 11 / 90%);
            font-weight: 600;
        }

        .product-card .product-info .product-Varietis .item .color-container {
            width: 1.5rem;
            height: 1.5rem;
            border-radius: 50px;
            margin-left: 5px;
        }

        .product-card .product-info .product-Varietis .item input[type="radio"]:checked + label {
            border: 2px solid rgb(16, 185, 129);
        }

    .product-card .product-info .features {
        border: 1px solid #eee;
        padding: 10px 15px;
        border-radius: 10px;
    }

        .product-card .product-info .features .item {
            margin-bottom: 4px;
            font-weight: 500;
        }

            .product-card .product-info .features .item .title {
                color: rgb(0 0 0 / 50%);
                font-size: 15px;
            }

            .product-card .product-info .features .item .value {
                font-size: 15px;
                color: rgb(0 0 0 / 87%);
            }

            .product-card .product-info .features .item a {
                font-size: 14px;
                color: rgba(102, 51, 206, 0.87);
                cursor: pointer;
            }

.product-card .left-box {
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 45px;
}

    .product-card .left-box .benefits .item {
        display: flex;
        align-items: center;
        padding: 15px 0;
    }

        .product-card .left-box .benefits .item .icon {
            width: 15%;
            text-align: center;
        }

            .product-card .left-box .benefits .item .icon i {
                font-size: 16px;
                color: #3bb143;
            }

        .product-card .left-box .benefits .item .text-container {
            font-size: 0.9rem;
            width: 85%
        }

    .product-card .left-box .price-container {
        text-align: end;
    }

        .product-card .left-box .price-container .price span {
            color: #000;
            font-size: 22px;
            font-weight: 600;
        }

        .product-card .left-box .price-container .price small {
            color: rgb(9 9 11 / 60%);
        }

        .product-card .left-box .price-container .discount .discount-price {
            color: rgb(9 9 11 / 50%);
            text-decoration: line-through;
            font-size: 18px;
        }

        .product-card .left-box .price-container .discount .discount-percent {
            background-color: var(--primary-color);
            color: #fff;
            border-radius: 5px;
            padding: 0px 8px;
            display: inline-block;
            font-size: 0.8rem;
        }

            .product-card .left-box .price-container .discount .discount-percent i {
                font-size: 10px;
                margin-left: 2px;
            }

    .product-card .left-box .btns .add-to-cart {
        width: 100%;
        display: block;
        text-align: center;
        border-radius: 8px;
        background-color: var(--primary-color);
        color: #fff;
        font-size: 1.2rem;
    }

    .product-card .left-box .btns .quantity-input-container {
        background: #fff;
        border-radius: 10px;
    }

        .product-card .left-box .btns .quantity-input-container span {
            border: none;
        }

        .product-card .left-box .btns .quantity-input-container .input-group {
            border: 1px solid #e4e4e4;
            border-radius: 10px;
            padding: 12px;
        }

        .product-card .left-box .btns .quantity-input-container button:hover {
            background-color: unset;
            color: #000;
        }

        .product-card .left-box .btns .quantity-input-container button {
            padding: 0;
            transition: 0.2s;
        }

            .product-card .left-box .btns .quantity-input-container button i {
                font-size: 20px;
                vertical-align: middle;
                transition: 0.2s;
            }

        .product-card .left-box .btns .quantity-input-container .plusBtn {
            border: 0;
        }

            .product-card .left-box .btns .quantity-input-container .plusBtn:hover i {
                color: green;
            }

        .product-card .left-box .btns .quantity-input-container input.cartItemCount {
            border: 0;
            background: none;
            font-weight: 600;
        }

        .product-card .left-box .btns .quantity-input-container .minusBtn {
            border: 0;
        }

            .product-card .left-box .btns .quantity-input-container .minusBtn:hover i {
                color: red;
            }

            .product-card .left-box .btns .quantity-input-container .minusBtn .remove-from-cart {
                color: var(--primary-color);
            }

        .product-card .left-box .btns .quantity-input-container .quantity-input-div {
            flex: 1 1 auto;
            width: 1%;
            min-width: 0;
            position: relative;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-card .left-box .btns .quantity-input-container .quantity-input-loader span {
            width: 22px;
            height: 22px;
            display: block;
            border-radius: 50%;
            animation: rotate 1s linear infinite
        }

            .product-card .left-box .btns .quantity-input-container .quantity-input-loader span:before {
                content: "";
                box-sizing: border-box;
                position: absolute;
                inset: 0px;
                border-radius: 50%;
                border: 3px solid var(--primary-color);
                animation: prixClipFix 2s linear infinite;
            }

@keyframes rotate {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes prixClipFix {
    0% {
        clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0)
    }

    25% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0)
    }

    50% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%)
    }

    75% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%)
    }

    100% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0)
    }
}

/*-----------*/

#product-page .product-tabs-card ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

    #product-page .product-tabs-card ul li a {
        padding-bottom: .5rem;
        font-weight: 500;
        font-size: 1.1rem;
        color: #000;
        cursor: pointer;
        user-select: none;
    }

#product-page .product-tabs-card a.active {
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}


#product-page .product-tabs-container {
    margin-top: 40px;
}

    #product-page .product-tabs-container .tab-content-content {
        display: none;
    }

        #product-page .product-tabs-container .tab-content-content.active {
            display: block;
        }

        #product-page .product-tabs-container .tab-content-content .product-descripion {
            line-height: 30px;
            color: #474747;
            font-size: 15px;
            text-align: justify;
        }

        #product-page .product-tabs-container .tab-content-content .product-features .item {
            display: flex;
            align-items: stretch;
            gap: .75rem;
            margin-bottom: 10px;
        }

            #product-page .product-tabs-container .tab-content-content .product-features .item .title {
                background-color: rgb(248 249 251);
                padding: 1rem;
                padding: 1rem;
                color: #81858b;
                border-radius: 5px;
            }

            #product-page .product-tabs-container .tab-content-content .product-features .item .value {
                background-color: rgb(248 249 251);
                flex-grow: 1;
                padding: 1rem;
                color: #0c0c0c;
                border-radius: 5px;
            }

/*-----------*/
#product-page .related-products .sec-title h4 {
    font-weight: 700;
    position: relative;
    margin: 0;
}

    #product-page .related-products .sec-title h4:before {
        position: absolute;
        content: "";
        width: 40px;
        height: 40px;
        background-color: #F2F6FC;
        border-radius: 100%;
        z-index: -1;
        top: -8px;
    }

#product-page .related-products #related-product-slider-owl .item .card {
    box-shadow: 0px 5px 8px 0px rgb(0 0 0 / 3%);
    border: 1px solid #f2f4f7;
}

#product-page .related-products #related-product-slider-owl .item {
    transition: 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}

    #product-page .related-products #related-product-slider-owl .item .image-container {
        margin-bottom: 20px;
    }

        #product-page .related-products #related-product-slider-owl .item .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

    #product-page .related-products #related-product-slider-owl .item .content .p-title {
        font-weight: 500;
        color: #000;
    }

    #product-page .related-products #related-product-slider-owl .item .content .price-div {
        margin-top: 15px;
    }

        #product-page .related-products #related-product-slider-owl .item .content .price-div .price {
            color: #000;
            text-align: end;
        }

        #product-page .related-products #related-product-slider-owl .item .content .price-div .discount {
            text-align: end;
        }

            #product-page .related-products #related-product-slider-owl .item .content .price-div .discount .discount-price {
                color: hsla(0, 14%, 5%, 0.56);
                text-align: end;
                text-decoration: line-through;
            }

            #product-page .related-products #related-product-slider-owl .item .content .price-div .discount .percent {
                border-radius: 5px;
                padding: 0px 6px;
                display: inline-block;
                font-size: 14px;
                margin-right: 3px;
                background-color: var(--primary-color);
                color: #fff;
            }

/*-----------*/
.price-container .notAvailable {
    position: relative;
    justify-content: center;
    display: flex;
    align-items: center;
    width: 100%;
}

    .price-container .notAvailable:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        left: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        background-color: #888;
        z-index: 0;
    }

    .price-container .notAvailable p {
        z-index: 1;
        font-size: 18px;
        margin: 0;
        font-weight: 500;
        padding: 0 20px;
        color: #888;
        background: #fff;
    }
/*-----------*/
#pageAlert {
    position: fixed;
    z-index: 9999;
}

    #pageAlert span {
        min-width: 300px;
        text-align: center;
        padding: 16px;
        color: #fff;
        border-radius: 10px;
        position: relative;
        display: block;
        margin-bottom: 5px;
    }

        #pageAlert span.danger {
            background-color: #dc3545;
        }

        #pageAlert span.success {
            background-color: #157347;
        }

            #pageAlert span.danger::after,
            #pageAlert span.success::after {
                background: #fff;
                bottom: 2px;
                position: absolute;
                right: 4px;
                left: 0px;
                content: '';
                height: 2px;
                z-index: 2;
                border-radius: 5px;
                animation: runProgress 2.5s linear forwards;
            }

@keyframes runProgress {
    0% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}

/*-----------*/

#category-page .category-title-container {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

    #category-page .category-title-container h1 {
        font-size: 25px;
        margin: 0
    }

#category-page .sidebar-filters-container .search-input-container {
    flex: 0 0 auto;
    position: relative;
}

    #category-page .sidebar-filters-container .search-input-container .searchInput {
        background: #fff;
        border: none;
        border-radius: 10px;
        width: 100%;
        padding: 10px 15px;
        border: 1px solid #e5e7eb;
    }

        #category-page .sidebar-filters-container .search-input-container .searchInput:focus {
            box-shadow: none !important;
        }

    #category-page .sidebar-filters-container .search-input-container i.searchIcon {
        position: absolute;
        top: 0;
        left: 15px;
        bottom: 0;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #b2b9c9;
    }

#category-page .filter-box {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background-color: #fff;
}

    #category-page .filter-box .divider {
        border-bottom: 1px solid #e5e7eb;
    }

    #category-page .filter-box .filter-accordion-container .accordion-item {
        border: none;
    }

        #category-page .filter-box .filter-accordion-container .accordion-item:not(:last-child) {
            margin-bottom: 15px;
        }

        #category-page .filter-box .filter-accordion-container .accordion-item .accordion-body {
            padding: 0 5px 0 10px;
            margin-top: 10px;
            max-height: 200px;
        }

            #category-page .filter-box .filter-accordion-container .accordion-item .accordion-body .form-check {
                margin-bottom: 5px;
            }

    #category-page .filter-box .filter-accordion-container .accordion-header button {
        font-weight: 500;
        font-size: 20px;
        padding: 0;
    }

    #category-page .filter-box .filter-accordion-container .accordion-button:not(.collapsed) {
        background-color: unset;
        box-shadow: none;
    }

    #category-page .filter-box .filter-accordion-container .accordion-button::after {
        background-size: 0.95rem;
    }

    #category-page .filter-box .filter-price-container {
        margin-bottom: 20px;
    }

        #category-page .filter-box .filter-price-container .title {
            font-weight: 500;
            font-size: 20px;
            margin-bottom: 20px;
        }

        #category-page .filter-box .filter-price-container .price-input {
            margin-top: 10px;
            width: 100%;
            display: flex;
            justify-content: space-between;
        }

        #category-page .filter-box .filter-price-container .field input {
            width: 100%;
            height: 100%;
            outline: none;
            font-size: 19px;
            border-radius: 5px;
            text-align: center;
            border: 1px solid #999;
            -moz-appearance: textfield;
        }

        #category-page .filter-box .filter-price-container input[type="number"]::-webkit-outer-spin-button,
        #category-page .filter-box .filter-price-container input[type="number"]::-webkit-inner-spin-button {
            -webkit-appearance: none;
        }

        #category-page .filter-box .filter-price-container .slider {
            height: 5px;
            position: relative;
            background: #ddd;
            border-radius: 5px;
        }

            #category-page .filter-box .filter-price-container .slider .progress {
                height: 100%;
                right: 0;
                left: 0;
                position: absolute;
                border-radius: 5px;
                background: var(--primary-color);
            }

        #category-page .filter-box .filter-price-container .range-input {
            position: relative;
            direction: ltr;
        }

            #category-page .filter-box .filter-price-container .range-input input {
                position: absolute;
                width: 100%;
                height: 5px;
                top: -5px;
                background: none;
                pointer-events: none;
                -webkit-appearance: none;
                -moz-appearance: none;
            }

        #category-page .filter-box .filter-price-container input[type="range"]::-webkit-slider-thumb {
            height: 17px;
            width: 17px;
            border-radius: 50%;
            background: var(--primary-color);
            pointer-events: auto;
            -webkit-appearance: none;
            box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
        }

        #category-page .filter-box .filter-price-container input[type="range"]::-moz-range-thumb {
            height: 17px;
            width: 17px;
            border: none;
            border-radius: 50%;
            background: #17a2b8;
            pointer-events: auto;
            -moz-appearance: none;
            box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
        }

    #category-page .filter-box .filter-checks-container .form-switch {
        padding-right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }


        #category-page .filter-box .filter-checks-container .form-switch .form-check-input {
            width: 2.75rem;
            height: 1.5rem;
            cursor: pointer;
        }

            #category-page .filter-box .filter-checks-container .form-switch .form-check-input:checked {
                background-color: var(--primary-color) !important;
                border-color: var(--primary-color) !important;
                --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e") !important;
            }

            #category-page .filter-box .filter-checks-container .form-switch .form-check-input:focus {
                border: var(--bs-border-width) solid var(--bs-border-color);
                --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
            }


/*---*/

#category-page .sorting-container {
    height: 50px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
}

    #category-page .sorting-container .content {
        display: flex;
        gap: 10px;
    }

        #category-page .sorting-container .content .items {
            display: flex;
            gap: 18px;
        }

            #category-page .sorting-container .content .items a {
                color: #81858b;
                cursor: pointer
            }

        #category-page .sorting-container .content span i {
            font-size: 13px;
        }

#category-page .products-container .filtered-products .bx {
    padding: 0 !important;
    margin: 0 !important;
}

#category-page .products-container .filtered-products .item {
    padding: 10px;
    border-bottom: 1px solid #e5e7eb;
    height: 100%;
    background-color: #fff;
}

#category-page .products-container .filtered-products .bx:nth-child(4n) .item,
#category-page .products-container .filtered-products .bx:last-child .item {
    border-left: none;
}


/*-----------*/
#cart-page .cart-totals,
#checkout-page .cart-totals {
    border: 1px solid #e5e7eb !important;
}

    #cart-page .cart-totals .item,
    #checkout-page .cart-totals .item {
        border-bottom: 1px solid #ddd;
        padding: 15px 0;
    }

        #cart-page .cart-totals .item:last-child,
        #checkout-page .cart-totals .item:last-child {
            border-bottom: none;
        }

        #cart-page .cart-totals .item span.it-title {
            color: #687687;
        }

        #cart-page .cart-totals .item span.cart-total {
            color: #00a651;
            font-weight: 600;
            font-size: 20px;
        }

        #cart-page .cart-totals .item span.cart-total-un {
            color: #00a651;
            font-size: 18px;
        }

#cart-page .card,
#checkout-page .card {
    border: 1px solid #e5e7eb !important;
}

#cart-page .cart-items .header {
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px;
    background: #eee;
    padding: 1.2rem 0;
    border-bottom: 1px solid #ddd;
}

#cart-page .cart-items .item {
    padding: 20px;
    align-items: center;
    margin: 0;
}

    #cart-page .cart-items .item:not(:last-child) {
        border-bottom: 1px solid #eee;
    }

    #cart-page .cart-items .item .image-container img {
        width: 100%;
        object-fit: cover;
        border-radius: 5px
    }

    #cart-page .cart-items .item .detail .title-container {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
        width: 100%;
        flex: 0 0 auto;
    }

    #cart-page .cart-items .item .title {
        color: #000;
        font-weight: 500;
    }

    #cart-page .cart-items .item .price-container {
        text-align: center;
    }

#cart-page .DiscountCode-accordion-container .accordion-button,
#checkout-page .DiscountCode-accordion-container .accordion-button {
    background-color: #E8ECF3;
}

    #cart-page .DiscountCode-accordion-container .accordion-button i,
    #checkout-page .DiscountCode-accordion-container .accordion-button i {
        color: var(--primary-color);
    }

/*-----------*/
#checkout-page .checkItems-container .item:not(:last-child) {
    margin-bottom: 20px;
}

#checkout-page .checkItems-container .item .title {
    margin-bottom: 15px;
}

    #checkout-page .checkItems-container .item .title span {
        font-weight: 500;
        font-size: 20px;
    }

    #checkout-page .checkItems-container .item .title a {
        font-size: 15px;
    }

        #checkout-page .checkItems-container .item .title a i {
            font-size: 12px;
        }

#checkout-page .checkItems-container .item .form-check {
    padding: 0;
}

    #checkout-page .checkItems-container .item .form-check:not(:last-child) {
        margin-bottom: 8px;
    }

    #checkout-page .checkItems-container .item .form-check input {
        display: none;
    }

    #checkout-page .checkItems-container .item .form-check label {
        padding: 0px 10px;
        border: 1px solid #e4e4e7;
        border-radius: 4px;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        min-height: 3rem;
        padding: 0.5rem 1rem;
        display: flex;
        position: relative;
        color: rgb(9 9 11 / 80%);
        user-select: none;
    }

    #checkout-page .checkItems-container .item .form-check input[type="radio"]:checked + label {
        border: 1px solid rgb(16, 185, 129);
        background: rgb(16 185 129 / 6%);
    }

    #checkout-page .checkItems-container .item .form-check .dropdown .dropdown-toggle:after {
        display: none;
    }

    #checkout-page .checkItems-container .item .form-check .dropdown .dropdown-toggle:active,
    #checkout-page .checkItems-container .item .form-check .dropdown .dropdown-toggle:focus {
        border: none;
        border-color: transparent;
        color: #000;
    }

    #checkout-page .checkItems-container .item .form-check .dropdown.active,
    #checkout-page .checkItems-container .item .form-check .dropdown-item:active {
        background-color: unset;
    }


    #checkout-page .checkItems-container .item .form-check label img {
        width: 25px;
        margin-left: 10px;
    }

/*-----------*/

#order-received-page .top {
    background-color: #f8f9fb;
    border-radius: 15px;
}

#order-received-page .message {
    text-align: center;
}

    #order-received-page .message .text h4 {
        color: #059f50;
        font-weight: 700;
        font-size: 40px;
    }

#order-received-page .order-overview {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    justify-content: center;
}

    #order-received-page .order-overview .item {
        display: flex;
        justify-content: space-between;
        background: #fff;
        padding: 15px;
        border-radius: 10px;
        border: 1px solid #eee;
    }

        #order-received-page .order-overview .item span {
            font-weight: 500;
        }

/* -- */

#order-received-page .order-details {
    border: 2px dashed #eee;
    border-radius: 15px;
}

    #order-received-page .order-details .title span {
        font-size: 20px;
        font-weight: 500;
    }

#order-received-page .products {
    background-color: #f7f7f7;
    border-radius: 7px;
}

    #order-received-page .products .item {
        padding: 15px 10px;
        margin: 0;
    }

        #order-received-page .products .item:not(:last-child) {
            border-bottom: 1px solid #f0e9e9;
        }

#order-received-page .subtotal .item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 0 10px;
}

/*-----------*/

.pagination .page-item:not(:last-child) {
    margin-left: 0.25rem;
}

.pagination .page-item .page-link {
    min-width: 2.25rem;
    text-align: center;
    padding: 0.375rem 0.75rem;
    border-radius: 0.3125rem;
    color: #8c98a4;
    border: 2px solid #F8F9FA;
    font-weight: bold;
    user-select: none;
    cursor: pointer;
}

.pagination .page-item.active .page-link {
    border-color: #0d6efd;
    color: #0d6efd;
    background-color: #ffffff;
    border-width: 2px;
}

/*-----------*/
.online-price .dropdown .dropdown-toggle:after {
    display: none;
}

.online-price .dropdown .dropdown-menu {
    width: 250px;
    padding: 10px;
    background: var(--primary-color);
    border: none
}

    .online-price .dropdown .dropdown-menu .item {
        display: flex;
        justify-content: space-between;
        margin-bottom: 5px;
        color: #ffffff
    }

/*-----------*/
.floating_call_box ._div_btns {
    background: #c9a96e;
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 70px;
    width: 70px;
    border-radius: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 6px 8px 2px rgb(0 0 0 / 14%);
    transition: transform 0.6s cubic-bezier(.19,1,.22,1);
    transform: translate3d(0, 10%, 0);
    z-index: 5;
}

    .floating_call_box ._div_btns .open-btn svg {
        max-width: 24px;
        display: block;
        margin: 1px auto -4px;
    }

    .floating_call_box ._div_btns .open-btn span {
        font-size: 10px;
        font-weight: 600;
        color: #fff;
    }

    .floating_call_box ._div_btns .close-btn {
        animation: rotate_icon .1s forwards;
    }

        .floating_call_box ._div_btns .close-btn i {
            color: #fff;
            font-size: 30px;
            vertical-align: middle
        }

.floating_call_box .call_main {
    position: fixed;
    right: 2%;
    background: #ffffff;
    border-radius: 8px;
    width: 277px;
    z-index: 99999999;
    font-size: 12px;
    transition: all 120ms ease-out;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    bottom: 0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .floating_call_box .call_main.active {
        visibility: visible;
        opacity: 1;
        bottom: 120px;
        transition: all 190ms ease-out;
    }

    .floating_call_box .call_main ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

        .floating_call_box .call_main ul li {
            line-height: 2em;
            font-size: 14px;
        }

            .floating_call_box .call_main ul li a {
                padding: 8px;
                display: flex;
                align-items: center;
                transition: 0.2s ease;
            }

                .floating_call_box .call_main ul li a:hover {
                    background: #eee
                }

                .floating_call_box .call_main ul li a .call_item_icon {
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    padding: 3px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                .floating_call_box .call_main ul li a span {
                    color: #000;
                    margin-right: 10px;
                    font-size: 16px;
                }

                .floating_call_box .call_main ul li a i {
                    color: #fff;
                    font-size: 18px;
                }

@keyframes rotate_icon {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(180deg);
    }
}

/*-----------*/

.sec-faq {
    background: #FAF8F4;
    padding: 40px 0;
    margin-top: 60px;
}

    .sec-faq .sec-title {
        text-align: center;
        margin-bottom: 35px;
    }

        .sec-faq .sec-title p {
            font-weight: 800;
            font-size: 24px;
            color: #6a3c0d;
        }

    .sec-faq .faqAccordion .accordion-item {
        margin-bottom: 10px;
    }

        .sec-faq .faqAccordion .accordion-item .accordion-button {
            font-weight: bold;
            padding: 20px;
            border-radius: 10px !important;
            background-color: #fff !important;
            color: #6a3c0d;
            box-shadow: 0 4px 7px -3px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            overflow: hidden;
        }

        .sec-faq .faqAccordion .accordion-item .accordion-body {
            padding: 20px;
        }

/*-----------*/
@media (max-width: 768px) {
    .sec-banners {
        margin: 40px 0;
    }


        .sec-banners .banners {
            margin-top: 20px;
            flex-direction: column;
        }

            .sec-banners .banners .item {
                width: 100%;
            }

            .sec-banners .banners img {
                border-radius: 10px;
            }

    .sec-slider .owl-stage-outer {
        border-radius: 10px;
    }

    #slider-owl .item img {
        object-fit: cover;
    }

    #product-slider-owl .owl-stage {
        margin-right: 20px;
    }

    .menu-toggle {
        display: block;
    }

    .menu-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

        .menu-list.open {
            display: block;
            padding: 0;
        }

    .categories {
        position: relative;
    }

    footer .contact,
    footer .links {
        margin-bottom: 40px;
    }

    footer .license {
        justify-content: center;
        margin-bottom: 20px;
    }

        footer .license .item img {
            width: 80px;
            height: 80px;
        }

    .sec-product .product-slider .item .image-container,
    #product-page .related-products #related-product-slider-owl .item .image-container {
        min-height: 290px;
    }

    .sec-aside-cart {
        right: -90%;
        width: 90%;
    }

    .btn-login span {
        display: none;
    }

    .sec-aside-cart .products .item .detail .price-container {
        width: 60%;
        flex: 0 0 auto;
    }

    .sec-aside-cart .products .item .detail .quantity-input-container {
        width: 40%;
        flex: 0 0 auto;
    }

    header .header-top .search-input-container {
        width: 100%;
        order: 3;
        margin-top: 10px;
        margin-bottom: 12px;
    }

    header .header-top .logo-container {
        width: 30%;
    }

    header .header-menu {
        display: none;
    }

    header .header-top .responsive-menu-Icon {
        display: flex;
        align-items: center;
        flex: 0 0 auto;
    }

        header .header-top .responsive-menu-Icon i {
            font-size: 35px;
            color: var(--primary-color);
        }

    header .header-top {
        justify-content: space-between;
    }

    /*-----------*/

    .categories-menu-bg {
        top: 0;
    }

    .categories-menu {
        position: fixed;
        visibility: hidden;
        top: 10px;
        bottom: 0;
        background-color: #fff;
        z-index: 22;
        height: calc(100% - 20px);
        background: #fff;
        border-radius: 12px;
        transition: all ease-in-out .2s;
        display: flex;
        flex-direction: column;
        justify-content: start;
        right: -90%;
        width: 70%;
        overflow-y: auto;
    }

        .categories-menu.active {
            right: 10px;
            visibility: visible;
        }

    .parent-category {
        list-style-type: none;
        padding: 0;
    }

        .parent-category li a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 15px;
            font-weight: 500;
            color: #000;
        }

            .parent-category li a.parent {
                border-bottom: 1px solid #eee;
            }

    .sCat-col .title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        margin: 0;
        cursor: pointer;
        color: #4c5e60;
    }

    .submenu-wrapper {
        transition: all 0.2s;
        overflow: hidden;
    }

    .sCat-col ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
        transition: all 0.2s;
        overflow: hidden;
    }

    .fa-plus,
    .fa-minus {
        font-size: 12px;
        transition: transform 0.3s;
    }

    .sCat-col {
        border-bottom: 1px solid #eee;
    }

        .sCat-col ul li a {
            color: #888;
            font-weight: 400;
            padding-right: 30px;
        }

        .sCat-col ul li:not(:last-child) {
            border-bottom: 1px solid #eee;
        }

    /*-----------*/
    header .header-top .left-btns-container .text {
        display: none;
    }

    header .header-top .left-btns-container .icon svg {
        width: 20px;
    }

    header .header-top .left-btns-container .btn-account {
        padding: 0 10px;
    }

    header .header-top .left-btns-container {
        gap: 8px;
    }

    #pageAlert {
        right: 10px;
        bottom: 0;
        left: 10px;
    }

    .product-card .product-thumbnail-images img {
        height: 90px;
    }

    .product-card .product-info .features {
        margin-bottom: 30px;
    }

    #product-page .product-tabs-container .tab-content-content .product-features .item .title {
        width: 40%;
    }

    /*.product-card .left-box .price-container {
        position: fixed;
        background: #fff;
        box-shadow: 0 0px 50px rgba(1, 1, 2, 0.18);
        padding: 20px 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: initial;
        bottom: 0;
        right: 0;
        left: 0;
        z-index: 2;
    }*/

    .product-card .left-box .btns .add-to-cart {
        padding: 8px 12px;
        font-size: 16px;
    }

    .product-card .left-box .benefits .item:not(:last-child) {
        border-bottom: 1px solid #e4e4e4;
    }

    .product-card .left-box .price-container .btns {
        width: 50%;
    }

    .product-card .left-box .price-container .notAvailable {
        width: 100%;
    }

        .product-card .left-box .price-container .notAvailable p {
            background: #fff;
        }

    #category-page .sorting-container {
        white-space: nowrap;
        overflow: auto;
    }

    #category-page .products-container .filtered-products .item {
        display: flex;
        gap: 20px;
        align-items: center;
    }

        #category-page .products-container .filtered-products .item .image-container {
            width: 40%;
        }

            #category-page .products-container .filtered-products .item .image-container img {
                width: 100%;
                object-fit: cover;
                border-radius: 4px;
            }

    #category-page .sidebar-filters-container {
        margin-bottom: 20px;
    }

        #category-page .sidebar-filters-container .search-input-container {
            margin-bottom: 10px;
        }

    #category-page .filter-box .divider {
        margin: 10px 0;
    }

    #category-page .filter-box {
        padding: 10px 15px;
    }

    #cart-page .cart-items .header {
        display: none;
    }

    #cart-page .cart-items .item .cn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 15px;
    }

    #cart-page .cart-items .item .header-md-h {
        font-weight: 500;
    }

    #cart-page .cart-items .item .quantity-input-container {
        width: 40%;
    }

    #checkout-page .checkItems-container .item .form-check label .dropdown {
        margin-right: 15px;
    }

    #order-received-page .message .icon img {
        width: 40%;
    }

    #order-received-page .message {
        margin-bottom: 40px;
    }

    #order-received-page .order-details,
    #order-received-page .top {
        padding: 1rem;
    }

    .sec-product .sec-title {
        padding-top: 40px;
    }

    .sec-product-bottom-svg svg {
        margin-top: -10px;
    }


    header .header-top .online-price {
        width: 100%;
        order: 4;
        margin-bottom: 12px;
    }

    .innerPage {
        margin: 30px 0;
    }

    .top-alert.hasLink ._div_btn {
        margin-top: 20px;
        text-align: center
    }

    .top-alert .alert-dismissible {
        padding-right: 3rem;
        padding-left: unset;
    }

    #category-page .products-container .filtered-products .item .detail .price-container {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }

    .product-card .product-info {
        margin-top: 20px;
    }

    .online-price .dropdown .dropdown-menu.show {
        left: 50% !important;
        transform: translate(-50%, 0) !important;
        top: 30px !important;
        right: auto !important;
    }


    .sec-sort-price {
        padding: 60px 0 60px 0;
    }

        .sec-sort-price .gallery {
            flex-direction: column;
            height: auto;
        }

            .sec-sort-price .gallery .card {
                height: 220px;
                margin-bottom: 15px
            }

                .sec-sort-price .gallery:hover .card,
                .sec-sort-price .gallery .card:hover {
                    flex: 1;
                }
}

@media (min-width: 768px) {

    .sec-banners {
        margin: 60px 0;
    }

        .sec-banners .banners {
            flex-direction: row;
        }

            .sec-banners .banners .item {
                width: 50%;
            }

            .sec-banners .banners img {
                border-radius: 30px;
            }

    .sec-slider .owl-carousel .owl-item img {
        height: 462px;
    }

    .menu-toggle {
        display: none;
    }

    #slider-owl .item img {
        object-fit: cover;
    }

    .sec-slider .owl-stage-outer {
        border-radius: 30px;
    }

    footer .license .item img {
        width: 120px;
        height: 120px;
    }


    .sec-product .product-slider .item .image-container,
    #product-page .related-products #related-product-slider-owl .item .image-container {
        min-height: 215px;
    }

    .sec-aside-cart {
        right: -25%;
        width: 25%;
    }

    header .header-top .left-btns-container .btn-login svg {
        margin-left: 10px;
    }

    .sec-aside-cart .products .item .detail .price-container {
        width: 60%;
        flex: 0 0 auto;
    }

    .sec-aside-cart .products .item .detail .quantity-input-container {
        width: 40%;
        flex: 0 0 auto;
    }

    header .header-top .search-input-container {
        width: 35%;
    }

    header .header-top .logo-container {
        width: 15%;
    }

    /*------------*/
    header .header-menu {
        display: flex;
        align-items: center;
        margin-top: 1.5rem;
        justify-content: space-between;
        background-color: #e6bd7d;
        border-radius: 100px;
        padding: 0 20px;
    }

        header .header-menu .right-menu ul {
            margin: 0;
            padding: 0;
            display: flex;
            gap: 20px;
        }

            header .header-menu .right-menu ul li.m-item {
                list-style: none;
                position: relative;
            }

                header .header-menu .right-menu ul li.m-item:first-child {
                    font-weight: 500;
                    font-size: 1.1rem;
                    cursor: pointer;
                }

        header .header-menu .right-menu i.down {
            font-size: 11px;
            color: #21160b;
        }

        header .header-menu .right-menu ul li.m-item:first-child:after {
            content: "";
            width: 1px;
            background-color: #e0e0e2;
            height: 16px;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            top: 50%;
            position: absolute;
            left: -10px;
            display: none
        }

        header .header-menu .right-menu ul li.m-item a:not(header .header-menu .right-menu .has-submenu .submenu a) {
            color: #21160b;
            padding: 15px 0;
            display: inline-block;
            cursor: pointer;
        }

        header .header-menu .right-menu ul li.m-item a,
        header .header-menu .right-menu ul li.m-item a:hover {
            color: #4c5e60;
        }

        /*------------*/
        header .header-menu .right-menu .has-submenu .submenu {
            position: absolute;
            width: 180px;
            background: #fff;
            border-radius: 0 0 10px 10px;
            padding: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
            z-index: 999;
            display: none;
            margin: 0;
            list-style-type: none;
            border-top: 1px solid #ebebeb;
        }

        header .header-menu .right-menu .has-submenu.active .submenu {
            display: block;
        }

        header .header-menu .right-menu .has-submenu .submenu a {
            display: block;
            padding: 8px 5px;
            transition: 0.2s;
        }

            header .header-menu .right-menu .has-submenu .submenu a:hover {
                color: #2c3536;
            }

        /*------------*/

        header .header-menu .left-menu .btn-icon {
            display: flex;
            align-items: center;
        }

            header .header-menu .left-menu .btn-icon a {
                color: #21160b;
                margin-left: 5px;
                font-weight: 500;
                font-size: 18px;
            }

            header .header-menu .left-menu .btn-icon .iconBg {
                width: 32px;
                height: 32px;
                background: var(--primary-color);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
            }

            header .header-menu .left-menu .btn-icon i {
                color: #fff;
            }

    /*------------*/

    .categories-menu {
        border-top: 1px solid #ebebeb;
        position: fixed;
        left: 0;
        right: 0;
        background: #fff;
        display: none;
        z-index: 22;
        justify-content: space-between;
        border-radius: 0 0 10px 10px;
        margin: auto;
        box-shadow: 0 20px 35px -10px rgba(0, 0, 0, .2);
        max-height: 450px;
    }

        .categories-menu.active {
            display: flex;
        }

        .categories-menu ul.parent-category {
            width: 250px;
            background: #FFF9EF;
            padding: 10px 0 20px 0;
            margin: 0;
            list-style: none;
            padding-right: 20px;
            border-bottom-right-radius: 10px;
            max-height: 450px;
        }

            .categories-menu ul.parent-category li {
                display: block;
                width: 100%;
            }

                .categories-menu ul.parent-category li a {
                    padding: 10px;
                    border-radius: 0 10px 10px 0;
                    margin: 5px 0;
                    display: flex;
                    align-items: center;
                    justify-content: flex-start;
                    padding-left: 25px;
                    color: #000;
                }

        .categories-menu .parent-category li.active a,
        .categories-menu .parent-category li:hover a {
            background: #e6bd7d;
        }

        .categories-menu .sub-category {
            width: calc(100% - 250px);
            display: none;
            padding: 25px;
            overflow-y: scroll;
        }

            .categories-menu .sub-category.active {
                display: block;
            }


            .categories-menu .sub-category .sCat-col {
                width: 20%;
            }

                .categories-menu .sub-category .sCat-col a.title {
                    color: #232323;
                    font-weight: 500;
                }

                .categories-menu .sub-category .sCat-col ul {
                    margin: 0;
                    padding: 0;
                    list-style: none;
                    padding-top: 5px;
                    padding-right: 5px;
                }

                    .categories-menu .sub-category .sCat-col ul li {
                        margin: 15px 0;
                    }

                        .categories-menu .sub-category .sCat-col ul li a {
                            color: #4c5e60;
                            font-size: 15px;
                            transition: 0.2s
                        }

                            .categories-menu .sub-category .sCat-col ul li a:hover {
                                color: #000;
                            }

    /*------------*/

    header .header-top .responsive-menu-Icon {
        display: none;
    }

    header .header-top .logo-container,
    header .header-top .search-input-container {
        margin-left: 1rem;
    }

    header .header-top .left-btns-container {
        width: 20%;
        margin-right: auto;
    }

        header .header-top .left-btns-container .icon {
            display: none;
        }

        header .header-top .left-btns-container .btn-account {
            padding: 0 15px;
        }

    header .header-top .left-btns-container {
        gap: 12px;
    }

    #pageAlert {
        right: 30px;
        bottom: 40px;
    }

    .product-card .product-thumbnail-images img {
        height: 80px;
    }

    #product-page .product-tabs-container .tab-content-content .product-features .item .title {
        width: 20%;
    }

    .product-card .left-box .btns .add-to-cart {
        padding: 12px;
    }

    .product-card .left-box .benefits .item {
        border-bottom: 1px solid #e4e4e4;
    }

    .product-card .left-box .price-container .notAvailable p {
        background: #f8f9fa;
    }

    #category-page .products-container .filtered-products .item {
        border-left: 1px solid #e5e7eb;
    }

    #category-page .sidebar-filters-container .search-input-container {
        margin-bottom: 20px;
    }

    #category-page .filter-box .divider {
        margin: 20px 0;
    }

    #category-page .filter-box {
        padding: 20px 15px;
    }

    #cart-page .cart-items .item .header-md-h {
        display: none;
    }

    #checkout-page .checkItems-container .item .form-check.w3 {
        width: 33%;
        display: inline-block;
    }

    #order-received-page .message .icon img {
        width: 20%;
    }

    #order-received-page .order-details,
    #order-received-page .top {
        padding: 2rem;
    }

    .sec-product-bottom-svg svg {
        margin-top: -1px;
    }

    .innerPage {
        margin: 70px 0;
    }

    .top-alert.hasLink .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0;
    }

    #category-page .products-container .filtered-products .item .detail .price-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .sec-product .product-slider article.product-cItem .detail .p-title,
    .sec-selected-products .product-slider article.product-cItem .detail .p-title,
    .related-products article.product-cItem .detail .p-title,
    #category-page .products-container .filtered-products .item .detail .p-title {
        margin-bottom: 15px;
    }

    .online-price .dropdown .dropdown-menu {
        right: 0 !important;
    }

    .online-price .dropdown:hover .dropdown-menu {
        display: block;
    }

    .product-card .left-box .price-container .btns {
        margin-top: 1.5rem;
    }

    .sec-sort-price .gallery {
        display: flex;
        gap: 10px;
        width: 100%;
        height: 320px;
    }

    .sec-sort-price {
        padding: 80px 0 60px 0;
    }

        .sec-sort-price .gallery .card {
            flex: 1;
        }

        .sec-sort-price .gallery .card {
            flex: 1;
            transition: .4s ease;
        }

            .sec-sort-price .gallery .card.active {
                flex: 2;
            }
}
