* {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

.font-rock {
    font-family: "Raleway", sans-serif;
    font-style: normal;
    font-weight: 500;
    color: black;
}

@media (max-width: 428px) {
    .fs-sm-1 {
        font-size: 1rem !important;
    }
}

.form-control {
    border-color: rgb(134 119 114 / 42%) !important;
}

.w-10 {
    max-width: 10% !important;
}

.border-bottom-2 {
    border-bottom: 2px solid rgb(134 119 114 / 42%) !important;
}

.border-block-2 {
    border-block: 2px solid rgb(134 119 114 / 42%) !important;
}

.border-right-5 {
    border-right: 5px solid rgb(134 119 114 / 42%) !important;
}

.cursor {
    cursor: pointer !important;
}

.bg-pink {
    background-color: rgb(202, 105, 124) !important;
}

.w-20 {
    width: 20% !important;
}

.fs-7 {
    font-size: 1.1rem !important;
}

.fs-8 {
    font-size: .8rem !important;
}

.fs-9 {
    font-size: .6rem !important;
}

.border-secondary {
    border: 1px solid rgb(238 229 225) !important;
}

.text-italic {
    font-style: italic !important;
}

/* Pop up */
/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
    transition: opacity 0.3s ease;
}

/* Popup */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 20;
    /* padding: 20px; */
    width: 90%;
    max-width: 400px;
    transition: all 0.3s ease;
    /* border-radius: 10px; */
    opacity: 0;
}

.popup-content {
    text-align: center;
}

.popup-content button {
    /* margin-top: 10px; */
    /* padding: 10px 10px; */
    /* background-color: #b79b88; */
    /* border: none;
    color: white;
    cursor: pointer;
    border-radius: 5px; */
}

.popup-content button:hover {
    /* background-color: #a4826e; */
    color: white !important;
}

.popup.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.d-none {
    display: none;
}

.close-popup {
    position: absolute;
    top: -15px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 40px;
    cursor: pointer;
}

.close-popup:hover {
    color: red;
}

.pop-input-icon {
    position: absolute;
    top: 18px;
    right: 10px;
    cursor: pointer;
}

.bg-blue {
    background-color: #0000ffcc !important;
}

.bg-red {
    background-color: #ff0000bd !important;
}

/* Pop up */
/* Header Top */
.search-input {
    border: 2px solid rgb(134, 119, 114) !important;
}

/* Header Top */
/* Navbar */
.nav-item a {
    text-decoration: none;
    color: black !important;
    font-weight: bold !important;
    font-size: 1.1rem;
}

.navbar-toggler-icon {
    /* background-color: #6c757d; */
    /* Adjust icon color */
    width: 30px;
    height: 3px;
    display: block;
    position: relative;
    border: none !important;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    /* background-color: #6c757d; */
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

.nav-link:hover {
    color: #000;
    /* Highlight links on hover */
}

.header {
    font-family: 'Arial', sans-serif;
    background: #f9f9f9;
}

@media (max-width: 428px) {
    .navbar-brand img {
        max-width: 80% !important;
    }
}

/* Navbar */
/* Hero */
.home-hero {
    background: url(../images/home-hero-bg.jpg) no-repeat center;
    background-size: cover;
}

@media (max-width:428px) {
    .home-hero-left h3 {
        font-size: 1rem !important;
    }

    .home-hero-left button {
        font-size: .6rem !important;
    }
}

.carousel-indicators button {
    background-color: grey !important;
    /* Sets the default color for dots */
    border: none !important;
    /* Removes default border */
}

.carousel-indicators .active {
    background-color: rgb(134, 119, 114) !important;
    /* Sets the color for the active dot */
}

/* Hero */
/* Home Category */
.category-card {
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.category-card img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.category-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.category-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.category-card h5 {
    text-align: center;
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.category-card:hover h5 {
    color: #ff5722;
    /* Optional: Highlight text on hover */
}

/* Home Category */

/* Home Carousel */
.recommended-products {
    text-align: center;
    /* background-color: #e3d9cf; */
    padding: 20px 0;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #000;
    font-weight: bold;
}

.product-carousel .product-card {
    background: #fff;
    border-radius: 8px;
    /* padding: 15px; */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    height: 480px;
    position: relative;
}

.product-carousel .product-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.product-carousel .product-card h5 {
    font-size: 1.1rem;
    color: #000;
    margin: 10px 0;
}

.product-carousel .product-card p {
    font-size: 1rem;
    color: #333;
    margin: 10px 0;
}

.product-carousel .product-card .add-to-cart {
    background-color: #9c786c;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.product-carousel .product-card .add-to-cart:hover {
    background-color: #7a574e;
}

.product-carousel .product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product-carousel .product-card:hover img {
    transform: scale(1);
}

.owl-prev {
    left: 10px;
}

.owl-next {
    right: 10px;
}

.owl-prev:hover,
.owl-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.owl-carousel {
    position: relative;
}

.custom-nav-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ddd;
    /* Black with opacity */
    color: #7a574e;
    /* White text color */
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.custom-nav-prev {
    left: -80px;
    /* Adjust as needed */
}

.custom-nav-next {
    right: -80px;
    /* Adjust as needed */
}

.custom-nav-arrow:hover {
    background-color: white;
    /* Darker on hover */
}

.owl-nav {
    display: block !important;
}

@media (max-width: 768px) {
    .custom-nav-prev {
        left: -55px;
        /* Adjust as needed */
    }

    .custom-nav-next {
        right: -50px;
        /* Adjust as needed */
    }
}

@media (max-width: 428px) {
    .custom-nav-prev {
        left: -39px;
        /* Adjust as needed */
    }

    .custom-nav-next {
        right: -50px;
        /* Adjust as needed */
    }

    .product-card-content {
        padding: 0 !important;
    }
}

.product-fav {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 1.2rem;
    z-index: 11;
    cursor: pointer;
    background: white;
    padding: 1px 7px;
    /* border-radius: 50% */
}

.product-fav1 {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 1.2rem;
    z-index: 11;
    cursor: pointer;
    background: white;
    padding: 1px 7px;
    /* border-radius: 50% */
}
/* Home Carousel */
/* Home Join */
.join-icon {
    top: 18px;
    right: 18px;
}

/* Home Join */
/* About Page */
.category-card img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    
}

.category-card {
    min-width: 120px;
    /* Adjust width to fit cards neatly */
    max-width: 12px;
    /* Adjust this if you want */
}

/* About Page */
/* Product Pages */
.product-card {
    border: 1px solid #ddd;
    /* padding: 15px; */
    border-radius: 8px;
    transition: transform 0.2s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.original-price {
    color: #d9534f;
}

.product-discount {
    text-decoration: line-through;
    color: #999;
}

.pagination {
    justify-content: center;
}

/* Initially hide the filter section on small and medium screens */
@media (max-width: 992px) {
    #filter-section {
        display: none;
    }

    /* Add styling for the overlay */
    .filter-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: none;
        z-index: 999;
    }

    /* Animate the filter section */
    .filter-section.show {
        display: block;
        animation: slideIn 0.5s ease-out;
    }

    /* Animation for filter section */
    @keyframes slideIn {
        from {
            transform: translateX(-100%);
        }

        to {
            transform: translateX(0);
        }
    }
}

#filter-overlay {
    display: none;
}

.filter-header,
.filter-button-container {
    display: none;
    /* Hide these by default on medium and small screens */
}



.page-item {
    color: black !important;
    margin-right: 10px;
}

.pagination {
    justify-content: end;
}

.dropdown-container {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

.dropdown-header {
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-toggle-icon {
    font-size: 14px;
    transform: rotate(0deg);
    transition: transform 0.3s ease-in-out;
}

.dropdown-header.open .dropdown-toggle-icon {
    transform: rotate(180deg);
}

.dropdown-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.dropdown-list.open {
    padding: 10px;
    max-height: 390px;

    /* Adjust based on content */
}

.dropdown-list.open li {
    margin-bottom: 3px;
}

.price-range-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-values {
    display: flex;
    justify-content: space-between;
}

.form-range {
    width: 100%;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 5px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
}

input[type="range"]:focus {
    background: #888;
}

/* For Webkit browsers like Chrome, Safari, and Edge */
input[type="range"].form-range::-webkit-slider-thumb {
    background-color: grey;
    /* Change this to grey */
    border: 2px solid #888;
    /* Optional: adds a border */
    border-radius: 50%;
    /* Optional: makes the thumb circular */
    height: 20px;
    width: 20px;
    cursor: pointer;
}

/* For Firefox */
input[type="range"].form-range::-moz-range-thumb {
    background-color: grey;
    /* Change this to grey */
    border: 2px solid #888;
    /* Optional: adds a border */
    border-radius: 50%;
    /* Optional: makes the thumb circular */
    height: 20px;
    width: 20px;
    cursor: pointer;
}

/* For Internet Explorer */
input[type="range"].form-range::-ms-thumb {
    background-color: grey;
    /* Change this to grey */
    border: 2px solid #888;
    /* Optional: adds a border */
    border-radius: 50%;
    /* Optional: makes the thumb circular */
    height: 20px;
    width: 20px;
    cursor: pointer;
}

/* Product Pages */
/* Product Detials Page */
.image-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-image img {
    /* width: 300px; */
    height: auto;
    margin-bottom: 15px;
    transition: opacity 0.3s ease;
}

.thumbnail-images {
    display: flex;
    gap: 10px;
}

.thumbnail-images .thumbnail {
    width: 60px;
    height: auto;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s, transform 0.3s;
}

.thumbnail-images .thumbnail:hover {
    border-color: #000;
    transform: scale(1.1);
}

@media (max-width: 428px) {
    .pincode-input {
        width: 100% !important;
    }
}

@media (min-width: 429px) {
    .pincode-input {
        width: 50% !important;
    }
}

.home-description {
    border: 1px solid #ddd;

}

.tab-button {
    border: none;
    background: rgb(191, 178, 165) !important;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    color: white;
    margin-inline: 3px;
    font-size: 1.2rem;
}

.tab-button.active {
    background: none !important;
    /* border-bottom: 2px solid #000; */
    color: black !important;
}

.tab-content {
    border-top: none;
    padding: 20px;
    background-color: #fff;
}

@media (max-width: 428px) {
    .tab-button {
        font-size: .8rem !important;
    }
}

/* Product Detials Page */
/* My Details Page */
.list-group-item.active {
    color: black !important;
    font-weight: bold !important;
    background-color: white !important;
    border: none !important;
}

.list-group-item {
    border: none !important;
    padding-inline: 0px !important;
    cursor: pointer;
}

.remove-wish {
    cursor: pointer !important;
    border: 1px solid #000 !important;
    padding: 1px 5px !important;
}

.remove-wish:hover {
    background-color: #888 !important;
    color: white !important;
    border: none !important;
}

.wallet-credit {
    color: black !important;
    border: none !important;
}

.wallet-credit.active {
    font-weight: bold !important;
    border-bottom: 2px solid black !important;
}

/* My Details Page */