/* font conectivity */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* icon link */
@import url('https://cdn-uicons.flaticon.com/2.6.0/uicons-regular-rounded/css/uicons-regular-rounded.css');
@import url('https://cdn-uicons.flaticon.com/2.6.0/uicons-thin-chubby/css/uicons-thin-chubby.css');
@import url('https://cdn-uicons.flaticon.com/2.6.0/uicons-regular-straight/css/uicons-regular-straight.css');
@import url('https://cdn-uicons.flaticon.com/2.6.0/uicons-regular-chubby/css/uicons-regular-chubby.css');
@import url('https://cdn-uicons.flaticon.com/2.6.0/uicons-solid-straight/css/uicons-solid-straight.css');

:root {
    --primary-color: #000;
    --secondary-color: #EA8A54;

    --btn-color: #EA8A54;

    --text-black: #000;
    --text-light: #7c7c7c;
    --text-white: #fff;
    --bg-white: #fff;

    --rating: #F5821F;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "jost", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    overflow-x: hidden;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: var(--text-black);
}

ul {
    padding: 0;
    margin: 0;
}


h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

/* Bootstrap css */
/* .container {
    max-width: 1440px
} */


img {
    width: 100%;
}

.form-control {
    height: 50px;
    border-radius: 0;
}

.form-control:focus {
    box-shadow: none;
    border: 1px solid var(--primary-color);
}

.form-select {
    height: 50px;
    border-radius: 0;
}

.form-select:focus {
    box-shadow: none;
    border: 1px solid var(--primary-color);
}


.form-check-input {
    width: 1.4em;
    height: 1.4em;
    margin-top: 0.165em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #b3b3b3;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
}

.form-check .form-check-input {
    float: left;
    margin-left: -1.7em;
}

.form-check-input[type=checkbox] {
    border-radius: 0.25em;
}


.form-check-input:checked,
.form-check-input[type=checkbox]:indeterminate {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 2px 4px 0 rgba(105, 108, 255, 0.4);
}

.form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 2px 4px 0 rgba(105, 108, 255, 0.4);
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.btn:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn {
    border-radius: 0;
    /* background-color: var(--primary-color); */
}

.textarea {
    height: auto;
}

/* --------- preloader ------ */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    z-index: 1000000;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* new loader css */
.loader-logo {
    width: 100px;
    height: 100px;
    animation: rotateHorizontal 2s infinite linear;
}

@keyframes rotateHorizontal {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

/* Animation effects for hiding preloader and showing content */
#preloader.fade-out {
    animation: fadeOut 0.5s forwards;
}

#content.fade-in {
    /* animation: fadeIn 0.5s forwards; */
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        visibility: hidden;
    }

    100% {
        opacity: 1;
        visibility: visible;
    }
}

/* From Uiverse.io by doniaskima */
/* HTML: <div class="loader"></div> */
.loader {
    width: 120px;
    height: 20px;
    background: linear-gradient(#000 50%, #0000 0),
        linear-gradient(#0000 50%, #000 0),
        linear-gradient(#000 50%, #0000 0),
        linear-gradient(#0000 50%, #000 0),
        linear-gradient(#000 50%, #0000 0),
        linear-gradient(#0000 50%, #000 0) #ddd;
    background-size: calc(100%/6 + 1px) 200%;
    background-repeat: no-repeat;
    animation: l12 2s infinite;
}

@keyframes l12 {
    0% {
        background-position: calc(0*100%/5) 100%, calc(1*100%/5) 0%, calc(2*100%/5) 100%, calc(3*100%/5) 0%, calc(4*100%/5) 100%, calc(5*100%/5) 0%
    }

    16.67% {
        background-position: calc(0*100%/5) 0%, calc(1*100%/5) 0%, calc(2*100%/5) 100%, calc(3*100%/5) 0%, calc(4*100%/5) 100%, calc(5*100%/5) 0%
    }

    33.33% {
        background-position: calc(0*100%/5) 0%, calc(1*100%/5) 100%, calc(2*100%/5) 100%, calc(3*100%/5) 0%, calc(4*100%/5) 100%, calc(5*100%/5) 0%
    }

    50% {
        background-position: calc(0*100%/5) 0%, calc(1*100%/5) 100%, calc(2*100%/5) 0%, calc(3*100%/5) 0%, calc(4*100%/5) 100%, calc(5*100%/5) 0%
    }

    66.67% {
        background-position: calc(0*100%/5) 0%, calc(1*100%/5) 100%, calc(2*100%/5) 0%, calc(3*100%/5) 100%, calc(4*100%/5) 100%, calc(5*100%/5) 0%
    }

    83.33% {
        background-position: calc(0*100%/5) 0%, calc(1*100%/5) 100%, calc(2*100%/5) 0%, calc(3*100%/5) 100%, calc(4*100%/5) 0%, calc(5*100%/5) 0%
    }

    100% {
        background-position: calc(0*100%/5) 0%, calc(1*100%/5) 100%, calc(2*100%/5) 0%, calc(3*100%/5) 100%, calc(4*100%/5) 0%, calc(5*100%/5) 100%
    }
}

/* ----------------------------------------------
            Header
-------------------------------------------------*/

.marquee {
    background: var(--primary-color);
    position: relative;
    width: 100vw;
    padding: 10px 0 0 0;
    overflow: hidden;
}

.marquee marquee {
    color: var(--text-white);
}


.logo {
    margin-right: 1.5rem;
}

#nav-menu {
    border-bottom: 1px solid #eeeeee;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    column-gap: 2rem;
    padding: 20px 0;
}

.nav-start .logo img {
    width: 140px;
}

.menu {
    position: relative;
    background: var(--bg-white);
}

.menu-bar li:first-child .dropdown {
    flex-direction: initial;
    min-width: 480px;
}

.menu-bar li:first-child ul:nth-child(1) {
    border-right: 1px solid #eeeeee;
}

.menu-bar li:nth-child(n + 2) ul:nth-child(1) {
    border-bottom: 1px solid #eeeeee;
}

.menu-bar .dropdown-link-title {
    font-weight: 600;
}

.menu-bar .nav-link {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.6px;
    padding: 0.3rem;
    min-width: 60px;
    margin: 0 0.6rem;
}

.menu-bar .active {
    color: var(--secondary-color) !important;
}

.menu-bar .nav-link:hover,
.dropdown-link:hover {
    color: var(--primary-color);
}

.nav-start,
.nav-end,
.menu-bar,
.right-container,
.right-container .search {
    display: flex;
    align-items: center;
}

.dropdown {
    display: flex;
    flex-direction: column;
    min-width: 230px;
    background-color: var(--bg-white);
    border-radius: 10px;
    position: absolute;
    top: 36px;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transform: scale(0.97) translateX(-5px);
    transition: 0.1s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
        rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.dropdown.active {
    visibility: visible;
    opacity: 1;
    transform: scale(1) translateX(5px);
}

.dropdown ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.2rem;
    font-size: 0.95rem;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.15rem;
}

.dropdown-link {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-radius: 7px;
    transition: 0.1s ease-in-out;
}

.dropdown-link p {
    font-size: 0.8rem;
    color: #636363;
}

.right-container {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

.icon_side ul {
    display: flex;
    gap: 15px;
}

.icon_side ul li a {
    color: var(--primary-color);
    font-size: 20px;
}

#hamburger {
    display: none;
    padding: 0.1rem;
    margin-left: 1rem;
    font-size: 1.9rem;
}

@media (max-width: 1100px) {
    #hamburger {
        display: block;
        background: var(--primary-color);
        z-index: 99;
    }

    #hamburger i {
        color: var(--text-white);
    }

    .menu {
        display: none;
        position: absolute;
        top: 87px;
        left: 0;
        min-height: 100vh;
        width: 100vw;
        z-index: 99;
    }

    .menu-bar li:first-child ul:nth-child(1) {
        border-right: none;
        border-bottom: 1px solid #eeeeee;
    }

    .dropdown {
        display: none;
        min-width: 100%;
        border: none !important;
        border-radius: 5px;
        position: static;
        top: 0;
        left: 0;
        visibility: visible;
        opacity: 1;
        transform: none;
        box-shadow: none;
    }

    .menu.show,
    .dropdown.active {
        display: block;
    }

    .dropdown ul {
        padding-left: 0.3rem;
    }

    .menu-bar {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        row-gap: 1rem;
        padding: 1rem;
    }

    .menu-bar .nav-link {
        display: flex;
        justify-content: space-between;
        width: 100%;
        font-weight: 600;
        font-size: 1.2rem;
        margin: 0;
    }

    .menu-bar li:first-child .dropdown {
        min-width: 100%;
    }

    .menu-bar>li:not(:last-child) {
        padding-bottom: 0.5rem;
        border-bottom: 1px solid #eeeeee;
    }
}

@media (max-width: 600px) {
    .right-container {
        display: none;
    }
}


.header-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}


/* -----------------------------------------------
            2. Slider
-------------------------------------------------*/
.slider_image {
    position: relative;
}

.slider_image .slider_text {
    position: absolute;
    top: 30%;
    left: 17%;
}

.slider_image .slider_text h5 {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 20px 0;
}

.slider_image .slider_text .main_title h1 {
    font-family: Playfair Display, serif;
    font-size: 70px;
    font-weight: 600;
    margin: 0 0 40px 0;
}

.slider_image .slider_text .button a {
    background-color: var(--btn-color);
    padding: 9px 30px;
    color: var(--text-white);
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.3s ease-in-out all;
}

.slider_image .slider_text .button a:hover {
    background: var(--primary-color);
}


/* -----------------------------------------------
            3. Category
-------------------------------------------------*/
.category {
    margin: 60px 0 0 0;
}

.category_list .category_item {
    position: relative;
    overflow: hidden;
}

.category_list .category_item .overlay {
    background: #000;
    height: 100%;
    width: 100%;
    position: absolute;
    opacity: 0.3;
    transition: all 0.3s;
}

.category_item img {
    width: 100%;
    transition: all .3s;
}

.category_text {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category_item:hover img {
    transform: scale(1.1);
}

.category_text .cate_name {
    text-align: center;
}

.category_text .cate_name h4 {
    text-transform: uppercase;
    color: var(--text-white);
    font-size: 35px;
    font-weight: 600;
}

.category_text .cate_name a {
    color: var(--text-white);
    font-size: 22px;
    font-weight: 500;
    border-bottom: 2px solid #fff;
    padding: 0 0 5px 0;
}


/* -----------------------------------------------
            4. Best Seller
-------------------------------------------------*/
.new_section {
    margin: 80px 0 0 0;
}

.section_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 30px 0;
}

.section_title .title {
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
}

.section_title .view_more a {
    color: var(--secondary-color);
    font-weight: 500;
}

.section_title .view_more a span {
    display: inline-block;
    vertical-align: middle;
}


.demo {
    padding: 45px 0
}

.product-grid2 {
    position: relative
}

.product-grid2 .product-image2 {
    overflow: hidden;
    position: relative
}

.product-grid2 .product-image2 a {
    display: block
}

.product-grid2 .product-image2 img {
    width: 100%;
    height: auto
}

.product-image2 .pic-1 {
    opacity: 1;
    transition: all .5s
}

.product-grid2:hover .product-image2 .pic-1 {
    opacity: 0
}

.product-image2 .pic-2 {
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .5s
}

.product-grid2:hover .product-image2 .pic-2 {
    opacity: 1
}

.product-grid2 .social {
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: 50px;
    right: 25px;
    z-index: 1
}

.product-grid2 .social li {
    margin: 0 0 10px;
    display: block;
    transform: translateX(100px);
    transition: all .5s
}

.product-grid2:hover .social li {
    transform: translateX(0)
}

.product-grid2:hover .social li:nth-child(2) {
    transition-delay: .15s
}

.product-grid2:hover .social li:nth-child(3) {
    transition-delay: .25s
}

.product-grid2 .social li a {
    color: var(--primary-color);
    background-color: #fff;
    font-size: 17px;
    line-height: 45px;
    text-align: center;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: block;
    transition: all .3s ease 0s
}

.product-grid2 .social li a:hover {
    color: #fff;
    background-color: var(--secondary-color);
    /* box-shadow: 0 0 10px rgba(0, 0, 0, .5) */
}

.product-grid2 .social li a:after, .product-grid2 .social li a:before {
    content: attr(data-tip);
    color: #fff;
    background-color: #000;
    font-size: 12px;
    line-height: 22px;
    border-radius: 3px;
    padding: 0 5px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    top: -30px
}

.product-grid2 .social li a:after {
    content: '';
    height: 15px;
    width: 15px;
    border-radius: 0;
    transform: translateX(-50%) rotate(45deg);
    top: -22px;
    z-index: -1
}

.product-grid2 .social li a:hover:after, .product-grid2 .social li a:hover:before {
    opacity: 1
}

.product-grid2 .add-to-cart {
    color: #fff;
    background-color: #000;
    font-size: 15px;
    text-align: center;
    width: 100%;
    padding: 10px 0;
    display: block;
    position: absolute;
    left: 0;
    bottom: -100%;
    transition: all .3s
}

.product-grid2 .add-to-cart:hover {
    background-color: var(--secondary-color);
    text-decoration: none
}

.product-grid2:hover .add-to-cart {
    bottom: 0
}

.product-grid2 .product-new-label {
    background-color: var(--secondary-color);
    color: #fff;
    font-size: 17px;
    padding: 5px 10px;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .3s
}

.product-grid2:hover .product-new-label {
    opacity: 0
}

.product-grid2 .product-content {
    padding: 20px 10px;
    text-align: center
}

.product-grid2 .title {
    font-size: 17px;
    margin: 0 0 7px
}

.product-grid2 .title a {
    color: var(--text-black);
    font-size: 20px;
    font-weight: 500;
}

.product-grid2 .title a:hover {
    color: var
}

.product-grid2 .price {
    color: var(--secondary-color);
    font-size: 17px;
    font-weight: 600;
}

@media screen and (max-width:990px) {
    .product-grid2 {
        margin-bottom: 30px
    }
}




/* -----------------------------------------------
            5. perfume Collection
-------------------------------------------------*/

.collection_image {
    margin: 0 50px;
}

.collection_list .slick-slide {
    margin: 0 10px;
}

.collection_text {
    padding-left: 30px;
}

.collection_text h4 {
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0 0 10px 0;
}

.collection_text p {
    font-size: 18px;
    color: #6A6868;
    padding-right: 23%;
    margin: 0 0 30px 0;
}

.collection_text a {
    background-color: var(--primary-color);
    border-radius: 0;
    color: var(--text-white);
    padding: 8px 30px;
    transition: all 0.3s ease;
}

.collection_text a:hover {
    background-color: var(--secondary-color);
    color: var(--text-white);
}

/* -----------------------------------------------
            6. New Arrivals
-------------------------------------------------*/
.new_arrivals_area {
    background-color: #f2f2f2;
    padding: 70px 0;
}

.new_arrivals_area .new_arrivals_list .title h4 {
    text-align: center;
    text-transform: uppercase;
    font-size: 34px;
    font-weight: 500;
    margin: 0 0 30px 0;
}

.owl-nav {
    position: absolute;
    top: 33%;
    width: 100%;
}

.owl-nav .owl-prev {
    position: absolute;
    left: -4%;
}

.owl-nav .owl-next {
    position: absolute;
    right: -4%;
}

.owl-nav .owl-next,
.owl-nav .owl-prev {
    width: 35px;
    height: 35px;
    background-color: var(--primary-color) !important;
    transition: 0.4s ease all;
}

.owl-nav .owl-next span,
.owl-nav .owl-prev span {
    color: var(--text-white) !important;
    font-size: 28px;
}

.owl-nav .owl-next:hover,
.owl-nav .owl-prev:hover {
    background-color: var(--secondary-color) !important;
}


/* -----------------------------------------------
            7. facility
-------------------------------------------------*/
.facility_item {
    text-align: center
}

.facility_item .icon {
    margin: 20px;
}

.facility_item .icon img {
    width: 70px;
    height: 70px;
}

.facility_item .title h5 {
    font-size: 18px;
    font-weight: 600;
}

.facility_item .desc p {
    font-size: 16px;
    line-height: 20px;
    color: #6A6868;
    padding: 0 20px;
}


/* -----------------------------------------------
            8. Testimonial
-------------------------------------------------*/
.testimonial_section .title {
    text-align: center;
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 600;
    margin: 0 0 30px 0;
}

.testimonia_slider .client_review {
    border: 1px solid #e6e6e6;
    background: #ffff;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    padding: 30px;
}

.testimonia_slider .slick-slide {
    margin: 0 15px;
}

.testimonia_slider .client_review .rating {
    margin: 0 0 20px 0;
}

.testimonia_slider .client_review .rating i {
    color: var(--secondary-color);
}

.testimonia_slider .client_review .review {
    margin: 0 0 40px 0;
}

.testimonia_slider .client_review .customer {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonia_slider .client_review .customer .product_img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}


/* -----------------------------------------------
            9. Footer
-------------------------------------------------*/
.footer_area {
    background: var(--primary-color);
    padding: 60px 0 0 0;
}

.footer_details .footer_logo {
    margin: 0 0 20px 0;
}

.footer_details .footer_logo img {
    width: 150px;
}

.footer_details .footer_desc p {
    color: #fff;
    font-size: 14px;
    margin: 0 0 30px 0;
}

.newsletter .form-label {
    color: var(--text-white);
    font-weight: 500;
}

.send_btn {
    position: relative;
}

.send_btn .btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    border-radius: 0;
    padding: 0 20px;
    background: var(--secondary-color);
    border: none;
    outline: none;
}

.send_btn .btn i {
    font-size: 24px;
    line-height: 24px;
}

.footer_details .footer_title {
    margin: 0 0 28px 0;
}

.center_div {
    padding-left: 50%;
}

.footer_details .footer_title h3 {
    color: var(--text-white);
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: left;
}

.footer_details .footer_link ul li {
    padding: 0 0 22px 0;
}

.footer_details .footer_link ul li a {
    color: #dadada;
}

.footer_bottom {
    border-top: 1px solid #fff;
    padding: 20px 0;
    margin: 10px 0 0 0;
}

.footer_bottom .copyright_line ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.footer_bottom .copyright_line ul li p {
    color: var(--text-white);
}

.footer_bottom .copyright_line ul li a {
    color: var(--text-white);
    padding-right: 15px;
    font-size: 20px;
}

.footer_bottom .copyright_line ul li a:last-child {
    padding: 0;
}


/* -----------------------------------------------
            10. About us page
-------------------------------------------------*/
.breadcumb_area {

    background-image: url(../image/breadcumb.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.brekground_overlay {
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.7);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.breadcumb_area .breadcumb_content {
    padding: 160px 0 160px;
    z-index: 10;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.breadcumb_area .breadcumb_content .breadcumb_title {
    color: var(--text-white);
    text-transform: uppercase;
    font-size: 48px;
    font-weight: 600;
}

.breadcumb_area .breadcumb_content .breadcumb_link ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcumb_area .breadcumb_content .breadcumb_link ul li,
.breadcumb_area .breadcumb_content .breadcumb_link ul li a {
    font-size: 20px;
    color: var(--text-white);
}

.page_active {
    color: var(--secondary-color) !important
}

.compnay_about .about_img img {
    width: 100%;
}


.about_details .small_title {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 26px;
    padding: 0 0 14px 0;
}

.about_details .title h3 {
    text-transform: uppercase;
    font-size: 38px;
    font-weight: 600;
    margin: 0 0 26px 0;
}

.about_details p {
    color: #888;
    font-weight: 500;
    margin: 0 0 20px 0;
}

.about_details p:last-child {
    margin: 0;
}

/* ------------- counter ------------------- */
.counter_area {
    background-color: var(--primary-color);
    padding: 70px 0;
}

.countdown_item {
    text-align: center;
}

.countdown_item .counter,
.countdown_item .count_down span {
    font-size: 60px;
    color: #F5821F;
    font-weight: 600;
}


.countdown_item .count_down {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 0 40px 0;
}


.countdown_item .countdown_title {
    color: var(--text-white);
    font-size: 24px;
}


/* -----------------------------------------------
            11. Product Page
-------------------------------------------------*/
.filter_area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 30px 0;
    cursor: pointer;
}

.filter_menu_title {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #000;
    padding: 9px 26px 6px 26px;
}

.filter_menu_title span i {
    font-size: 20px;
}

.filter_menu_title h4 {
    margin: 0 0 5px 0;
    font-size: 20px;
}

#productfilter {
    transition: 0.4s ease-in-out all;
}


/* -------- product filter ------------ */

.product_filter_sec {
    margin: 0 0 40px 0;
}

.product_filter_sec .filter_title {
    margin: 0 0 30px 0;
}

.product_filter_sec .filter_title h4 {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    border-left: 2px solid #000;
    padding-left: 10px;
    position: relative;
}

.product_filter_sec .filter_title h4::after {
    content: '';
    background: #0000;
    position: absolute;
    right: 0;
    bottom: 0;
    border: 1px solid #C9C8C8;
    width: 71%;
}

.form-check-label {
    font-size: 18px;
    padding-left: 8px;
}

.filter_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 20px 0;
}

#productfilter ::-webkit-scrollbar {
    width: 5px;
}

#productfilter ::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.offcanvas-header .btn-close {
    background-color: #E8E8E8;
    border-radius: 0;
}

.offcanvas-header .btn-close:focus {
    box-shadow: none;
}


/* -----------------------------------------------
            12. Product Detail Page
-------------------------------------------------*/
.product_information .single_product_view .main_image {
    margin: 0 0 10px 0;
}

.product_information .single_product_view .main_image img,
.product_information .single_product_view .main_image video {
    max-width: 636px;
    transition: opacity 0.3s ease-in-out;
}

.product_information .single_product_view .thubnail_image {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product_information .single_product_view .thubnail_image .thub_img img,
.product_information .single_product_view .thubnail_image .thub_img video {
    max-width: 127px;
    max-height: 127px;
    object-fit: cover;
    cursor: pointer;
}

.product_information .single_product_view .thubnail_image .thub_img .active {
    border: 2px solid #dbd9d9 !important;
}

/* --- single product deatail */

.single_product_detail .product_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 15px 0;
}

.single_product_detail .product_title h3 {
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 600;
    margin: 0;
}

.single_product_detail .product_wishlist a {
    width: 50px;
    height: 50px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    font-size: 20px;
    color: var(--text-black);
}

.single_product_detail .product_price h3 {
    font-size: 36px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0 0 20px 0;
}

.single_product_detail .product_rating {
    border-bottom: 1px solid #ddd;
    padding: 0 0 30px 0;
    margin: 0 0 30px 0;
}

.single_product_detail .product_rating .rating span i {
    color: var(--rating);
    font-size: 20px;
}

.single_product_detail .product_rating .rating .total_rating {
    padding-left: 8px;
    font-size: 20px;
}

.single_product_detail .product_description p {
    color: #727070;
    line-height: 30px;
    margin: 0 0 30px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product_size{
    margin: 0 0 30px 0;
}

.bottle_size .size_box span {
    border: 2px solid #ddd;
    padding: 7px 30px;
    display: inline-block;

}

.product_quantity {
    margin: 0 0 20px 0;
}

.product_quantity h3,
.product_size h3 {
    font-size: 18px;
}

.product_quantity .cart_quantity {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product_quantity .cart_quantity .quantity {
    border: 1px solid #ddd;
}

.product_quantity .cart_quantity .quantity button {
    font-size: 20px;
}

.product_quantity .cart_quantity .quantity .btn:hover {
    background: none;
    color: var(--text-black);
}

.product_quantity .cart_quantity .quantity button:focus {
    border: none;
}

.product_quantity .cart_quantity .quantity input {
    text-align: center;
    border: none;
    display: inline-block;
    vertical-align: middle;
    max-width: 80px;
    font-size: 20px;
    font-weight: 600;
}


.product_quantity .cart_quantity .cart_btn .btn {
    background: var(--primary-color);
    text-align: center;
    color: var(--text-white);
    border-radius: 0;
    height: 100%;
    text-transform: uppercase;
    padding: 11px 90px;
    width: 100%;
    font-weight: 500;
    font-size: 18px;
}

.product_quantity .cart_quantity .cart_btn .btn span i {
    font-size: 18px;
    margin-right: 10px;
}


.collapsibles-wrapper {
    border-bottom: 1px solid #CFCBCB;
}

.collapsibles-wrapper .collapsible-trigger-btn {
    background: none;
    width: 100%;
    font-size: 17px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.collapsibles-wrapper .collapsible-trigger-btn::after {
    content: "+";
    font-size: 30px;
    font-weight: 400;
    position: absolute;
    right: 0;
}

.collapsibles-wrapper.collapsible-tab__open .collapsible-trigger-btn::after {
    content: "-";
    font-size: 40px;
}

.collapsibles-wrapper .collapsible-content {
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s linear;
}

.collapsibles-wrapper.collapsible-tab__open .collapsible-content {
    visibility: visible;
    opacity: 1;
}

.collapsibles-wrapper .collapsible-content__inner {
    padding-bottom: 20px;
}

.collapsibles-wrapper .collapsible-content__inner p {
    font-size: 16px;
    line-height: 24px;
}

/* ------- product Review--------- */

.review_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 30px 0;
}

.review_title .rating_count .total_rating span i {
    color: var(--rating);
}

.review_title .rating_count .total_rating h6 {
    font-size: 14px;
    color: #777;
}

.review_title .rating_title h3 {
    font-weight: 600;
    font-size: 32px;
}

.review_title .rating_write h4 {
    font-size: 20px;
    cursor: pointer;
}


#addreview {
    transition: 0.4s ease-in-out all;
}

.review span.active,
.review span:hover,
.review span:hover~span {
    color: var(--rating);
}

.reletedproduct_title {
    text-align: center;
}

.reletedproduct_title h4 {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 500;
    margin: 0 0 30px 0;
}

/* -----------------------------------------------
            13. Wishlist and cart Page
-------------------------------------------------*/
.wishlist_table .table_product .table th,
.cart_table_area .table th {
    border-bottom: 0;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    color: #111;
    padding: 15px 20px;
    border-left: 1px solid #dee2e6;
}

.table td, .table th {
    border-top: 1px solid #dee2e6;
}

.wishlist_table .table_product .table .product_thub,
.cart_table_area .table .product_thub img {
    width: 120px;
}

.wishlist_table .table_product .table .prod_title a,
.cart_table_area .table .prod_title a {
    font-size: 20px;
    color: var(--primary-color);
    line-height: 1.6;
    font-weight: 500;
}

.wishlist_table .table_product .table .wishlist_price p,
.cart_table_area .table .wishlist_price p {
    font-size: 20px;
    text-align: center;
}


.wishlist_table .table_product .table .prod_btn a {
    transition: all .3s ease;
    width: 210px;
    height: 55px;
    font-size: 16px;
    background: #111;
    justify-content: center;
    text-transform: uppercase;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-align-items: center;
    -ms-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    transition: .3s;
    text-align: center;
    cursor: pointer;
    border-radius: 0;
    margin: auto;
}


.wishlist_table .table_product .table .prod_remove a {
    text-align: center;
    font-size: 20px;
    color: var(--primary-color);
}


.shopping_btn a {
    background: var(--primary-color);
    padding: 13px 50px;
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 0;
    color: var(--text-white);
    transition: 0.4s ease all;
}

.shopping_btn a:hover {
    background: none;
    border: 1px solid var(--primary-color);
    color: var(--text-black);
}

.quantity_update {
    width: 180px;
    margin: auto;
}

.bottom_btn {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    gap: 30px;
}

#couponcode {
    margin: 20px 0 0 0;
    transition: 0.4s ease all;
}

.code_input {
    position: relative;
    text-transform: uppercase;
}

.couponbtn {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 8px 20px;
    position: absolute;
    top: 4px;
    right: 4px;
}

.cart_bottom_btn .shopping_btn a {
    width: 100%;
    padding: 13px 0;
}

.cart_bottom_btn .shopping_btn .copuon_code_btn {
    width: auto;
    padding: 13px 40px;
}

.total_summary_tabel .table tr th {
    text-transform: uppercase;
    font-size: 26px;
    font-weight: 500;
    padding: 20px;

}

.total_summary_tabel .table tr td {
    padding: 20px;
    font-size: 26px;
    color: #848282;
}

.total_summary_tabel .table .Checkout_btn {
    padding: 10px 23px;
    background: var(--primary-color);
    color: var(--text-white);
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 0;
}

/* custome Dropdown */
.custome_dropdown .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ddd;
    padding: 12px 10px;
    cursor: pointer;
}

.dropdown_area {
    margin: 20px 0 0 0;
}

.select_fragrance .form-check{
    margin-left: 8px;
}


.select_fragrance .form-check-input{
width: 1.2em;
height: 1.2em;
}


.fragrance_list .card {
    border: none;
    border-radius: 0;
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    max-height: 400px;
    overflow: scroll;
    overflow-x: hidden;
}

.fragrance_list .select{
    background: #ececec;
}


.select_fragrance{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    /* margin: 0 0 10px 0; */
    border-bottom: 1px solid #ececec;
    cursor: pointer;
}

.select_fragrance:last-child{
    border: none;
    margin: 0;
}

.select_fragrance .fragrance_info img {
    width: 60px;
}

.select_fragrance .fragrance_info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.select_fragrance .fragrance_info  .fragrance_name h5{
    font-weight: 600;
}

.select_fragrance .fragrance_info  .fragrance_name p{
    color: var(--text-light);
    font-size: 14px;
}

/* -----------------------------------------------
            14. Checkout Page
-------------------------------------------------*/

.checkout_title h3 {
    margin: 0 0 30px 0;
}

.checkout_form .form-group {
    margin: 0 0 30px 0;
}

.payment_btn .btn {
    padding: 10px 100px;
    text-transform: uppercase;
    color: var(--text-white);
    background-color: var(--primary-color);
}

.checkout_product .product_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 26px 0;
}

.checkout_product .product_info .pro_img img {
    width: 80px;
}

.checkout_product .product_info .pro_img span {
    font-size: 18px;
    padding-left: 20px;
}

.checkout_product .check_details,
.checkout_product .fianl_total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 20px 0;
}

.checkout_product .check_details .name,
.checkout_product .check_details .price {
    font-size: 18px;
    font-weight: 400;
    color: #878787;
}

.checkout_product .fianl_total .total,
.checkout_product .fianl_total .totalprice {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-black);
    margin-top: 10px;
}

/* -----------------------------------------------
            15. Contact us
-------------------------------------------------*/
.contact_area .contact_info h3,
.contact_form h4 {
    font-size: 30px;
    padding: 0 0 18px 0;
}

.contact_area .contact_info p {
    margin: 0 0 30px 0;
}

.contact_detail {
    display: flex;
    gap: 20px;
}

.contact_detail .icon span i {
    font-size: 30px;
}

.contact_detail .info h5 {
    font-size: 24px;
    font-weight: 600;
    padding: 0 0 8px 0;
}

.contact_detail .info p {
    color: #828282;
    font-size: 20px;
}

.contact_form .form-group {
    margin: 0 0 20px 0;
}

.submit_btn .btn {
    color: var(--text-white);
    text-transform: uppercase;
    padding: 10px 80px;
    background-color: var(--primary-color);
}


/* -----------------------------------------------
            16. Login - Register Page
-------------------------------------------------*/
.login_form {
    border: 1px solid #6A6868;
    padding: 0 22px;
}

.login_form .form_logo {
    text-align: center;
    padding: 28px 22px;
    border-bottom: 1px solid #7A7474;
}

.login_form .form_logo img {
    width: 180px;
}

.login_form .form .form-title {
    text-align: center;
    padding: 25px 0;
}

.login_form .form .form-title h5 {
    font-size: 24px;
}

.login_form .form .user_login {
    padding: 0 14%;
}

.login_form .form .user_login .form-group {
    margin: 0 0 20px 0;
}

.login_form .form .user_login .form-group .form-control {
    height: 60px;
}

.login_form .form .user_login .form-group .forgot_password {
    text-align: end;
    padding: 6px 0 0 0;
}


.login_form .form .user_login .submit_btn .btn {
    width: 100%;
    padding: 16px 0;
    background: var(--primary-color);
    color: var(--text-white);
}

.login_form .form .last_line {
    text-align: center;
    padding: 30px 0;
}

.login_form .form .last_line a {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 18px;
}


/* -----------------------------------------------
            17. My account Page
-------------------------------------------------*/
.my_account_area .my_account_nav ul li {
    padding: 10px 15px;
    border: 1px solid #ddd;
    margin: 0 0 12px 0;
    background-color: var(--primary-color);
    color: var(--text-white);
}


.my_account_nav .nav .nav-link {
    text-align: start;
    border-radius: 0;
    margin: 0 0 10px 0;
    border: 1px solid #ddd;
    color: var(--text-black);
    transition: 0.3s ease-in-out all;
    padding: 12px 18px;
}

.my_account_nav .nav .active {
    background: var(--primary-color);
    color: var(--text-white);
}


.account_info .personal_info h5 {
    font-size: 28px;
    /* text-transform: uppercase; */
    padding: 0 0 20px 0;
}

.account_info .personal_info .form-group {
    margin: 0 0 30px 0;
}


.update_btn .btn {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 8px 60px;
}

.my_order .wishlist_table .table_product .table td {
    padding: 15px 20px;
}


.my_order .wishlist_table .table_product .table td .btn {
    background: var(--primary-color);
    color: var(--text-white);
}

.myaddress .address ul li {
    padding: 0 0 10px 0;
    color: var(--text-light);
}

.edit_address .btn {
    background: var(--primary-color);
    color: var(--text-white);
}

/* -----------------------------------------------
            18. privayc policy
-------------------------------------------------*/
.privacy h2 {
    font-size: 26px;
    padding: 0 0 10px 0;
    font-weight: 600;
}

.privacy p {
    padding: 0 0 10px 0;
    font-size: 18px;
    color: var(--text-light);
}

.privacy ul {
    padding-left: 30px;
    margin: 0 0 30px 0;
}

.privacy ul li {
    color: var(--text-light);
    padding: 0 0 10px 0;
    list-style-type: disc;
}

/* =--- bottom to top ===== */
#topBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

#topBtn:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}