/*Style sheet*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap');
/*font-family: 'Open Sans', sans-serif;*/

body {
    font-family: 'Gotham';
    font-weight: 300;
}

p {
    margin: 0px;
}

.mg-bot-50 {
    margin-bottom: 50px;
}

.mg-bot-25 {
    margin-bottom: 25px;
}

.mg-bot-15 {
    margin-bottom: 15px;
}

.mg-bot-10 {
    margin-bottom: 10px;
}

.container-cus {
    width: 90%;
    margin: auto;
}

    .container-cus::after {
        content: '';
        display: block;
        clear: both;
    }
/*home*/
/*header*/
.header {
    border-top: 8px solid #af110e;
    background: #000;
}

    .header .container-cus {
        padding: 28px 0px;
    }

    .header .left {
        width: 20%;
        float: left;
        padding: 17.5px 0px;
    }

        .header .left p {
            color: white;
            text-transform: uppercase;
            font-size: 12px;
        }

            .header .left p a {
                color: white;
                text-decoration: none;
            }

                .header .left p a:hover {
                    opacity: 0.8;
                }

            .header .left p img {
                float: left;
                margin-right: 15px;
                margin-top: -1px;
                width: 18px;
            }

    .header .center {
        width: 60%;
        float: left;
        text-align: center;
    }

        .header .center a {
        }

            .header .center a img {
            }

    .header .right {
        width: 20%;
        float: left;
        text-align: right;
        padding: 15px 0px;
    }

        .header .right .input-box {
        }

            .header .right .input-box .close {
                color: #b0851e;
                opacity: 1;
                display: none;
            }

            .header .right .input-box img {
                width: 18px;
                margin-top: -6px;
            }

            .header .right .input-box input {
                font-size: 12px;
                background: rgb(0 0 0 / 0%);
                border: 0px;
                border-bottom: 1px solid #111;
                outline: none;
                margin-left: 14px;
                width: 60px;
                float: right;
                color: White;
                text-align: right;
                transition: width 0.5s ease-in-out;
                font-weight: 300;
            }

                .header .right .input-box input:focus {
                    width: 120px;
                    border-bottom: 1px solid #fff;
                }

                .header .right .input-box input::placeholder {
                    color: #eee;
                }

                .header .right .input-box input:-ms-input-placeholder {
                    color: #eee;
                }

                .header .right .input-box input::-ms-input-placeholder {
                    color: #eee;
                }
/*nav*/
.cus-nav {
    text-align: center;
    background: #af110e;
}

    .cus-nav ul {
        padding: 0px;
        margin: 0px;
    }

        .cus-nav ul li {
            display: inline-block;
        }

            .cus-nav ul li a {
                color: white;
                font-size: 13px;
                text-transform: uppercase;
                padding: 11px 38px;
                display: block;
                text-decoration: none;
            }

                .cus-nav ul li a:hover {
                    background: rgb(130 10 7 / 52%);
                }
/*home slider*/
.home-slider {
}

    .home-slider img {
        width: 100%;
    }

    .home-slider .carousel-indicators li {
        width: 40px;
        height: 4px;
    }
/*home title*/
.home-tit {
    border-bottom: 1px solid #e8e8e8;
}

    .home-tit .container-cus {
    }

    .home-tit h1 {
        text-align: center;
        font-size: 1.3rem;
        margin: 0px;
        padding: 46px 0px;
        position: relative;
    }

        .home-tit h1::after {
            content: '';
            width: 35px;
            height: 2px;
            background: black;
            position: absolute;
            transform: rotate(-45deg);
            border-radius: 12px;
            left: 0px;
            right: 0px;
            margin: auto;
            bottom: 0px;
        }
/*home lipstick*/
.home-lipstick {
    padding: 40px 0px;
}

    .home-lipstick .container-cus {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-gap: 31px;
        width: 80%;
    }

        .home-lipstick .container-cus::after {
            content: none;
        }

    .home-lipstick .box {
        overflow: hidden;
        border: 1px solid #d8d8d8;
        position: relative;
    }

        .home-lipstick .box img {
            width: 100%;
            transition: transform 1s ease;
        }

        .home-lipstick .box .det-box {
            position: absolute;
            bottom: 0px;
            width: 100%;
            text-align: center;
        }

            .home-lipstick .box .det-box .name {
                color: #4c4c4c;
                font-weight: 500;
                font-size: 15px;
                margin-bottom: 0px;
            }

            .home-lipstick .box .det-box .dis {
                margin-bottom: 10px;
                font-size: 13px;
                font-weight: 400;
                color: #6d6d6d;
            }

        .home-lipstick .box:hover img {
            transform: scale(1.05);
        }

    .home-lipstick .half-box {
        grid-area: span 1 / span 2;
    }
/*home center banner*/
.home-center-banner {
}

    .home-center-banner img {
        width: 100%;
    }
/*home polish*/
.home-polish {
    padding-top: 40px;
}

    .home-polish .container-cus {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 30px;
        width: 80%;
    }

        .home-polish .container-cus::after {
            content: none;
        }

    .home-polish .box {
        overflow: hidden;
        border: 1px solid #d8d8d8;
    }

        .home-polish .box img {
            width: 100%;
            transition: transform 1s ease;
        }

        .home-polish .box:hover img {
            transform: scale(1.05);
        }
/*page break*/
.page-break {
    border: 1px solid #e8e8e8;
    position: relative;
    margin: 95px 0px;
}

    .page-break::before {
        content: '';
    }

    .page-break::after {
        content: '';
        width: 35px;
        height: 2px;
        background: black;
        position: absolute;
        transform: rotate(-45deg);
        border-radius: 12px;
        left: 0px;
        right: 0px;
        margin: auto;
        bottom: 0px;
    }
/*footer*/
.footer {
    background: black;
    padding: 80px 0px;
}

    .footer .container-cus {
        width: 80%;
    }

    .footer .left {
        width: 50%;
        float: left;
    }

    .footer .right {
        width: 45%;
        float: right;
    }

    .footer .box {
        width: 50%;
        float: left;
    }

    .footer h5 {
        color: #d8d8d8;
        font-size: 0.9rem;
        margin-bottom: 18px;
    }

        .footer h5 span {
            position: relative;
        }

            .footer h5 span::after {
                content: '';
                position: absolute;
                width: 100%;
                height: 3px;
                background: #868b91;
                left: 0px;
                bottom: -6px;
            }

    .footer ul {
        padding: 0px;
        margin: 0px;
        overflow: hidden;
    }

        .footer ul li {
            display: block;
            width: 50%;
            float: left;
            line-height: 23px;
        }

        .footer ul.full-width li {
            width: 100%;
        }

        .footer ul li a {
            color: #cccccc;
            font-size: 14px;
        }

            .footer ul li a:hover {
                color: #a2a1a1;
            }

        .footer ul li.dot::after {
            content: '';
            width: 11px;
            height: 11px;
            background: white;
            display: block;
            border-radius: 11px;
            margin-top: 7px;
        }

    .footer p {
        width: 50%;
        float: left;
        line-height: 21px;
        color: #cccccc;
        font-size: 13px;
    }

        .footer p span {
            width: 60px;
            display: inline-block;
            margin-right: 20px;
        }

            .footer p span b {
                float: right;
            }
/*after footer*/
.after-footer {
    padding: 0px 0px;
    background-color: #af110e;
}

    .after-footer .container-cus {
    }

    .after-footer .left {
        width: 33.33%;
        float: left;
        display: none;
    }

        .after-footer .left p {
            font-size: 13px;
            font-weight: 300;
            color: #fff;
            padding: 7px 0px;
        }

            .after-footer .left p span {
                font-weight: 400;
            }

    .after-footer .center {
        width: 100%;
        float: left;
        text-align: center;
        color: #eee;
    }

        .after-footer .center p {
            font-size: 13px;
            padding: 7px 0px;
        }

            .after-footer .center p span {
                font-size: 13px;
                font-weight: 400;
                color: #fff;
                display: inline-block;
            }

    .after-footer .right {
        width: 33.33%;
        float: left;
        text-align: right;
        display: none;
    }

        .after-footer .right p {
            display: inline-block;
            font-size: 13px;
            font-weight: 400;
            color: #636363;
        }

        .after-footer .right ul {
            display: inline-block;
            margin: 0px;
            padding: 0px;
        }

            .after-footer .right ul li {
                display: inline-block;
                margin-left: 10px;
            }

                .after-footer .right ul li a {
                }

                    .after-footer .right ul li a:hover img {
                        opacity: 0.8;
                    }
/*category*/
/*banner*/
.category-banner {
}

    .category-banner img {
        width: 100%;
    }
/*title*/
.category-tit {
}

    .category-tit .container-cus {
    }

    .category-tit h1 {
        text-align: center;
        font-size: 1rem;
        margin: 0px;
        padding: 70px 0px;
        position: relative;
        text-transform: uppercase;
        letter-spacing: 11px;
        font-weight: 600;
    }

        .category-tit h1 span {
            background: #ececec;
            padding: 5px 36px;
        }
/*category grid*/
.category-grid {
}

    .category-grid .container-cus {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-column-gap: 0px;
        grid-row-gap: 40px;
        width: 80%;
    }

        .category-grid .container-cus::after {
            content: none;
        }

    .category-grid .box {
        border: 1px solid #bfbfbf;
        border-right: 0px;
    }

        .category-grid .box:nth-child(3n+0) {
            border-right: 1px solid #bfbfbf;
        }

.relevant-grid .box:nth-child(4) {
    display: none;
}

.category-grid .box:last-child {
    border-right: 1px solid #bfbfbf !important;
}

.category-grid .box a {
    text-decoration: none;
}

.category-grid .box .img {
    position: relative;
    overflow: hidden;
}

    .category-grid .box .img img {
        width: 100%;
        transition: transform 1s ease;
    }

.category-grid .box a:hover .img img {
    transform: scale(1.07);
}

.category-grid .box .img .shade {
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 13px;
    color: black;
    font-weight: 400;
}

    .category-grid .box .img .shade::before {
        content: '';
        width: 7px;
        height: 7px;
        display: inline-block;
        background: #989898;
        border-radius: 10px;
        float: left;
        margin-top: 7px;
        margin-right: 10px;
    }

.category-grid .box .text {
    padding: 0px 36px;
    padding-bottom: 30px;
    text-align: center;
    margin-top: -21px;
    position: relative;
    z-index: 2;
}

    .category-grid .box .text .tit {
        font-weight: 500;
        font-size: 15px;
        margin-bottom: 0px;
        color: #4c4c4c;
    }

    .category-grid .box .text .disc {
        font-size: 13px;
        font-weight: 400;
        color: #6d6d6d;
    }
/*product-tit*/
.product-tit {
    padding: 40px 0px;
}

    .product-tit p {
        font-size: 12px;
        font-weight: 400;
        color: #6f6f6f;
    }

        .product-tit p a {
            color: #111;
        }
/*product disc*/
.product-disc {
    margin-top: 30px;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 80px;
}

    .product-disc .container-cus {
        display: grid;
        grid-template-columns: 56% 38%;
        grid-column-gap: 6%;
    }

        .product-disc .container-cus::after {
            content: none;
        }

    .product-disc .imgs {
        display: grid;
        grid-template-columns: 14% 84%;
        grid-column-gap: 2%;
    }

    .product-disc .sm-img {
        position: relative;
    }

        .product-disc .sm-img::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 10px;
            bottom: 0px;
            left: 0px;
            background: black;
        }

        .product-disc .sm-img img {
            width: 100%;
            border: 1px solid #111;
            margin-bottom: 12px;
            cursor: pointer;
        }

    .product-disc .big-img {
        position: relative;
    }

        .product-disc .big-img .main {
            width: 100%;
        }

        .product-disc .big-img .zoom-icon {
            position: absolute;
            right: 30px;
            top: 26px;
            width: 24px;
        }

    .product-disc .detail {
        position: relative;
        border-bottom: 1px solid #111;
    }

        .product-disc .detail::after {
            content: '';
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 0px solid transparent;
            border-right: 10px solid #111;
            position: absolute;
            right: 0px;
            bottom: 0px;
        }

        .product-disc .detail .tag {
            text-align: right;
            margin-bottom: 15px;
        }

            .product-disc .detail .tag span {
                text-transform: uppercase;
                color: white;
                background: black;
                display: inline-block;
                padding: 3px 24px;
                font-size: 14px;
                border-radius: 26px;
            }

        .product-disc .detail .name {
            font-size: 1.65rem;
            font-weight: 500;
            margin-bottom: 5px;
        }

        .product-disc .detail .disc {
            font-size: 14px;
            font-weight: 400;
            line-height: 19px;
            font-family: 'Open Sans', sans-serif;
            color: #000000;
        }

        .product-disc .detail .filter-box {
            margin: 40px 0px;
            display: grid;
            grid-template-columns: auto 1fr;
            width: 75%;
        }

            .product-disc .detail .filter-box p {
                font-size: 14px;
                font-weight: 400;
                color: #777;
                margin-right: 28px;
                display: inline-block;
            }

            .product-disc .detail .filter-box ul {
                padding: 0px;
                margin-top: -1px;
                margin: 0px;
            }

                .product-disc .detail .filter-box ul li {
                    display: block;
                    float: left;
                    margin-top: -3px;
                    margin-right: 19px;
                    margin-bottom: 3px;
                    cursor: pointer;
                }

                    .product-disc .detail .filter-box ul li a {
                        color: #808080;
                        font-weight: 400;
                        font-size: 13px;
                        text-decoration: underline;
                        line-height: 10px;
                    }

                    .product-disc .detail .filter-box ul li.active a {
                        color: #111;
                    }

        .product-disc .detail .shade-box {
        }

            .product-disc .detail .shade-box p {
                text-transform: uppercase;
                font-weight: 600;
                margin-bottom: 8px;
            }

            .product-disc .detail .shade-box .shades {
                display: grid;
                grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
                grid-row-gap: 5px;
            }

                .product-disc .detail .shade-box .shades div {
                    cursor: pointer;
                }

                    .product-disc .detail .shade-box .shades div.active {
                        border: 4px solid #111;
                    }

                .product-disc .detail .shade-box .shades img {
                    width: 100%;
                }

                .product-disc .detail .shade-box .shades a.active img {
                    border: 7px solid #111;
                }

        .product-disc .detail .color-text {
            margin-top: 30px;
        }

            .product-disc .detail .color-text p {
                font-size: 14px;
                font-weight: 400;
            }

                .product-disc .detail .color-text p span {
                    /*color: #f63b1b;*/
                    /*color:#111;*/
                    color: #6d6d6d;
                }
/*relevant-tit*/
.relevant-tit {
}

    .relevant-tit h1 {
        text-align: center;
        font-size: 1.1rem;
        margin: 0px;
        padding: 70px 0px;
        position: relative;
        text-transform: uppercase;
        letter-spacing: 12px;
        font-weight: 400;
    }
/*contact*/
/*title*/
.text-tit {
    background: #e4e4e4;
}

    .text-tit .container-cus {
        width: 80%;
    }

    .text-tit h1 {
        margin: 0px;
        font-size: 1.4rem;
        font-weight: 400;
        padding: 25px 0px;
    }

.contact {
    padding-top: 70px;
}

    .contact .container-cus {
        display: grid;
        grid-template-columns: 57% 35%;
        grid-gap: 8%;
        width: 80%;
    }

        .contact .container-cus::after {
            content: none;
        }

    .contact .left {
    }

        .contact .left .addr-box {
        }

            .contact .left .addr-box .name {
                font-weight: 800;
                font-size: 15px;
                margin-bottom: 4px;
            }

            .contact .left .addr-box .adres {
                font-size: 14px;
                font-weight: 400;
                line-height: 19px;
                margin-bottom: 30px;
            }

            .contact .left .addr-box .info {
                font-size: 13px;
                font-weight: 400;
                margin-bottom: 3px;
            }

                .contact .left .addr-box .info span {
                    width: 52px;
                    margin-right: 28px;
                    display: inline-block;
                }

                    .contact .left .addr-box .info span b {
                        float: right;
                    }

        .contact .left .map-box {
            margin-top: 40px;
            padding-bottom: 50px;
            position: relative;
        }

            .contact .left .map-box::after {
                content: '';
                width: 60px;
                height: 11px;
                position: absolute;
                left: 0px;
                bottom: 0px;
                background: black;
            }

            .contact .left .map-box h2 {
                margin-bottom: 30px;
            }

                .contact .left .map-box h2 span {
                    font-size: 16px;
                    font-weight: 800;
                    color: white;
                    background: black;
                    display: inline-block;
                    padding: 9px 25px;
                    border-radius: 28px;
                }

            .contact .left .map-box iframe {
                width: 100%;
                height: 200px;
                border: 1px solid #c7c7c7;
            }

    .contact .right {
    }

        .contact .right .form-heading {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .contact .right .form-cus {
        }

            .contact .right .form-cus .input-row {
                margin-bottom: 8px;
                overflow: hidden;
            }

                .contact .right .form-cus .input-row p {
                    font-size: 14px;
                    font-weight: 400;
                }

                .contact .right .form-cus .input-row input {
                    background: #f7f7f7;
                    width: 100%;
                    height: 40px;
                    border: 1px solid #e6e6e6;
                }

                .contact .right .form-cus .input-row textarea {
                    background: #f7f7f7;
                    width: 100%;
                    border: 1px solid #e6e6e6;
                }

                .contact .right .form-cus .input-row a {
                    float: right;
                    background: black;
                    color: white;
                    font-size: 15px;
                    font-weight: 500;
                    padding: 26px 60px;
                    margin-top: 15px;
                }
/*about*/
.about {
    padding-top: 70px;
    padding-bottom: 20px;
}

    .about .container-cus {
        display: grid;
        grid-template-columns: 54% 41%;
        grid-gap: 5%;
        width: 80%;
    }

        .about .container-cus .left {
            padding-top: 60px;
            padding-top: 80px;
            text-align: justify;
            position: relative;
        }

            .about .container-cus .left::after {
                content: '';
                position: absolute;
                left: 0px;
                bottom: 0px;
                width: 60px;
                height: 10px;
                background: black;
            }

        .about .container-cus .big {
            font-weight: 400;
            line-height: 20px;
            color: #000;
        }

        .about .container-cus .norm {
            font-size: 14px;
            font-weight: 400;
            line-height: 17px;
        }

        .about .container-cus .bold {
            font-weight: 600;
            line-height: 19x;
        }

        .about .container-cus p {
            margin-bottom: 25px;
        }

        .about .container-cus .about-img {
            width: 100%;
        }
/*mbl nav*/
/*mbl nav*/
body.lock {
    height: 100vh;
    overflow: hidden;
}

.mbl-nav {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    overflow-y: auto;
    -webkit-transition: left .25s ease-in-out;
    -o-transition: left .25s ease-in-out;
    transition: left .25s ease-in-out;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    -webkit-transition: opacity .25s ease-in-out .25s;
    -o-transition: opacity .25s ease-in-out .25s;
    transition: opacity .25s ease-in-out .25s;
    left: -100%;
}

    .mbl-nav .box {
        position: absolute;
        width: 38%;
        min-height: 100vh;
        background-color: #131313;
        z-index: 2;
        left: -100%;
        -webkit-transition: left 0.7s linear;
        -o-transition: left 0.7s linear;
        transition: left 0.7s linear;
    }

        .mbl-nav .box .norm {
        }

        .mbl-nav .box .head {
            border-bottom: 1px solid rgb(236 236 236 / 15%);
            padding: 26px 30px;
            overflow: hidden;
            text-align: center;
        }

            .mbl-nav .box .head img.mbl-nav-opener {
                display: none;
            }

            .mbl-nav .box .head img {
                display: inline-block;
                width: 19px;
                margin-top: 4px;
                margin-right: 16px;
            }

                .mbl-nav .box .head img.mbl-logo {
                    width: 98px;
                    margin-left: 10px;
                }

        .mbl-nav .box ul {
            border-bottom: 0px solid #e4e4e4;
            padding: 20px 40px;
        }

            .mbl-nav .box ul li {
                display: block;
            }

                .mbl-nav .box ul li a {
                    display: block;
                    padding: 10px 0px;
                    color: white;
                    font-size: 15px;
                }

.mbl-nav-opened {
    left: 0%;
    opacity: 1;
}

    .mbl-nav-opened::after {
        left: 0%;
    }

    .mbl-nav-opened .box {
        left: 0%;
    }

.samsam {
    border-color: #bd0303 !important;
}
/*category note*/
.category-note {
    margin-top: 40px;
}

    .category-note .container-cus {
        display: block;
    }

        .category-note .container-cus p {
            text-align: center;
            font-weight: 400;
            color: #4e4e4e;
        }

.select2-container .select2-selection--single {
    height: 38px !important; /* Adjust height */
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

    .select2-container .select2-selection--single .select2-selection__rendered {
        line-height: 26px !important; /* Align text properly */
    }
.sl-btn-search {
    background-color: #af110e !important;
    font-weight: 300 !important;
    color : white !important;
    box-shadow : none !important;
    border : none !important;
}

.text-brown {
    color: #af110e !important;
}

.social-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.icons-container a {
    display: inline-block; 
    text-decoration: none;  
}

    .icons-container a:hover {
        text-decoration: none; 
    }

    .social-icon:hover {
        transform: scale(1.1);
    }
.footer-text {
    color: #cccccc;
    font-size: 13px;
}

.cta-btn {
    background-color: #af110e !important;
    font-size: 12px !important;
    transition: all ease .3s;
}

    .cta-btn:hover {
        font-size: 13px !important;
    }

.disc-sub {
    font-size: 13px;
    font-weight: 400;
    color: #af110e;
}