.card1 {
    font-family: JETSansDigital, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;
    background-color: #fff;
    border-radius: 15px;
    border: none;
    position: relative;
    margin-bottom: 17px;
    box-shadow: 0 0.25rem 0.53125rem rgba(90, 97, 105, 0.12), 
                0 0 0.25rem rgba(90, 97, 105, 0.1); 
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
    overflow: hidden;
}

.card1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.card1:hover::before {
    background-color: rgba(0, 0, 0, 0.1); /* Slightly darken on hover */
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .card1 {
        border-radius: 0; /* Remove border radius */
        margin-bottom: 0px; /* Reduce margin */
        box-shadow: none; /* Remove shadow */
        border: none; /* Remove any existing border */
        border-top: 1px solid rgb(0,0,0,0.08); /* Thin border on top */
        border-bottom: 1px solid rgb(0,0,0,0.08); /* Thin border on top */

        /* border-bottom: 1px solid rgb(0,0,0,0.08); */
         /* Thin border on bottom */
    }
}



.card-content {
    position: relative;
    z-index: 1; /* Keep content above the overlay */
}

   .card-title{
    text-align: start;
    color: black;
    font-size: 16px;
    font-weight: 700 !important;
    font-family: JETSansDigital, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;
   }
   .singlproduct-description{
    color: #242e30;
    font-size: 16px;
    line-height: 24px;
   }
   .item-price{
    font-size: 14px;
    font-weight: 700;
    color: #242e30;
    line-height: 14px;
    font-family: JETSansDigital, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;

   }
   .l-bg-cherry {
    background: linear-gradient(to right, #ffffff, rgb(253 255 250)) !important;
   /* background: linear-gradient(to right, #b1abae, rgb(160, 156, 158)) !important; */
   color: black;
   }
   .l-bg-blue-dark {
   background: linear-gradient(to right, #5f6269, #4286f4) !important;
   color: #fff;
   }
   .l-bg-green-dark {
   background: linear-gradient(to right, #0a504a, #38ef7d) !important;
   color: #fff;
   }
   .l-bg-orange-dark {
   background: linear-gradient(to right, #a86008, #ffba56) !important;
   color: #fff;
   }
   .card .card-statistic-3 .card-icon-large .fas, .card .card-statistic-3 .card-icon-large .far, .card .card-statistic-3 .card-icon-large .fab, .card .card-statistic-3 .card-icon-large .fal {
   font-size: 110px;
   text-align: start;
   justify-content: center;
   }
   .card .card-statistic-3 .card-icon {
   text-align: center;
   line-height: 50px;
   margin-left: 15px;
   color: #000;
   position: absolute;
   right: -5px;
   top: 20px;
   opacity: 0.1;
   }
   .l-bg-cyan {
   background: linear-gradient(135deg, #289cf5, #84c0ec) !important;
   color: #fff;
   }
   .l-bg-green {
   background: linear-gradient(135deg, #23bdb8 0%, #43e794 100%) !important;
   color: #fff;
   }
   .l-bg-orange {
   background: linear-gradient(to right, #f9900e, #ffba56) !important;
   color: #fff;
   }
   .l-bg-cyan {
   background: linear-gradient(135deg, #289cf5, #84c0ec) !important;
   color: #fff;
   }
   /* section {
    padding: 1px 0 25px 0 !important;
} */


body {
    font-family: JETSansDigital, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;
}
 .font-primary{
    font-family: JETSansDigital, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif !important;
}

.list-group-horizontal .list-group-item {
   margin-right: 10px;
    padding: 10px 10px;
    background-color: transparent;
    border: none;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    font-family: JETSansDigital, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;

    transition: background-color 0.3s, color 0.3s, border-radius 0.3s;
}

.list-group-horizontal .list-group-item:hover {
   /* background-color: black !important;
   color: white; */
}

.list-group-horizontal .badge {
    background-color: #007bff;
    font-size: 1rem;
}


/* Styles for the category tags */
.list-group-horizontal .list-group-item {
    border-radius: 30px;
    margin-right: 10px;
    padding: 3px 11px;
    background-color: transparent;
    border: none;
    color: #333;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s, color 0.3s;
}

/* Black background for active tag */
.list-group-horizontal .list-group-item.active {
    background-color: black !important;
    color: white !important;
    border-radius: 30px !important;

}

/* Hover effect for tags */
.list-group-horizontal .list-group-item:hover {
    background-color: #f0f0f0;
    color: black;
}
/* Increase specificity or use !important to reset border radius */
.list-group-horizontal .list-group-item:first-child,
.list-group-horizontal .list-group-item:last-child {
    border-radius: 0 !important;
}

/* Ensure active first tag has rounded corners on the left */
.list-group-horizontal .list-group-item.active:first-child {
    border-top-left-radius: 30px !important;
    border-bottom-left-radius: 30px !important;

    border-top-right-radius: 30px !important;
    border-bottom-right-radius: 30px !important;
}

/* Ensure active last tag has rounded corners on the right */
.list-group-horizontal .list-group-item.active:last-child {
   border-top-left-radius: 30px !important;
    border-bottom-left-radius: 30px !important;

    border-top-right-radius: 30px !important;
    border-bottom-right-radius: 30px !important;
}
/* Scrollable container */
.scroll-container {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Scrollable list styling */
.scrollable-list {
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none; /* Hide scrollbar in Firefox */
}

.scrollable-list::-webkit-scrollbar {
    display: none; /* Hide scrollbar in Chrome, Safari, Edge */
}

/* Arrow buttons */
.scroll-left,
.scroll-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    font-size: 24px;
    background-color: #EBE9E8;
    border-radius: 50%;
    width: 30px;
    cursor: pointer;
    z-index: 10;
    font-weight: 100 !important;
    display: flex;
    align-items: center;
    justify-content: center;
   color: #000
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.scroll-left {
    left: 0;
}

.scroll-right {
    right: 0;
}

/* Hide arrows when not needed */
.scroll-container:hover .scroll-left,
.scroll-container:hover .scroll-right {
    visibility: visible;
}

/* Ensures smooth scroll behavior */
.scrollable-list {
    scroll-behavior: smooth;
    margin-left: 40px;
    margin-right: 38px;
}

/* Apply styles for screens smaller than 768px (mobile) */
@media (max-width: 768px) {
    .scrollable-list {
        margin-left: 0;
        margin-right: 0;
    }
}

.search-container {
    position: relative;
    width: 100%; /* Adjust width as needed */
    max-width: 100%; /* Adjust max-width as needed */
    margin-bottom: 15px; /* Add space below the search box */
}

.search-input {
    width: 100%;
    padding: 10px 15px 10px 40px; /* Add padding to the left for the search icon */
    border-radius: 30px;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    outline: none;
    background-color: white;
    color: black !important;
}

.search-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    font-size: 1.2rem;
}


 @media (max-width: 576px) {
    .d-sm-none {
        display: none ;
    }
} 
/* Large devices (lg): Show element on large screens */
/* @media (min-width: 992px) {
    .d-lg-block {
        display: block !important;
    }
} */

/* Make the search bar sticky */
/* Fixed search bar */

.fixed-parent {
    position: fixed;
    width: inherit;
    max-width: inherit;
    background-color: #FFFFFF;
    z-index: 10;
    border-radius: 10px;
    /* margin-left: -10px; */
    /* padding-right: 41px;  */
       /* top: 90px;  */
    /* Adjust based on header height */
}
@media (min-width: 768px) { /* Adjust breakpoint as needed */
    .fixed-parent {
        margin-left: -18px;

    }

}
@media (max-width: 768px) { /* Adjust breakpoint as needed */
    .fixed-parent {
        left: 2px;
        border-radius: 0px;
        /* border-bottom: 0.2px dotted gray; */
        border-bottom: 1px solid rgb(0,0,0,0.08); /* Thin border on top */

        padding-bottom: 10px;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Bottom shadow */

    }
}
.icon-circle {
    display: inline-flex;  /* Centers icon inside */
    align-items: center;
    justify-content: center;
    width: 111px;  /* Adjust size */
    height: 25px;
    border-radius: 50%; /* Makes it circular */
    /* background-color: #E6E5E3;  */
    /* Light gray background */
}

.fixed-search {
    position: fixed;
    top: 100;
    z-index: 1000;
    background-color: #fff;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    width: 300px;
}

.fixed-categories {
    position: fixed;
    top: 200px; /* Adjust based on the height of the search bar */
    z-index: 999;
    background-color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    width: 300px;
    overflow-x: auto;
}

.product-img {
    height: 60px;
    width: 80px;
    display: block;
    object-fit: cover; /* Ensures image maintains aspect ratio */
    border-radius: 5px;
    
}

/* Wrapper to position image and plus icon */
.image-wrapper {
    position: relative;
    display: inline-block;
}

/* Plus icon positioned exactly at the top-right corner of the image */
.plus-icon-wrapper {
    position: absolute;
    top: 5px;
    right: 0;
    transform: translate(50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    border: 0.5px solid #4e4b4b;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
.no-image {
    position: relative;
    height: 40px; /* Same height as the image */
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Aligns content to the top */
    padding-top: 5px; /* Adds space from the top */
}

/* Centered Plus Icon for No-Image Case */
.no-image .plus-icon-wrapper {
    position: absolute;
    top: 0; /* Adjust this to move it higher or lower */
    left: 50%;
    transform: translateX(-50%);
}

/* Plus icon for items without an image */
/* .no-image .plus-icon-wrapper {
    position: static;
    transform: none;
    margin-top: 10px;
} */

/* Plus icon styling */
.plus-icon {
    font-size: 10px;
    color: #4e4b4b;
    font-weight: bold;
    transition: color 0.3s ease;
}

/* Hover effect */
.plus-icon-wrapper:hover {
    background-color: #000;
    /* transform: translate(50%, -50%) scale(1.1); */
}

.no-image .plus-icon-wrapper:hover {
    /* transform: scale(1.1); */
}

.plus-icon-wrapper:hover .plus-icon {
    color: #fff;
}
.offer-box {
    background: #fffbeb;
    border-left: 5px solid #ffa726;
    padding: 12px 16px;
    border-radius: 6px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    display: inline-block;
    margin-bottom: 10px;
}

.offer-highlight {
    color: #e65100;
    font-weight: bold;
}

.offer-quantity {
    color: #d84315;
    font-weight: bold;
}

.offer-product {
    color: #ff7043;
    font-weight: bold;
}

.offer-and {
    color: #757575;
    font-style: italic;
}

.offer-price {
    color: #1b5e20;
    font-weight: bold;
    font-size: 18px;
}
