* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.top-bar {
    background-color: #e9e9e9;
}

@media screen and (max-width: 576px) {
    .top-bar {
        background-color: #ffffff;
    }
}

.logo {
    height: 60px;
    width: 100px;
    cursor: pointer;
}

.search {
    width: 100%;
    height: 60px;
    border-radius: 6px;
    display: flex;
    justify-content: end;
    align-items: center;
    position: relative;
}

.search input {
    height: 30px;
    width: 60%;
    font-size: 16px;
    padding-left: 10px;
    border-radius: 6px;
    color: #646464;
    outline: #646464;
}

.search .fa-search {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    color: #646464;
}

.search .fa-shopping-cart {
    color: #646464;
    cursor: pointer;
}

.main-menu {
    position: relative
}

.main-menu .navbar {
    justify-content: center;
}

.main-menu .navbar-nav {
    gap: 20px;
    justify-content: center;
    width: 100%;
}

.main-menu .active>.nav-link {
    color: #f34d63 !important;
}

.main-menu .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #f34d63;
    color: #ffffff;
}

@media screen and (max-width: 576px) {
    .main-menu .navbar {
        justify-content: start;
        position: absolute;
        z-index: 100;
        left: -100%;
        top: 0;
        box-shadow: 1px 0px 0px 0px rgb(135 135 135 / 89%);
        height: 100dvh;
        align-items: start;
        width: 50%;
        transition: all 0.5s linear;
    }

    .main-menu .navbar-nav {
        flex-direction: column !important;
        justify-content: start;
        row-gap: 4px;
    }

    .main-menu .navbar.show {
        left: 0;
    }

    .main-menu .active>.nav-link {
        color: inherit !important;
    }

    .main-menu .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
        background-color: inherit;
        color: inherit;
    }

    .mobile-dropdown-menu {
        position: relative !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        left: 0 !important;
    }

    .mobile-dropdown-menu-show {
        display: block !important;
    }
}

.dropdown:hover>.dropdown-menu {
    display: block;
}

#submenu:hover>.dropdown-menu {
    display: block;
}

.submenu .dropdown-menu:hover {
    display: block;
}

@media screen and (max-width: 576px) {
    #submenu:active>.dropdown-menu {
        display: block;
    }

    .submenu .dropdown-menu:hover {
        display: block;
    }

}

.carousel .carousel-inner .carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .carousel .carousel-inner .carousel-item img {
        object-fit: unset;
        height: 300px;
    }
}

@media screen and (max-width: 576px){
    .carousel .carousel-inner .carousel-item img {
        height: 200px;
        object-fit: unset;
    }
}

/* Style for the image box */
.image-box {
    position: relative;
    /* Set the height as per your requirement */
    border: 1px solid #ccc;
    /* Add a border if desired */
    overflow: hidden;
    /* Hide overflow content */
    cursor: pointer;
}

/* Style for the image within the box */
.image-box img {
    width: 100%;
    /* Make the image fill the container */
    height: auto;
    /* Maintain aspect ratio */
    display: block;
    /* Remove extra space below image */
    transition: transform 1s;
    /* Add a smooth transition for zoom effect */
}

/* Style for the overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.199);
    /* Semi-transparent black overlay */
    display: none;
    /* Initially hidden */
    align-items: center;
    justify-content: center;
    color: #fff;
    /* Text color for overlay */
    font-size: 1.5em;
}

/* Hover effect - Zoom the image and display the overlay */
.image-box:hover img {
    transform: scale(1.2);
    /* Increase the scale on hover */
}

.image-box:hover .overlay {
    display: flex;
    /* Show the overlay on hover */
}

.just-landed-category {
    justify-content: center;
    overflow-y: auto;
    scrollbar-width: none;
    padding-left:10px;
    padding-right:10px;
}

.just-landed-category .navbar-nav {
    gap: 10px;
    padding-left:240px
}

.just-landed-category .navbar-nav .nav-item {
    cursor: pointer;
    text-wrap: nowrap;
    padding: 4px 12px;
}

.just-landed-category .navbar-nav .nav-item.active {
    border: 1px solid #cecece;
    border-radius: 20px;
}

@media screen and (max-width: 576px) {
    .just-landed-category {
        overflow: auto;
    }

    .just-landed-category::-webkit-scrollbar {
        display: none;
    }

    .just-landed-category .navbar-nav {
        gap: 30px;
        align-items: center;
    }
}

.owl-carousel-wrapper {
    position: relative;
    margin: 20px 0px;
}

.owl-carousel-wrapper .owl-carousel {
    overflow: auto;
    flex-wrap: nowrap;
    scroll-behavior: smooth;
}

.owl-carousel-wrapper .owl-carousel::-webkit-scrollbar {
    display: none;
}

/* For other browsers */
.scrollbar-hidden {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.owl-carousel-wrapper .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.owl-carousel-wrapper .owl-nav .owl-prev,
.owl-carousel-wrapper .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    outline: none;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.owl-carousel-wrapper .owl-nav .owl-prev {
    left: -10px;
}

.owl-carousel-wrapper .owl-nav .owl-next {
    right: -10px;
}

.owl-carousel-wrapper .owl-nav .owl-prev:hover,
.owl-carousel-wrapper .owl-nav .owl-next:hover {
    background-color: #f34d63;
    color: #ffffff;
}

.owl-carousel-wrapper .owl-nav .owl-prev:hover i,
.owl-carousel-wrapper .owl-nav .owl-next:hover i {
    color: #ffffff;
}

.owl-carousel-wrapper .owl-nav .owl-prev i,
.owl-carousel-wrapper .owl-nav .owl-next i {
    font-size: 30px;
}



.product-card {
    border: 1px solid #ddd;
    margin: 10px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    height: 420px;
    position: relative;
}

@media screen and (max-width:576px){
    .product-card{
        margin: 10px 0px;
    }
}

.product-card:hover {
    transform: scale(1.05);
}

.product-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin: 0px auto;
    cursor: pointer;
}

.product-card .overlay {
    width: 100px;
    height: auto;
    position: absolute;
    left: 26%;
    top: 17%;
    font-size: 18px;
    padding: 4px;
    background: #1e1e1ed9;
    display: none;
    cursor: pointer;
}

.product-card:hover>.overlay {
    display: block;
}


.product-card .card-body {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.product-card .product-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
}

.product-card .product-priceInfo {
    font-size: 14px;
    font-weight: 500;
    color: #f34d63;
}
.product-card .product-price strike {
    color: #333;
}

.product-card .card-body .size,
.product-card .card-body .color {
    list-style: none;
    margin: 0px;
    display: flex;
    justify-content: center;
    gap: 10px;
    color: #666;
}

.product-card .card-body .size li,
.product-card .card-body .color li {
    cursor: pointer;
}

.product-card .card-body .size li:hover {
    text-decoration: underline;
    color: #333;
}

.product-card .card-body .size li.active {
    text-decoration: underline;
    color: #333;
}

.product-card .card-body .color li {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 1px solid #ddd;
}

.product-card .card-body .color li:hover {
    border: 1px solid #333;
}

    .product-card .card-body .color li.active {
        border: 3px solid #8f8f8f;
    }

.product-card .card-body .color li.black {
    background-color: #000;
}

.product-card .card-body .color li.yellow {
    background-color: #fff;
}

.product-card .card-body .color li.red {
    background-color: red;
}

.product-card .card-body .color li.green {
    background-color: green;
}

.product-card .card-footer{
    background: none;
    border: none;
}

.hand-picked-collection-body {
    margin-top: -16px;
    z-index: 100;
    text-align: center;
}

.hand-picked-collection-body-title {
    font-size: 20px;
    font-weight: 300;
    color: #333;
    margin-bottom: 10px;
    display: inline-block;
    background-color: #ffffff;
    position: relative;
    z-index: 2;
    margin: 0px auto;
    padding: 12px 20px;
}

.hand-picked-collection-body-text {
    font-size: 14px;
    font-weight: 300;
    color: #333;
    margin-bottom: 10px;
}

.hand-picked-collection-body-button a {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
}

@media screen and (max-width: 576px) {
    .section-title {
        font-size: 20px
    }

}

footer{
    background: #333;
    padding: 40px 0px 20px;
    color: #fff;
}

footer .nav{
    margin-left: 0px;
}

footer .nav .nav-item{
    color: #fff;
    padding: 4px 0px;
    cursor: pointer;
}

footer .nav .nav-item .nav-link{
    color: #fff;
    cursor: pointer;
    display: inline!important;
    padding: 0;
}

.modal ul{
    padding-left: 1rem;
}

.size-filter{
    list-style: none;
}

#product-filter-sidebar{
    position: static;
    padding-top: 10px;
}

@media screen and (max-width: 576px){
    #product-filter-sidebar {
        position: fixed;
        z-index: 100;
        background: #fff;
        left: -100%;
        transition: all 0.5s linear;
    }
}

.product-view-modal-image{
    height: 300px;
    width: 100%;
}

.product-view-modal-image img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.product-view-modal .product-priceInfo {
    font-size: 22px;
    font-weight: 500;
    color: #f34d63;
}

.product-view-modal .product-priceInfo strike{
    color: #333;
}


.product-view-modal .size,
.product-view-modal .color {
    list-style: none;
    margin: 0px;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    color: #666;
    padding: 0;
}

.product-view-modal .size li,
.product-view-modal .color li {
    cursor: pointer;
}

.product-view-modal .size li:hover {
    text-decoration: underline;
    color: #333;
}

.product-view-modal .size li.active {
    text-decoration: underline;
    color: #333;
}

.product-view-modal .color li {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 1px solid #ddd;
}

.product-view-modal .color li:hover {
    border: 1px solid #333;
}

.product-view-modal .color li.active {
    border: 2px solid #333;
}

.cart-popup {
    background: #fff;
    position: absolute;
    max-height: 316px;
    height: auto;
    width: 300px;
    top: 38px;
    left: -20px;
    z-index: 2000;
    box-shadow: 0px 3px 6px 0px #404040;
    border-radius: 5px;
    padding: 8px 2px;
    display: none;
}

.cart-popup .product-list{
    max-height: 270px;
    overflow-y: auto;
}

.cart-popup .product-list::-webkit-scrollbar {
    display: none;
}

@media screen and (min-width: 577px){
    #cartIcon:hover ~ .cart-popup {
        display: block;
    }

    .cart-popup:hover {
        display: block;
    }
}

.mobile-cart{
    display: none;
}


#cartIcon .cart-badge {
    position: absolute;
    left: 16px;
    top: -10px;
    border-radius: 50%;
    height: 22Px;
    width: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:576px) {
    .cart-popup{
        display: none;
    }

    .mobile-cart {
        background: #fff;
        position: fixed;
        height: 100vh;
        width: 300px;
        top: 0px;
        right: -100%;
        z-index: 2000;
        box-shadow: 0px 5px 4px 0px #404040;
        padding: 30px 12px;
        display: block;
        transition: all 0.5s linear;
    }

    .mobile-cart .close-icon{
        position: absolute;
        top: 2px;
        right: 2px;
    }

    .mobile-cart.show {
        right: 0;
    }
}

.mobile-search{
    display: none;
}

@media screen and (max-width:576px) {
    .mobile-search {
        position: absolute;
        z-index: 1000;
        background: #f3f3f3;
        width: 100%;
        display: block;
        left: 0;
        padding: 8px 12px;
        display: none;
    }

    .mobile-search input{
        outline: none;
        border: none;
        background: none;
    }
}

.expense-note-overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.expense-note-form-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    width: 80%;
}

.expense-note-form-container .form-control {
    font-size: 14px;
}

.expense-note-form-container table th, .expense-note-form-container table td {
    padding: .50rem;
}


@media screen and (max-width:768px) {
    .expense-note-form-container {
        transform: translate(-50%, 0%);
        top: 0;
    }
}

@media screen and (max-width:576px) {

    .expense-note-form-container {
        transform: translate(-50%, 0%);
        width: 100%;
        top: 0;
    }
}


.ez-bkblue {
    background: #00bfff;
    color: #fff;
}
