body {
    background-color: #f8f9fa;
}

.over-all-backgrounf {
    background-color: #ffc800;
    position: relative;
    z-index: 1; /* Ensures the content is above the ::before element */
}
.hover-backgrounf-color {
    background-color: #ffc800;
}

.product-in-cart {
    border: 2px solid #ffc800;
}

.location {
            display: inline-block;
            max-width: 300px; /* Adjust as needed */
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
.over-all-backgrounf::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    background-color: #f8f9fa; /* Adjust the color as needed */
    width: 100vw;
    transform: translateX(-50%);
    z-index: -1; /* Places the background behind the content */
    height: 100%; /* Ensure the height covers the entire parent */
}

.navbar {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1030;
    padding-bottom: 14px;
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav {
    align-items: center;
}

.nav-item {
    margin-left: 10px;
}

.category-buttons .btn {
    margin: 5px;
}

.product-card {
    margin: 20px 0;
}

.card img {
    height: 150px;
    object-fit: cover;
}

.custom-border-left-red {
    border-left: 1px solid red;
}

.custom-border-right-red {
    border-right: 1px solid red;
}

.full-screen-navbar {
    display: block;
}

.mobile-navbar {
    display: none;
}

.rounded-btn {
    border-radius: 25px; /* Adjust this value to increase/decrease roundness */
}

.btn-custom-color {
    background-color: #e5e5e5;
}

.btn-text-bold {
    font-weight: 600; /* Make text bold */
}

.slick-prev,
.slick-next {
    background-color: #ff6f61;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    z-index: 1000;
    color: white;
    border: none;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
}

.slick-prev {
    left: 10px;
}

.slick-next {
    right: 10px;
}

.slick-prev::before,
.slick-next::before {
    font-family: "slick";
    font-size: 20px;
    line-height: 40px;
    opacity: 1;
    color: white;
}

.pd {
    margin: 6px;
}

.button-container-overflow {
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    transition: all 1s ease;
    display: none;
}

.button-container::-webkit-scrollbar {
    display: none; /* Hides the scrollbar in WebKit browsers */
}

.button-container {
    transition: all 1s ease;
}

.end-line {
    height: 1px;
    background-image: linear-gradient(to right, transparent, rgb(202, 208, 223), transparent);
}

.product-p-style {
    height: 36px;
    font-weight: 400;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: center;
    color: rgb(0, 0, 0);
    font-size: 12px;
    width: 100%;
}

.p-underline {
    display: block;
    width: 100%;
    margin-top: 4px;
    height: 1px;
    background-color: rgb(238, 240, 242);
}

.image-container {
    position: relative;
    display: inline-block;
}

.heart-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px; /* Adjust size as needed */
    background: white; /* Optional: to ensure visibility */
    border-radius: 50%; /* Optional: to make the background circular */
    padding: 5px; /* Optional: to add some space around the icon */
}

.product-img {
    width: 100% !important;
    height: 223px !important;
    padding: 6px !important;
}

.sticky {
    width: 100%;
    position: sticky;
    top: 86px;
    z-index: 1000;
}

.sticky-border::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.5px;
    height: 0.5px;
    background-color: black; /* Adjust the color as needed */
    width: 100vw;
    transform: translateX(-50%);
    left: 50%;
}

.product-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s ease-in-out;
}

.product-overlay {
/*    position: absolute;*/
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5); /* Darken background for better text visibility */
    color: white;
    padding: 10px;
    text-align: left;
}

.overlay-product-name {
    font-size: 1.5rem;
    font-weight: bold;
}

.overlay-product-description {
    font-size: 1rem;
}
/* Make the footer sticky */
.sticky-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 998; /* Keep this lower than dropdown */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.dropdown-menu {
   
    z-index: 1029;
}


@media (max-width: 768px) {
    .modal-footer.sticky-footer {
        flex-direction: column; /* Stack items vertically */
        justify-content: center; /* Center items vertically */
        align-items: center; /* Center items horizontally */
    }

    .modal-footer .d-flex > div {
        width: 100%;
        text-align: center; /* Center text within each div */
        margin-bottom: 10px; /* Add spacing between buttons */
    }

    .modal-footer .d-flex > div:last-child {
        margin-bottom: 0; /* Remove margin from the last div */
    }
}

.modal-footer {
    border-top: 1px solid #ddd;
}

/* Add some padding for the sticky footer */
.modal-body {
    padding-bottom: 80px; /* Ensure there's space above the sticky footer */
}

.btn-text-bold {
    font-weight: bold;
}

@media (max-width: 600px) {
    .full-screen-navbar {
        display: none;
    }
}

@media (max-width: 500px) {
    .product-img {
        height: 160px !important;
    }

    .mobile-navbar {
        display: block;
    }

    .button-container {
        overflow-x: auto;
        white-space: nowrap;
        padding: 10px 0;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
    }

    .button-container .btn {
        display: inline-block;
        margin-right: 10px;
    }

    .footer {
        background-color: #f8f9fa;
        color: #333;
    }

    .footer h4,
    .footer h5 {
        font-weight: bold;
    }

    .footer .app-links img {
        max-width: 120px;
        margin-right: 10px;
    }

    .footer a {
        color: #333;
        transition: color 0.3s ease;
    }

    .footer a:hover {
        color: #007bff;
    }

    .footer hr {
        border-top: 1px solid #dee2e6;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .card.rounded-btn {
        padding-left: 2px;
        padding-right: 2px;
    }

    .card-title {
        max-width: 100%;
        display: inline-block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .col-6.col-sm-5.col-md-4.col-lg-3.mb-4 {
        padding-left: 2px;
        padding-right: 2px;
    }
}
.toast-center-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%; /* Initially off-screen */
    width: 350px;
    max-width: 100%; /* Ensure it doesn't exceed the screen width */
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto; /* Enable vertical scrolling */
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* When the cart is opened */
.cart-sidebar.open {
    right: 0; /* Slide the cart into view, fully on the right */
}


/* Hide the scrollbar */
.cart-sidebar::-webkit-scrollbar {
    width: 0px;
    background: transparent; /* Optional: hide the scrollbar background */
}

/* Customize the thumb if needed */
.cart-sidebar::-webkit-scrollbar-thumb {
    background: #000; /* Example: Change color of the scrollbar thumb */
    border-radius: 10px; /* Example: Round the scrollbar thumb */
}

.cart-body {
    flex-grow: 1;
    margin-top: 20px;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.cart-footer {
    position: relative;
    bottom: 0;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #ddd;
    margin-top: auto;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.cart-item {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.font-riffic-style {
    margin: 0px;
    font-family: inherit;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 0.15px;
    font-size: 0.875rem;
    color: rgb(241, 91, 37);
    align-self: flex-start;
}
.css-m10cuh {
    margin: 0.3rem 24px 0px 0px;
    font-family: inherit;
    font-weight: 700;
    font-size: 1.875rem;
    cursor: pointer;
}
.css-p-font {
    margin: 0px;
    font-family: inherit;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.15px;
    font-size: 1rem;
    color: rgb(241, 91, 37);
    align-self: flex-start;
}
.f-w-7{
    font-weight: 700;
}
        .tabs {
            display: flex;
            justify-content: space-between;
            border-bottom: 2px solid #000;
            margin-bottom: 20px;
            list-style: none;
            padding: 0;
        }
        .tab {
            flex: 1; /* Makes all tabs equal width */
            text-align: center;
            padding: 10px 0;
            cursor: pointer;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }
        .tab.active {
            border-bottom: 2px solid #000;
            font-weight: bold;
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        .profile-picture {
            position: relative;
            display: inline-block;
            margin-bottom: 20px;
        }
        .profile-picture img {
            border-radius: 50%;
            width: 100px;
            height: 100px;
            object-fit: cover;
        }
        .profile-picture .camera-icon {
            position: absolute;
            bottom: 5px;
            right: 5px;
            background: #000;
            color: #fff;
            border-radius: 50%;
            padding: 5px;
            cursor: pointer;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 5px;
        }
        .form-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
