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

body {
    font-family: 'Lato', "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.slider-shimmer {
    display: flex;
    gap: 10px;
    overflow: hidden;
}

.shimmer-box {
    width: 100%;
    height: 155px;
    background: linear-gradient(
        90deg,
        rgba(246, 247, 248, 0.8) 0%,
        rgba(237, 238, 241, 0.9) 20%,
        rgba(246, 247, 248, 0.8) 40%,
        rgba(246, 247, 248, 0.8) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite ease-in-out;
    flex: 1;
    border-radius: 8px;
    position: relative; /* Added for pseudo-element */
    overflow: hidden; /* Added for pseudo-element */
}

/* Enhanced shimmer animation */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    50% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Optional: Add subtle shine effect */
.shimmer-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255,255,255,0.3) 50%,
        transparent 100%
    );
    animation: shine 2s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
button.swal2-confirm.swal2-styled {
    background-color: #ae0014 !important;
}

.dark-mode .sticky-top {
    background-color: black !important;
    color: white !important;
}

.dark-mode {
    background-color: black !important;
    color: white !important;
}

.dark-mode .dark {
    color: white !important;
}

.dark-mode header {
    background-color: black !important;
    color: white !important;
}

.dark-mode footer {
    background-color: black !important;
    color: white !important;
}

.dark-mode span {
    color: rgb(255, 255, 255) !important;
}

.dark-mode .show-more {

    color: rgb(0, 0, 0) !important;
}

.dark-mode .offer_btn {
    background-color: #000;
    color: white !important;
    border: 1px solid white;
}

.dark-mode h6 {
    color: white !important;
}

.dark-mode h3 {
    color: black !important;
}

.dark-mode h4 {
    color: white !important;
}

.dark-mode p {
    color: white !important;
}

.dark-mode ul li a {
    color: white !important;
}

.dark-mode .trending-now {
    background-color: black !important;
    color: black !important;
}

.dark-mode .Input-form {
    background: #fff;
}

.dark-mode .Input-form::placeholder {
    background-color: black !important;
    color: black !important;
    border: 1px solid white;
}

.dark-mode .navbar-nav {
    background-color: black !important;
    color: white !important;
    border: 1px solid white;
}

.dark-mode a.login.btn {
    background-color: White !important;
    color: black !important;
}

.dark-mode .here-section-icon {
    color: #ffffff !important;
}

.dark-mode .fa-angle-down {
    color: #ffffff !important;
}

.dark-mode i {
    color: #d62424c2 !important;
}

.dark-mode .show-more a {
    background-color: White !important;
    color: black !important;
}

.dark-mode .detail-header {
    background-color: black !important;
    color: white !important;
}

.dark-mode .top-inner {
    background-color: black !important;
    color: white !important;
}

.dark-mode .top-inner h4 {
    color: #fff;
}

.dark-mode .restaurnt-title {
    color: #fff;
}

.dark-mode .delh-pick .nav-pills .nav-link {
    background-color: #f8d7da !important;
    color: black !important;
}

.dark-mode .restro-search form {
    background-color: #fff;
}

.dark-mode .restro_tab {
    background-color: #000;
}

.dark-mode div#v-pills-items .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
}

.dark-mode div#v-pills-items .nav-link {
    color: white;
}

.dark-mode .item-top-tittle {
    background-color: #000;
    color: white;
}

.dark-mode .Checkout-head a {
    color: #fff;
}

.dark-mode .vendor-name h4 {
    color: #fff;
}

.dark-mode .delivery-details {
    background-color: #000;
    color: #fff;
}

.dark-mode .title-ts h4 {
    color: #fff;
}

.dark-mode .right-sumamry {
    background-color: #000;
    color: #fff !important;
}

.dark-mode .modal-content {
    color: #000 !important;
}

.dark-mode .paymethod span {
    color: #000 !important;
}

/* Dark mode input text color */
.dark-mode input[type="search"] {
    /* color: white; */
    background-color: transparent;
}

.dark-mode input[type="search"]::placeholder {
    color: #fff;
}

.dark-mode ul#search-results {
    color: white;
}

.dark-mode #search-results .list-group-item {
    background-color: #000;
    color: white;
    border: 1px solid white;
}

.dark-mode .offcanvas-menu li a {
    background-color: #000;
    color: #fff;
}

.dark-mode .offcanvas-menu .dark-mode-btn {
    background-color: #000;
}

.dark-mode .offcanvas-menu .dark-mode-btn #darkModeToggle {
    color: white;
}




/* Page loader spener start here */

/* Loader CSS */
.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1000;
}

/* Loader Spinner */
.spinner {
    border: 8px solid #f3f3f3; /* Reduced border width */
    border-top: 6px solid #FF0000; /* Changed to red */
    border-radius: 50%;
    width: 50px; /* Slightly smaller */
    height: 50px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    animation: spin 1.5s linear infinite; /* Slightly faster */
}

/* Keyframes for spin animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Page loader spener end here */

/* Image loader container start here*/

/* Image loader container */


.dark-mode .show {
    background-color: #000000 !important;
}

.dark-mode .toast-header {
    background-color: #000000 !important;
}

.dark-mode .toast-header .btn-close {
    background-color: #fff !important;
}

.dark-mode .price-btn span {
    color: #000000 !important;
}
.dark-mode .price-btn:hover span {
    color: #fff !important;
}

.dark-mode .reset {
    background-color: #000000 !important;
}

.image-loader-container {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 10px;
}

/* Loader Spinner */
.image-loader {
    position: absolute;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    z-index: 1;
}

/* Image */
.image-loader-container img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease;
    object-fit: cover;
}

/* Show image with opacity when loaded */
[x-data] img:not([x-show="loading"]) {
    opacity: 1;
}

/* Keyframes for spin animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Image loader container end here*/


.detail-header {
    background-color: white;
    margin-bottom: 10px;
    z-index: 9999;
    padding: 0 25px;
}

.fixed {
    position: fixed;
    top: 0;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;

}

.lsg_item {
    display: flex;
    align-items: center;
    gap: 5px;
}


.cont_shop a {
    background-color: #ae0014;
    padding: 8px 25px;
    font-size: 20px;
    border-radius: 10px;
}

.cart_img_outer img {
    transform: scale(2);
    animation: moveImage 2s infinite ease-in-out;
    width: 180px;
    margin-bottom: 30px;
}

.cart-empty-container img {
    width: 60px !important;
}

@keyframes moveImage {
    0% {
        transform: scale(2) translateX(0);
    }

    50% {
        transform: scale(2) translateX(10px);
    }

    100% {
        transform: scale(2) translateX(0);
    }
}

.offcanvas-box img {
    width: 140px;
    height: auto;
}

.offcanvas-box {
    margin-left: 50px;
}

.navbar-toggler {
    margin-top: 6px;
}



ul.navbar-nav {
    border-radius: 50px;
    margin-left: 10px;
    margin-right: 7px;
}

.Header-form input:focus {
    border: none;
    background: none;
    box-shadow: none;
}

a.login.btn {
    margin-left: 20px;
    font-weight: 600;
    padding-top: 7px !important;
    background-color: #fde2e28a !important;
    min-width: 81px;
}

.Signup-btn {
    background: #ae0014;
    border: 1px solid #ae0014 !important;
    color: #fff;
    padding-top: 7px !important;
    white-space: nowrap;
    font-weight: 600;
    border-radius: 50px;
    margin-left: 10px;
    border: 1px solid #000;
}

.Signup-btn:hover {
    color: #fff;
}

.Header-form input {
    border: none;
    background: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 10px;
}


.left-nav {
    display: flex;
    align-items: center;
}

.addres-location {
    margin-left: 30px;
}

.addres-location a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    padding-left: 10px;
    font-weight: 500;
}

.All-store-all .slide-margin {
    margin: 0;
    position: relative;
    margin-bottom: 25px;
    padding: 0 12px;
}

.toggle-offcanvas .offcanvas-body {
    padding: 20px 0px;
}

.offcanvas-menu {
    padding: 0;
    margin-left: 10px;
}

.offcanvas-menu li {
    list-style-type: none;
    border-bottom: 1px solid #cccccc70;
}

.offcanvas-menu li i {
    color: #767171;
    font-size: 20px;
    margin-right: 15px;
}

.menu-section {
    margin-top: 10px;
}

/* sorry no closed image */


.closed_img {
    position: relative;
}

.closed_img img {
    display: block;
    width: 100%;
    height: auto;
}

.vendorClosedModal-para-time {
    width: 23rem;
    top: 74%;
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 20px;
    font-weight: 700;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    z-index: 1;
}

.slick-slide {
    transition: none !important;
}

.nav_cart_icon {
    color: #d62424c2 !important;
}

.move-left-right {
    position: relative;
    transition: transform 0.5s ease;
}

.move-left-right:hover {
    transform: translateX(20px);
}

.move-left-right-left:hover {
    transform: translateX(-20px);
}


.login-sec a.log {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #000;
    background: none;
    width: 80%;
    margin: 0 auto;
    padding: 12px 10px;
    border-radius: 10px;
    font-size: 18px;
    background-color: #e9e9e9;
    margin-top: 10px;
    transition: 0.3s ease;
}

.login-sec a.log:hover {
    background-color: #dbd7d7;
}

.bottom-line {
    padding: 20px 10px;
}

.bottom-line a {
    text-decoration: none;
    display: block;
    text-align: center;
    color: #000;
    font-size: 15px;
    padding: 5px 0px;
    font-weight: 500;
}

.donweload-app {
    display: flex;
    justify-content: center;
}

.donweload-app a {
    background: #f3f3f3;
    margin-right: 10px;
    padding: 8px 15px;
    border-radius: 50px;
}

.bootom-box {
    border-top: 1px solid #cccccc73;
    MARGIN-TOP: 35px;
    padding-top: 20px;
    text-align: center;
    color: #000;
}

.donweload-app i {
    font-size: 20px;
    padding-right: 7px;
}

.donweload-app i.fa-solid.fa-robot {
    font-size: 16px;
}

ul.offer-listing {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

ul.offer-listing li {
    list-style-type: none;
}

ul.offer-listing li a {
    align-items: center;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    background: #fff;
    margin-right: 10px;
    padding: 0 10px;
    border-radius: 50px;
}

.top-offers {
    padding: 5px;
    background: #f9f9f9;
}

ul.offer-listing li a p {
    margin: 0;
}

ul.offer-listing li a img {
    width: 50px;
}

img.gifts-img {
    width: 40px !important;
}

img.Retail-img {
    width: 42px !important;
}

.item-list {
    text-align: center;
}

.item-list img {
    width: 65px;
    height: 65px;
    margin: 0 auto;
}

.item-list img {
    transition: transform 0.3s ease;
}


.item-list img:hover {
    transform: rotate(-45deg);
}

.item-list span {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    font-family: "Lato", sans-serif !important;
    display: block;
}

.top-sections {
    padding: 10px 0;
}

.banner-section {
    padding: 10px 0;
}

.banner-section .card1 {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-section .card1 img {
    width: 100%;
    height: auto;
    max-height: 145px; 
    object-fit: contain;
    border-radius: 10px;
}


.slide-margin {
    margin: 0px 7px;
    position: relative;
}

.brand-section {
    position: relative;
    border-bottom: 1px solid #f5f1f1;
    margin-top: 10px;
}

.dark-mode .brand-section {
    border-bottom: none;
}

.brand-section h4 {
    color: #000;
    font-weight: 700;
    padding-left: 7px;
    margin-bottom: 15px;
}

.head-pro {
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.head-pro h6 {
    font-family: UberMoveText, system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #000000c9;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 2px;
    margin: 0;
    padding: 2px 0px;
    line-height: 24px;
    width: 100%;
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 185px;
}


.wishlist-card {
    color: #d62424c2;
    cursor: pointer;
    position: absolute;
    top: 14px;
    right: 12px;
    width: 31px;
    height: 21px;
    line-height: 24px;
    text-align: center;
    border-radius: 10px 12px 27px 28px;
    transition: background-color 0.3s, color 0.3s;
}

.heart-icon path {
    stroke: gray;
    stroke-width: 2;
    transition: stroke-width 0.3s ease;
  }
  
  .heart-icon:hover path {
    fill: #ae0014;
    stroke: none;
  }

  .heart-icon.active path {
    fill: #ae0014;
    stroke: none;
  }
  
  

.head-pro i {
    color: #fff;
    cursor: pointer;
    position: absolute;
    top: 13.5px;
    right: 12px;
    width: 28px;
    height: 22px;
    line-height: 24px;
    text-align: center;
    transition: all 0.3s ease;    
    font-size: 28px;   
}

.head-pro i:hover {
    color: red;
    transition: all 0.3s ease;
}
.head-pro  i.active {
    color: red;
    border-radius: 50%;
    padding: 10px;
    right: 21px;
    top: 3.5px;
    position: absolute;
    transition: all 0.3s ease;
}

.span {
    padding-right: 5px;
    color: #02060cbf;
}

.brand-section h4 img {
    width: 28px;
    margin-right: 8px;
}

.time {
    color: #02060cbf;
}

.delivery-alert {
    flex-wrap: nowrap;
    -moz-box-pack: start;
    justify-content: flex-start;
    width: 100%;
    -moz-box-align: center;
    align-items: center;
    display: flex;
    pointer-events: none;
}

.delivery-alert p {
    font-size: 14px;
    color: rgb(0, 0, 0);
    line-height: 20px;
    font-weight: normal;
    white-space: nowrap;
    pointer-events: none;
    margin: 0;
}

.delivery-alert p span {
    color: rgb(94, 94, 94);
    font-size: 14px;
    line-height: 20px;
    font-weight: normal;
    white-space: nowrap;
    pointer-events: none;
}

.trending-now {
    padding: 35px;
    border-radius: 10px;
    background: #fde2e28a;
    margin-top: 30px;
}

.store-head a {
    color: #ae0014;
    text-decoration: none;
    padding-right: 10px;
}

.pickup-restaurant-filter{
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 5px;
}

.filter-card ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.filter-card {
    padding: 15px 10px;
}

.filter-card ul li {
    background: #efefef;
    margin-right: 10px;
    padding: 5px 15px;
    border-radius: 50px;
    color: #000;
    list-style-type: none;
}

.filter-card ul li a select {
    background: none;
    border: none;
    font-weight: 700;
}

.filter-card ul li a {
    color: #161515;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.show-more {
    text-align: center;
    padding: 15px 8px;
}

.show-more a {
    color: #fff;
    background: #ae0014;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

footer.site-footer {
    border-top: 1px solid #e1dede73;
    padding: 30px 0px;
    background: #f9f9f9;
}

.botom-card ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.footer-widget ul li a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 15px;
}

.botom-card ul li {
    list-style: none;
    padding: 0 10px;
}

.footer-widget ul {
    padding: 0;
    margin: 0;
}


.botom-card ul li a {
    color: #000;
    font-size: 21px;
}

.right-botom ul li a {
    font-size: 14px;
    text-decoration: none;
    color: #333;
    padding: 0 15px;
}

.row.copyright-bottom {
    padding-top: 20px;
    border-top: 1px solid #cccccc5c;
}

.right-botom {
    display: flex;
    justify-content: end;
    font-size: 14px;
    gap: 10px;
}

.right-botom a {
    position: relative;
    text-decoration: none;
    color: inherit; 
}

.right-botom a:not(:last-child)::after {
    content: "|";
    margin-left: 10px;
    color: #888;
    font-weight: bold;
}


.right-botom ul {
    margin: 0;
    display: flex;
}

.right-botom ul li {
    list-style-type: none;
}

.vendor-name img {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    object-fit: cover;
    margin-right: 10px;
}

.Checkout-head {
    padding: 20px 0;
}
.Checkout-head a {
    color: #000;
    text-decoration: none;
}

.vendor-name h4 {
    font-size: 26px;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    margin: 0;
}

.vendor-name a {
    text-decoration: none;
}

.Checkout-head i {
    padding-right: 10px;
    font-size: 20px;
}

.title-ts h4 {
    font-size: 22px;
    font-weight: 700;
}

.checkout-Main {
    padding-top: 30px;
    padding-bottom: 50px;
}

.accordion-button:not(.collapsed) {
    background-color: #fde2e28a;
    color: #000 !important;
}

.delivery-details {
    background: #fff;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin-bottom: 3px;
    margin-top: 10px;
}

.right-sumamry {
    padding: 20px;
    background: #fff;
    border-radius: 15px;
}

.title-ts {
    padding-top: 5px;
    color: #000;
}

.delivery-item {
    padding: 10px 10px;
}

.delivery-item a {
    text-decoration: none;
}


.map-icon img {
    width: 25px;
}

.address-card {
    width: 85%;
}

.edit-address {
    width: 15%;
    text-align: right;
}

.promo-code-container {
    min-width: 350px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
  }
  .btn-apply {
    background-color: #ae0014;
    color: #fff;
    padding: 0 10px;
    border: none;
    border-radius: 4px;
  }
  .promo-message {
    font-size: 14px;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
  }
  .promo-success {
    color: #28a745;
    background-color: #f9fffb;
    border: 1px solid #28a745;
  }
  .promo-error {
    color: #dc3545;
    background-color: #fff5f5;
    border: 1px solid #dc3545;
  }
  .promo-code-applied {
    border: 1px solid #28a745;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9fffb;
  }
  .promo-code-applied span {
    font-weight: bold;
  }

  .promo-code-list {
    border: 1px solid #95a2af;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f4f7fa;
  }
  .apply{
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
  }
  .pricing-row .discount {
    color: #dc3545;
  }

.addess-box {
    width: 100%;
    padding-left: 15px;
    padding-bottom: 10px;
}

.address-card span {
    font-size: 16px;
    color: #141313;
    font-weight: 500;
}

.address-card p {
    margin: 0;
    font-size: 14px;
    color: #444141;
}

.edit-address button {
    background: #e7e7e7b5;
    border: none;
    padding: 7px 15px;
    font-size: 14px;
    border-radius: 5px;
}

.edit-address a {
    background: #e7e7e7b5;
    border: none;
    padding: 7px 15px;
    font-size: 14px;
    border-radius: 5px;
}

.map-icon {
    padding-bottom: 10px;
}

.address-card p.Badge {
    color: #ae0014;
}

.schedule-time {
    border: 1px solid #c3b5b5;
    border-radius: 15px;
    padding: 10px;

}

#pickup-itemestimate-cart {
    padding: 17px;
}

.cart-map-container-pickup {
    width: 100%;
    height: 140px;
    margin-top: 20px;
}

.delivery-pickup-details {
    border-bottom: 1px solid #c3b5b5;
}

.standard-svg-for-order-cart {
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    color: black;
}

.delivery-itemestimate {
    border: 1px solid #c3b5b5;
    border-radius: 15px;
    padding: 10px;
}

.delivery-itemestimate a {
    text-decoration: none;
}

.delivery-itemestimate.active {
    border: 2px solid red;
    border-radius: 15px;
}

.schedule-time.active {
    border: 2px solid red;
    border-radius: 15px;
}

.edit-address span {
    color: #333;
    font-size: 14px;
}

.order-main {
    background: #fff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 20px;
}

.order-main .edit-address {
    width: 20%;
    text-align: right;
    padding-right: 10px;
}

.edit-address button i {
    padding-right: 5px;
}

.product-img img {
    width: 100px;
    border-radius: 5px;
    object-fit: cover;
    height: 80px;
    box-shadow: 0 0 5px #ccc;
}

.addon-itemm span {
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

textarea {
    resize: none;
}

.order_icon {
    width: 25px !important;
}

.order-items {
    padding-top: 15px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f4f4f4;
}

.main-wrapper {
    width: 100%;
    padding-left: 20px;
}

.product-desc-title h6 {
    font-size: 18px;
    color: #ae0014;
    margin: 0;
    font-weight: 700;
}

.product-desc-title .item-Price {
    font-size: 14px;
    margin: 0;
    color: #343333;
}

.sub-addon-title {
    padding-left: 5px;
}
.sub-addon-inner {
    padding-left: 5px;
}

.hidden {
    display: none !important;
}

.delivery-instaruc p {
    font-size: 13px;
    font-weight: 300;
    color: #878080;
    margin-bottom: 5px;
}

.apply-promo-btn {
    background-color: #dc3545;
}

.coupon-icon {
    width: 100px;
}

.product-price-total span {
    color: #000;
    font-size: 22px;
}

.remove-product-btn img {
    width: 50%;
    margin: 0 auto;
}

.item-count {
    color: #787474;
    border-bottom: 1px solid #f3f3f3;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.order-items a {
    text-decoration: none;
}

.grand-total {
    padding: 20px 0;
    border-top: 1px solid #f1f1f1;
    margin-top: 15px;
}

.grand-total span {
    font-size: 20px;
    color: #000;
    font-weight: 500;
}

.total-item {
    padding: 6px 0px;
    font-weight: 400;
    color: #2e2e2e;
}

.Pay-amount button {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: none;
    font-size: 18px;
    background: #ae0014;
    color: #fff;
}

.Pay-amount {
    padding-bottom: 15px;
    width: 100%;
}

.order-items a {
    width: 100%;
}

.modal-content {
    border-radius: 20px;
}

div#DeleteItemmodal .modal-body {
    text-align: center;
    color: #333;
}

div#DeleteItemmodal .modal-body img {
    width: 55px;
    margin-bottom: 20px;
}

div#DeleteItemmodal .modal-footer button {
    width: 40%;
    background: #e7e7e7;
    border: none;
    padding: 10px;
    color: #000;
    margin-bottom: 20px;
}

div#DeleteItemmodal .modal-footer button:focus {
    box-shadow: none;
}

.pay_heading h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 44px;
}

.paymethod {
    border: 1px solid #3C3D37;
    color: #000;
    padding: 12px 28px;
    width: 420px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, border-radius 0.3s ease;
    margin: 10px 0;
}

.paymethod:hover {
    background-color: #45474B;
    color: #fff;
}

.custom-close {
    border: 2px solid #3C3D37;
    background-color: transparent;
    box-shadow: none;
}

.radio-option {
    display: inline-block;
    margin: 10px 20px;
    position: relative;
    font-family: 'lato', sans-serif;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-option span {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ae0014;
    border-radius: 50px;
    transition: background-color 0.4s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.radio-option:hover span {
    background-color: #ae0014;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.radio-option input[type="radio"]:checked+span {
    background: linear-gradient(135deg, #d62424c2, #d62424c2);
    color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.radio-option span:active {
    transform: scale(0.98);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.dark-mode .radio-option span {
    background-color: white;
}

.dark-mode .meet-options span {
    color: #000 !important;
}

.dark-mode .dark_promo {
    color: #000 !important;
}

.dark-mode .accordion-body {
    background-color: #000;
    color: white;
    border: 1px solid white;
}

div#navbarTogglerDemo02 {
    justify-content: space-between;
    align-items: center;
}

ul.navbar-nav {
    border-radius: 50px;
    margin-left: 10px;
    margin-right: 7px;
}

/* card success start */

/* card sucess finish */

.slider1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px 40px !important;
    gap: 15px;
}

.slider1 img {
    max-width: 100%;
    object-fit: contain;
    flex-direction: column;
}


.sliderclass div {
    display: flex;
    justify-content: center;
    min-width: 80px;
    height: 100px;
}

.democlass div {
    flex-direction: column;
    align-items: center;
}


.Header-form input:focus {
    border: none;
    background: none;
    box-shadow: none;
}

ul.navbar-nav a.nav-link.active {
    border-radius: 50px;
    background: #ae0014;
    color: #fff;
    padding: 8px 13px;
}

/* profile card start */
.custom-sidebar {
    background-color: #fff;
    border-right: 1px solid #ddd;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.custom-sidebar .nav-link {
    display: block;
    padding: 10px 15px;
    margin-bottom: 10px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: left;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.custom-sidebar .nav-link:hover {
    background-color: #fde2e28a;
}

.custom-sidebar .nav-link.active {
    background-color: #ae0014;
    color: #fff;
    border-color: #ae0014;
}

.custom-sidebar .nav-link i {
    margin-right: 8px;
}

.custom-sidebar .logout-link,
.custom-sidebar .delete-link {
    margin-top: 10px;
    background-color: #d62424c2;
    color: #fff;
}

.custom-sidebar .logout-link:hover,
.custom-sidebar .delete-link:hover {
    background-color: #c81f1f;
}

/* Profile Section Styling */
.profile-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    height: auto;
}

.outer_address {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ae0014;
    min-height: 141px;
    margin-top: 5px;
}

.profile-title {
    font-size: 28px;
    color: #333;
    font-weight: 600;
}

.profile-pic {
    display: flex;
    justify-content: center;
}

.profile-pic img {
    border-radius: 50%;
    object-fit: cover;
    height: 200px;
    width: 200px;
}

.profile-details h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    padding-top: 10px;
}

.profile-details p {
    font-size: 16px;
    margin: 10px 0;
    color: #555;
}

.dark-mode .profile-details li {
    background-color: #000 !important;
    border: 1px solid white;
}

.referral-code {
    font-size: 25px;
    color: #000;
}

.referral-input {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    box-shadow: none;
    transition: border-color 0.3s ease;
}

.referral-input:focus {
    border-color: #ae0014;
    outline: none;
}

.dark-mode .adress-info li {
    background-color: black !important;
    color: white !important;
}

.dark-mode .profile-order-details {
    background-color: black;
    border: 1px solid white;
}

.dark-mode .profile-order-details h4 {
    color: #fff !important;
}



/* Orders Section */
.card {
    padding: 15px;
    margin-bottom: 15px;
}

.card img {
    border-radius: 5px;
}

img.img-circle.medium-image {
    width: 30px;
}

.card-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.card-text {
    color: #666;
}

/* Wallet Section */
.wallet-section p {
    font-size: 18px;
    margin: 5px 0;
}

/* Help Center Section */
.help-section p {
    font-size: 18px;
    margin: 5px 0;
}

/* Change Password Section */
.change-password-section p {
    font-size: 18px;
    color: #666;
}

.user_wallet h3 {
    font-size: 28px;
    font-weight: 800;
    color: #ae0014;
}

.user_wallet p {
    font-size: 18px;
    font-weight: 800;
}

.dark-mode .custom-sidebar {
    background-color: #000 !important;
    color: white !important;
    border: 1px solid white;
}

.dark-mode .profile-section {
    background-color: #000 !important;
    color: white !important;

}

.dark-mode .profile-section .card {
    background-color: #000 !important;
    color: white !important;
    border: 1px solid white;

}

.dark-mode .profile-title {
    color: white;
}

.dark-mode .profile-details {
    color: white !important;
}

.dark-mode .profile-details h3 {
    color: white !important;
}

.dark-mode .profile-details p {
    color: white !important;
}

.dark-mode .profile-details span {
    color: white !important;
}

.dark-mode .profile-section h3 {
    color: white !important;
}

.dark-mode .user_wallet {
    background-color: black !important;
    color: white !important;
}


.dark-mode #wallet_transactions_history h5 {
    color: black !important;
}

.dark-mode .profile-section .table-light tr {
    color: black !important;
}


.dark-mode .profile-section tr {
    color: white !important;
}

.dark-mode .help-section h6 {
    color: white !important;
}

.dark-mode .product-price-total span {
    color: #000 !important;
}

.dark-mode table thead span {
    color: #000 !important;
}

.btn-status {
    min-width: 55px;
}

.detail-para p{
    text-align: justify;
}

.dark-mode .help-center {
    background-color: #000;
    border: 1px solid white;
}



/* Responsive Design */
@media screen and (max-width: 992px) {
    .main-wrapper {
        flex-direction: column !important;
    }

    .pickup-restaurant-filter{
        grid-template-columns: repeat(4, 1fr);
    }
}

/* profile card finish */
/* external header css start */
#login_modal .modal-content {   
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff, #f3f4f6);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.dark-mode .log-box h4 {
    color: #000 !important;
}
.dark-mode {
    background-color: black !important;
    color: white !important;
}

.dark-mode p.new-user {
    color: black !important;
}

.sigin-modal-header {
    transform: skew(-2deg);
    background: transparent;
    color: #000;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}


.login-button {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background: #f1f3f5;
    transform: skew(-3deg);
    transition: all 0.3s;
}

.login-button:hover {
    transform: skew(-3deg) translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.otp_inputs input {
    transform: skew(1deg);
    border: 1px solid #ddd;
    transition: transform 0.3s, border-color 0.3s;
}

.otp_inputs input:focus {
    border-color: #007bff;
    transform: skew(1deg) scale(1.05);
}

.dropdown-menu {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 10px 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}


.dropdown-menu a.dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: #333;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}


.dropdown-menu a .fas {
    margin-right: 10px;
    font-size: 18px;
    transition: transform 0.3s, color 0.3s;
}


.dropdown-menu a.dropdown-item:hover {
    background-color: #d62424c2;
    color: white;
}

.dropdown-menu a.dropdown-item:hover .fas {
    color: white;
    transform: rotate(360deg);
}

.dropdown-menu a .fas.fa-tachometer-alt {
    color: #ffcc00;
}

.dropdown-menu a .fas.fa-user {
    color: #28a745;
}

.dropdown-menu a .fas.fa-sign-out-alt {
    color: #dc3545;
}

.login-modal .modal-content {
    border-radius: 10px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    background-color: #f7f8fa;
}

.login-modal .modal-header h5 {
    font-weight: 700;
    color: #333;
}

.login-modal .form-group input {
    border-radius: 30px;
    padding: 12px 20px;
    font-size: 1rem;
    border: 1px solid #ddd;
    transition: border-color 0.3s ease-in-out;
}

.login-modal .form-group input:focus {
    border-color: #ae0014;
}

.login-modal .login_continue_btn {
    background-color: #ae0014;
    color: #fff;
    font-weight: bold;
    border: none;
    padding: 12px;
}

.login-modal .login_continue_btn:hover {
    background-color: #d62424c2;
}

.login-modal .login-button {
    border-radius: 30px;
    background-color: #f0f0f0;
    color: #555;
    font-weight: bold;
    padding: 10px 12px;
    text-align: center;
    display: inline-block;
    width: 100%;
    text-decoration: none;
    margin-bottom: 10px;
}

.login-modal .login-button i {
    margin-right: 10px;
}

.login-button {
    text-decoration: none !important;
}

.login-modal .login-button:hover {
    background-color: #e0e0e0;
}

.login-modal .new-user {
    margin-top: 20px;
    color: #666;
}

.login-modal .new-user a {
    color: #ae0014;
    font-weight: 600;
}

.otp_inputs input {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
    text-align: center;
    margin-right: 10px;
}

.login_code_note {
    text-align: center;
    margin-top: 10px;
}

.login_code_note a {
    color: #007bff;
}

/* Custom Forgot link */
#send_password_reset_link {
    display: block;
    text-align: right;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #007bff;
    cursor: pointer;
}

.dropdown-menu {
    min-width: 8rem !important;
    border: 0px !important;
}

.dropdown-menu[data-bs-popper] {
    top: 100%;
    left: -47px;
    margin-top: .125rem;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #d62424c2 !important;
}

.Input-form {
    position: relative;
}

#search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    background-color: #d62424c2;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#search-results .list-group-item {
    padding: 8px 12px;
    cursor: pointer;
}

#search-results .list-group-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

#search-results .list-group-item a {
    text-decoration: none;
    color: #ae0014;
}

#search-results .list-group-item a:hover {
    text-decoration: none;
    color: #ae0014;
}

#category-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    scrollbar-width: thin;
    max-height: 200px;
    overflow-y: auto;
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    background-color: #d62424c2;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


#category-list .list-group-item {
    padding: 8px 12px;
    cursor: pointer;
}

.dark-mode #category-list .list-group-item {
    background-color: #000;
    color: white;
    border: 1px solid #fff
}

#category-list .list-group-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

#category-list .list-group-item a {
    text-decoration: none;
    color: #000;
}

#category-list .list-group-item a:hover {
    text-decoration: none;
    color: #ae0014;
}

/* external header css finish */

.Pickup-btn {
    padding: 8px 20px !important;
    color: #333;
}

.Picup-btn :hover {
    background-color: #fde2e28a;
}

.sticky-top {
    border-bottom: 1px solid #f1f1f1;
    background-color: #fff;
}


.Header-form input {
    border: none;
    background: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 10px;
}


.left-nav {
    display: flex;
    align-items: center;
}

.addres-location {
    margin-left: 30px;
}

.navbar-nav .nav-link {
    padding-right: 20px !important;
    padding-left: 15px;
    color: #000;
    text-align: center;
}

.addres-location a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    padding-left: 10px;
    font-weight: 500;
}

.toggle-offcanvas .offcanvas-body {
    padding: 20px 0px;
}

.offcanvas-menu {
    padding: 0;
    margin-left: 10px;
}

.reference_title h2 {
    font-size: 30px;
    font-weight: 600;
}

.offcanvas-menu li {
    list-style-type: none;
    border-bottom: 1px solid #cccccc70;
}

.offcanvas-menu li i {
    color: #767171;
    font-size: 20px;
    margin-right: 15px;
}

.login-sec a.log {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #000;
    background: none;
    width: 80%;
    margin: 0 auto;
    padding: 12px 10px;
    border-radius: 10px;
    font-size: 18px;
    background-color: #e9e9e9;
    margin-top: 10px;
    transition: 0.3s ease;
}

.login-sec a.log:hover {
    background-color: #dbd7d7;
}


.bottom-line {
    padding: 20px 10px;
}

.bottom-line a {
    text-decoration: none;
    display: block;
    text-align: center;
    color: #000;
    font-size: 15px;
    padding: 5px 0px;
    font-weight: 500;
}

.donweload-app {
    display: flex;
    justify-content: center;
}

.donweload-app a {
    background: #f3f3f3;
    margin-right: 10px;
    padding: 8px 15px;
    border-radius: 50px;
}

.bootom-box {
    border-top: 1px solid #cccccc73;
    MARGIN-TOP: 35px;
    padding-top: 20px;
    text-align: center;
    color: #000;
}

.donweload-app i {
    font-size: 20px;
    padding-right: 7px;
}

.donweload-app i.fa-solid.fa-robot {
    font-size: 16px;
}

ul.offer-listing {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

ul.offer-listing li {
    list-style-type: none;
}

ul.offer-listing li a {
    align-items: center;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    background: #fff;
    margin-right: 10px;
    padding: 0 10px;
    border-radius: 50px;
}


.botom-card ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.footer-widget ul li a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 15px;
}

.botom-card ul li {
    list-style: none;
    padding: 0 10px;
}

.footer-widget ul {
    padding: 0;
    margin: 0;
}


.botom-card ul li a {
    color: #000;
    font-size: 21px;
}

.right-botom ul li a {
    font-size: 14px;
    text-decoration: none;
    color: #333;
    padding: 0 15px;
}




.right-botom ul {
    margin: 0;
    display: flex;
}

.right-botom ul li {
    list-style-type: none;
}
.img-card img {
    border-radius: 0px;
}

.product-right-info {
    width: 560px;
    padding: 15px;
}

.top-inner {
    padding-bottom: 20px;
    position: sticky;
    top: 60px;
    background: #fff;
    z-index: 999;
    box-shadow: 0px 1px 0px 0px #e1e1e140;
    padding-top: 15px;
}

.top-inner-popup {
    padding-bottom: 20px;
    position: sticky;
    top: 47px;
    background: #fff;
    z-index: 999;
    box-shadow: 0px 1px 0px 0px #e1e1e140;
    padding-top: 15px;
}

.top-inner h4 {
    line-height: 40px;
    font-size: 32px;
    color: #000;
    font-weight: 600;
    margin: 0;
    display: flex;
    flex-direction: row;
}

.price-green {
    color: #0a720a !important;
}
.dark-mode .top-inner .item-price  {
    color: #fff !important;
}
.top-inner .item-price {
    line-height: 28px;
    font-size: 20px;
    text-decoration-line: none;
    padding: 0px;
    color: rgb(94, 94, 94);
    font-weight: 600;
    display: flex;
    gap: 5px;

}
.calories {
    font-weight: 400;
}

.top-inner p {
    font-size: 16px;
    margin: 0;
    margin-bottom: 10px;
    white-space: pre-line;
    line-height: 20px;
    overflow: hidden;
    font-weight: 400;
}

.required_addon span {
    background-color: #ae0014;
}


.addon-group {
    padding: 2px 0;
}

.addon-item {
    padding: 10px 0;
    font-family: 'Lato', sans-serif;
}

.add-item {
    color: #212529;
    font-size: 16px;
    font-weight: 600;
}

.sub-addon-title {
    color: #212529;
    font-weight: 600;
}

.addon-title {
    color: #212529;
    font-weight: 700;
}

.addon-group {
    border-bottom: 1px solid #f5f5f5;
    color: #212529;
}

.addon-head h5 {
    color: #000;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.addon-card {
    padding-top: 15px;
    border-top: 2px solid #cccccc3d;
}

.addon-item input {
    width: 30px;
    height: 30px;
}

/* Hide the default radio button */
.radio-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding-right: 18px;
}

.radio-wrapper input[type="radio"] {
    display: none;
}

/* Custom radio button appearance */
.radio-wrapper input[type="radio"]+.custom-radio {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid black;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    background-color: white;
    transition: background-color 0.2s ease;
}

.radio-wrapper input[type="radio"]:checked+.custom-radio {
    background-color: white;
    border-color: black;
}

.dark-mode .radio-wrapper input[type="radio"]:checked+.custom-radio::after  {
    border-color: #ae0014 !important;
}

/* Create a dot inside the custom radio button when checked */
.radio-wrapper input[type="radio"]:checked+.custom-radio::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: black;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding-left: 47px;
    line-height: 20px;
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkbox-wrapper .custom-checkbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    border-radius: 3px;
    border: 2px solid black;
    background-color: white;
    transition: background-color 0.2s, border-color 0.2s;
}

.checkbox-wrapper input[type="checkbox"]:checked+.custom-checkbox {
    background-color: black;
    border-color: black;
}

.dark-mode .checkbox-wrapper input[type="checkbox"]:checked+.custom-checkbox {
    background-color: #ae0014 !important;
}

.checkbox-wrapper input[type="checkbox"]:checked+.custom-checkbox::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: white;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    clip-path: polygon(10% 40%, 40% 70%, 90% 20%, 75% 5%, 40% 40%);
}


.add-cart button {
    background: #ae0014;
    width: 100%;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 8px;
}

.add-cart a {
    background: #d62424c2;
    width: 100%;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 8px;
}

button.See-page {
    background: #f3f3f3cc;
    color: #000;
}

.productDetail-sec {
    padding-top: 30px;
}

.detail-header {
    padding: 15px;
}

.detail-header h4 a {
    font-size: 16px;
    color: #000;
    text-decoration: none;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.sticky {
    position: sticky;
    top: 80px;
    z-index: 1000;
    margin-bottom: 120px;
}

.sticky .no-image-placeholder h4 {
    line-height: 40px;
    font-size: 32px;
    color: #000;
    font-weight: 800;
}

.sticky a {
    text-decoration: none;
}


.modal {
    scrollbar-width: none;
}

.modal-content {
    border-radius: 20px;
}

.navbar-brand img {
    width: 11rem;
    padding-left: 15px;
}

.Header-form {
    margin-right: 50px;
}

ul.navbar-nav {
    border-radius: 50px;
    margin-left: 10px;
    margin-right: 7px;
}

.Header-form input:focus {
    border: none;
    background: none;
    box-shadow: none;
}

ul.navbar-nav li.nav-item {
    background-color: #f8d7da;
    border-radius: 50px;
    transition: background-color 0.3s, z-index 0.3s;
    width: 114px;
    font-size: 14px;
    font-weight: 600;
    margin-right: -10px;
    position: relative;
}



.Delivery-btn {
    border-radius: 50px !important;
    background: #000 !important;
    color: #fff !important;
    padding: 8px 20px !important;
    font-size: 14px !important;

}

.restaurnt-title {
    font-size: 26px;
    color: #000;
    font-weight: 700;
    margin: 0;
}

.Header-form input {
    border: none;
    background: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 10px;
}

.Input-form {
    background: #fde2e28a;
    border-radius: 50px;
    padding: 0 20px;
    width: 20rem;
    margin-right: 15px;

}

.see_detailsres a {
    padding: 8px 132px;
    background-color: #ddd;
}

.left-nav {
    display: flex;
    align-items: center;
}

.addres-location {
    margin-left: 30px;
}

.addres-location a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    padding-left: 10px;
    font-weight: 500;
}
.offcanvas.show {
    max-width: 300px;
}

.dark-mode .offcanvas.show {
    background-color: #000000;
}



.toggle-offcanvas .offcanvas-body {
    padding: 0 10px;
}

a.offer-banner p {
    font-weight: 700;
    padding: 10px;
    margin: 0;
    color: #000000bf;

}

a.offer-banner {
    text-decoration: none !important;
}

.dark-mode a.offer-banner {
    color: #fff !important;
}
.offcanvas-menu {
    padding: 0;
    margin-left: 10px;
}

.offcanvas-menu li {
    list-style-type: none;
    border-bottom: 1px solid #cccccc70;
}

.offcanvas-menu li i {
    color: #767171;
    font-size: 20px;
    margin-right: 15px;
}

.offcanvas-menu li a {
    font-size: 17px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    display: block;
    padding: 15px 15px;
    transition: 0.3s ease;
}

.offcanvas-menu li a:hover {
    background-color: #ffc5c58a;
    color: #000;
}

.login-sec a.sign {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: #ae0014;
    width: 80%;
    margin: 0 auto;
    padding: 12px 10px;
    border-radius: 10px;
    font-size: 18px;
    margin-top: 30px;
}

.login-sec a.log {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #000;
    background: none;
    width: 80%;
    margin: 0 auto;
    padding: 12px 10px;
    border-radius: 10px;
    font-size: 18px;
    background-color: #fde2e28a;
    margin-top: 10px;
    transition: 0.3s ease;
}

.login-sec a.log:hover {
    background-color: #dbd7d7;
}

.toggle-offcanvas button.btn-close {
    position: relative;
    top: 8px;
    border: none;
    cursor: pointer;
    color: #333;

}

.dark-mode .toggle-offcanvas button.btn-close {
    background-color: white;
}

.bottom-line {
    padding: 20px 10px;
}

.bottom-line a {
    text-decoration: none;
    display: block;
    text-align: center;
    color: #000;
    font-size: 15px;
    padding: 5px 0px;
    font-weight: 500;
}

.donweload-app {
    display: flex;
    justify-content: center;
}

.donweload-app a {
    background: #f3f3f3;
    margin-right: 10px;
    padding: 8px 15px;
    border-radius: 50px;
}

.bootom-box {
    border-top: 1px solid #cccccc73;
    MARGIN-TOP: 35px;
    padding-top: 20px;
    text-align: center;
    color: #000;
}

.donweload-app i {
    font-size: 20px;
    padding-right: 7px;
}

.donweload-app i.fa-solid.fa-robot {
    font-size: 16px;
}

.off-toggle {
    position: relative;
}

ul.offer-listing {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

ul.offer-listing li {
    list-style-type: none;
}

ul.offer-listing li a {
    align-items: center;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    background: #fff;
    margin-right: 10px;
    padding: 0 10px;
    border-radius: 50px;
}

ul.offer-listing li a p {
    margin: 0;
}

ul.offer-listing li a img {
    width: 50px;
}

img.gifts-img {
    width: 40px !important;
}

img.Retail-img {
    width: 42px !important;
}

.slider1 button.slick-prev.slick-arrow {
    background-image: url(../image/leftarrow.svg) !important;
    background: #d62424c2;
    border-radius: 50%;
    padding: 13px !important;
    width: 35px;
    height: 35px;
    background-size: cover;
    top: 39px;
    margin: 0 auto;
    z-index: 999;
    margin-left: -10px;
}

@media only screen and (max-width: 1800px) {
    .slider2 button.slick-prev.slick-arrow {
        right: -80%
    }

}

.slider2 button.slick-prev.slick-arrow {
    background-image: url(../image/leftarrow.svg) !important;
    background: #d62424c2;
    border-radius: 50%;
    padding: 13px !important;
    width: 4vh;
    height: 4vh;
    background-size: cover;
    top: -25px;
    margin: 0 auto;
    right: -90%;
}


.slick-prev:before,
.slick-next:before {
    display: none;
}


.slider1 button.slick-next.slick-arrow {
    background-image: url(../image/rightarrow.svg) !important;
    background-repeat: no-repeat;
    background-size: cover;
    background: #d62424c2;
    border-radius: 50%;
    padding: 13px !important;
    width: 35px;
    height: 35px;
    background-size: cover;
    top: 39px;
    margin-right: -10px !important;
}

.slider2 button.slick-next.slick-arrow {
    background-image: url(../image/rightarrow.svg) !important;
    background-repeat: no-repeat;
    background-size: cover;
    background: #d62424c2;
    border-radius: 50%;
    padding: 13px !important;
    width: 4vh;
    height: 4vh;
    background-size: cover;
    top: -25px;
    right: 0px;
}

.footer-widget .logo img {
    width: 180px;
}

.botom-card ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.footer-widget ul li a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 15px;
}

.botom-card ul li {
    list-style: none;
    padding: 0 10px;
}

.footer-widget ul {
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    list-style-type: none;
    margin-bottom: 10px;
}

.botom-card ul li a {
    color: #000;
    font-size: 21px;
}

.right-botom ul li a {
    font-size: 14px;
    text-decoration: none;
    color: #333;
    padding: 0 15px;
}





.right-botom ul {
    margin: 0;
    display: flex;
}

.right-botom ul li {
    list-style-type: none;
}

.links-app img {
    width: 134px;
    margin-top: 130px;
}

.Picup-btn {
    border-radius: 50px;
    padding: 5px 7px !important;
    font-weight: 500;
    color: #000;
}

.restuarnt-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.restuarnt-banner {
    width: 100%;
    height: 270px;
}

.restrodetl {
    display: flex;
    align-items: center;
    color: #6a6a6a;
    font-size: 14px;
}

.restrodetl p {
    margin: 0;

}

.rating {
    display: flex;
}

.restaurant-info {
    padding-top: 15px;
}

.delh-pick .nav-pills .nav-link {
    background-color: #f8d7da;
    border: 0;
    border-radius: 50px !important;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    margin-left: -5px;
    width: 123px;
}

.delh-pick .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff !important;
    background-color: #ae0014 !important;
    border-radius: 50px !important;
    padding: 8px 20px !important;
}

.delivery-card {
    border: 1px solid #f3f3f3;
    padding: 5px 25px;
    border-radius: 20px;
}

.delivery-card span {
    font-size: 14px;
    color: #067606;
    font-weight: 600;
}

.right-card span {
    color: #000;
}

.delivery-card p {
    font-size: 13px;
    text-transform: capitalize;
    color: #767171;
    margin: 0;
}

.left-card {
    padding-right: 60px;
}

.rating span {
    color: #333;
    font-weight: 500;
    font-size: 14px;
    padding-right: 5px;
}

.distance {
    padding: 0 5px;
}

.speciality {
    padding: 0 5px;
}

span.rate-span {
    color: #000;
    margin-right: 5px;
}

.rate {
    padding-right: 5px;
}

.review-cont p {
    margin: 0;
    font-size: 14px;
    color: #767676;
    padding-top: 5px;
}

.rate-time {
    font-size: 14px;
    color: #6e6c6c;
}

.rating-cards {
    padding-top: 20px;
    padding-bottom: 50px;
}

.rating-box .username span {
    font-weight: 600;
    font-size: 15px;
    color: #000;
    text-transform: capitalize;
}

.rate i {
    font-size: 10px;
    color: #000;
    padding-right: 1px;
}

.store-ingo-modal a {
    border: 1px solid #e3dfdf;
    width: 35%;
    display: block;
    border-radius: 50px;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    text-align: center;
    padding: 8px 10px;
    font-weight: 600;
}

.service-fees {
    margin: 0;
    padding-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #898989;
    padding-bottom: 5px;
}

.store-ingo-modal {
    margin-top: 5px;
}

.slide-margin {
    margin: 0px 7px;
    position: relative;
}


.product-item img {
    width: 100%;
    height: 155px;
    object-fit: cover;
    border-radius: 10px;
}

.top-left-badge {
    position: absolute;
    top: 12px;
    left: 0px;
    background-color: #4caf50;
    color: white;
    font-size: 11px;
    padding: 3px 5px;
    border-radius: 0px 8px 8px 0px;
}

span.badge-free {
    background: #f33030ba;
    color: #fff;
    font-size: 13px;
    padding: 1px 10px;
    border-radius: 5px;
    position: absolute;
    top: 13px;
    left: 6px;
    font-weight: 600;
}
.section {
    display: flex;
    gap: 5px;
}

.produst-detail {
    display: flex;
    font-size: 13px;
    padding-bottom: 2px;
    background-color: #ae0014;
    border-radius: 50%;
    padding: 5px;
    align-items: center;
}

.produst-detail p {
    margin: 0;
    color: #fff;
    font-weight: 800;
    font-family: "Lato", sans-serif !important;
}

.produst-detail i {
    color: #878585;
    font-size: 12px;
}

.spann {
    padding: 0px 5px;
    color: #02060cbf;
}

.time {
    color: #02060cbf;
}

.add-product {
    position: absolute;
    top: 118px;
    right: 7px;
    background: #fff;
    padding: 4px 9px;
    border-radius: 50px;
    box-shadow: 0 0 4px #b3b0b0;
    font-weight: 700;
    font-size: 14px;
}

.offer_btn {
    background-color: #fde2e28a;
}



.restro-search input {
    border: none;
    background: no-repeat;
    font-size: 14px;
    padding-left: 10px;
}

.restro-search form {
    background: #fde2e28a;
    border-radius: 50px;
    padding: 5px 10px;

}

span.wishlisted {
    position: absolute;
    top: 5px;
    right: 5px;
    color: #fff;
    text-shadow: 0 0 3px #b7aeaecc;
    font-size: 15px;
    cursor: pointer;
}

.featured-products h3 {
    font-size: 24px;
    color: #000;
    padding-left: 10px;
    font-weight: 700;
}

.featured-products {
    padding-top: 40px;
}

.speciality {
    font-size: 14px;
    color: #6a6a6a;
    padding: 0;
}

.speciality p {
    margin: 0;
}

.delivery-pickup {
    margin-top: 10px;
}

.See-More {
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
}

@media(max-width:768px) {
    .modal-content {
        left: 25px;
        position: relative;
        display: flex;
        flex-direction: column;
        width: 85%;
        pointer-events: auto;
        background-color: #fff;
        background-clip: padding-box;
        border: 1px solid rgba(0, 0, 0, .2);
        border-radius: .3rem;
        outline: 0;
        border-radius: 20px;
    }
   
}

div#seemoremodal .modal-content {
    border-radius: 20px;
}

div#seemoremodal h1#exampleModalLabel {
    font-size: 26px;
    font-weight: 700;
}

div#seemoremodal .modal-footer button {
    border-radius: 50px;
    padding: 7px 15px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: #ae0014;
    border: none;
}

div#seemoremodal .modal-body {
    padding: 0;
}

.map-top {
    width: 100%;
    height: 200px;
}

.map-top iframe {
    width: 100%;
    height: 100%;
}

.inner p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #494949;
}

.address-box {
    padding: 15px;
    cursor: pointer;
    border-bottom: 1px solid #f3f3f3;
}

.right {
    cursor: pointer;
}

.inner {
    width: 90%;
}

.Icon {
    padding-right: 10px;
    width: 5%;
    margin-right: 15px;
}

.inner .phone-no {
    color: #161616;
}

.address-box .accordion-button:not(.collapsed) {
    color: #000 !important;
    background-color: #FFF !important;
    box-shadow: none !important;
}

.address-box .accordion-button:focus {
    box-shadow: none !important;
}

.inner span {
    font-size: 13px;
    font-weight: 600;
    color: #494949;
}

.Badge-open {
    color: #0a720a !important;
}

.inner.time-inner {
    margin-left: 10px;
}

.time-box .nav-pills .nav-link {
    width: 50%;
}

.table.drivere-Time {
    margin-top: 15px;
}

.drivere-Time td {
    text-align: right;
    font-size: 15px;
    border-bottom: none;
}

.drivere-Time th {
    font-size: 15px;
    font-weight: 600;
    border-bottom: none;
}

div#v-pills-items .nav-link.active,
.nav-pills .show>.nav-link {
    color: #1c1b1b;
    background-color: none !important;
    border-radius: 0;
    box-shadow: 0 0 5px #007bff !important;
}

div#v-pills-items .nav-link {
    background: 0 0;
    border: 0;
    border-radius: .25rem;
    color: #000;
    font-size: 11px;
    font-weight: 600;
}

.item-card {
    border: 1px solid #e7e7e787;
    border-radius: 10px;
    box-shadow: 0 0 5px #cccccc2e;
    margin-bottom: 20px;
}


.pro-title span {
    font-size: 15px;
    color: #000;
    font-weight: 600;
}

.product-descLeft {
    padding: 15px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.product-image {
    width: 100%;
    height: 158px;
}

.product-image i {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: #fff;
    padding: 10px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 0 6px #dbdbdb;
}

.product-image .quantity_class {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    background: #fff;
    padding: 8px 11px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 0 6px #dbdbdb;
}

.product-image .quantity_class_single {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 6px #dbdbdb;
}

.product-image .counter-buttons {
    position: absolute;
    bottom: 15px;
    right: 10px;
    background-color: white;
    border-radius: 50px;
}

.minus_counter {
    font-size: 18px;
    border-radius: 50px;
    width: 40px;
    border: 0px;
    height: 40px;
}

.plus_counter {
    font-size: 18px;
    border-radius: 50px;
    width: 40px;
    border: 0px;
    height: 40px;
}

.counter-buttons span {
    font-size: 18px;

}
.counter-btn {
    background-color: #007bff;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.counter-btn:hover {
    background-color: #0056b3;
}

.counter-display {
    font-size: 18px;
    font-weight: bold;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 50%;
    background-color: #f8f9fa;
}

.chip-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

}

.chip {
    padding: 8px 16px;
    background-color: #f1f1f1;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.product_price {
    font-size: 14px;
    font-family: "Lato", sans-serif !important;
    color: #000;
}

.item-desc {
    line-height: 20px;
}

.item-desc span {
    font-size: 13px;
    font-family: "Lato", sans-serif !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
}

.meet_door button {
    background-color: #d62424c2;
}

.restro_tab {
    top: 67px !important;
    z-index: 999;
    background: white;
    padding: 9px;
}

.item-top-tittle {
    padding: 30px;
    margin-bottom: 10px;
    position: sticky;
    top: 75px;
    background: #fff;
    z-index: 1;
    margin-top: 15px;
}

.item-top-tittle h4 {
    font-weight: 700;
    font-size: 22px;
    margin-top: 20px;
}

.Rating-sec {
    padding-top: 30px;
    border-top: 1px solid #f3f3f3;

}

.rating-box {
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    padding: 10px 15px;
    cursor: pointer;
    margin-bottom: 10px;
    height: 150px;
    overflow: hidden;
}

.rating-ttile h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}


.rating-dec {
    font-size: 14px;
    color: #5a5a5a;
}

.rating-dec i {
    font-size: 12px;
    color: #000;
    padding-right: 5px;
}

.show-more-rating a {
    text-decoration: none;
    color: #000;
    background: #e3e3e3;
    padding: 7px 10px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
}

.show-more-rating {
    padding: 25px 0;
}

.product-details-img {
    padding: 15px;
    padding-top: 0px;
    width: 600px;
    height: 400px;
    overflow: hidden;
}

.product-details-img .img-card {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.product-details-img .img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}
/* 
.zoomContainer {
    transition: opacity 1.3s ease-in-out !important;
    z-index: 9999 !important;
    position: absolute !important;        
}

.zoomLens {
    transition: transform 1.3s ease-in-out !important;
    cursor: zoom-in;
}

.zoomWindow {
    transition: opacity 1.3s ease-in-out !important;
} */

.product-details-img .img-card:hover img {
    transform: scale(1.2);
}

.product-imgg {
    padding: 15px;
    padding-top: 0px;
    width: 600px;
    height: 400px;
}

div#productdetailModal .modal-dialog {
    max-width: 60%;
    margin: 0 auto;
}

div#productdetailModal .modal-header {
    position: sticky;
    top: 0px;
    background: #fff;
    z-index: 1;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.img-card img {
    border-radius: 0px;
}



.addon-head p {
    margin: 0;
    font-size: 14px;
    color: #504e4e;
}

.addon-item .item-left span {
    font-size: 16px;
    font-weight: 600;
    color: #1c1c1c;
}

span.addon-Price {
    font-weight: normal !important;
}

.product-modal-footer select {
    width: 65px;
    background: #edebeb;
    border: none;
    border-radius: 8px;
    padding: 3px 12px !important;
    margin-bottom: 15px;
    cursor: pointer;
}

.add-cart button {
    background: #ae0014;
    width: 100%;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 8px;
}

.product-modal-footer {
    padding-top: 25px;
}

.item-left p.popular-badge {
    margin: 0;
    color: #f44a4ad6;
    font-size: 14px;
}

button.See-page {
    background: #f3f3f3cc;
    color: #000;
}

.product-modal-footer {
    padding-top: 25px;
}

/* banner section start */
.banner-section1 {
    background: url(../image/card/drivereeland.png) no-repeat center/cover;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.order_items {
    border-radius: 0 19px 19px 0;
    background-color: #ae0014;
}

.banner_heading {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 20px;
    font-family: "Lato", sans-serif !important;
}

.banner_address {
    border: 2px solid #ae0014;
}

.card-title h2 {
    font-weight: 700;
    font-size: 32px;
    padding-bottom: 20px;
}

.card-title p {
    font-size: 15px;
    font-weight: 500;
    color: #171616;
}

.card-title a {
    background: #ae0014;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-top: 20px;
    text-decoration: none;
}

.card-title button {
    background: #ae0014;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-top: 20px;
}

.background-section {
    background: linear-gradient(rgba(0.01, 0, 0, 0.5), rgba(0.01, 0, 0, 0.5)), url('../image/card/groceryy.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.background-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}

.background-text p {
    font-weight: 600;
    color: #f2efef;
    width: 75%;
    margin: 0 auto;
    margin-bottom: 35px;
}

.background-text a {
    background: #f4be3100;
    padding: 10px 20px;
    border: 1px solid #ffffff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-top: 5px;
    transition: 0.3s ease;
    text-decoration: none;
}

.card-sec h2 {
    margin-top: 25px;
    font-weight: 700;
    font-size: 24px;
    padding: 0px 45px;
    margin-bottom: 20px;
}

.card-sec p {
    font-weight: 500;
    font-size: 15px;
    padding: 0 45px;
}

button.color-btn {
    background: #ae0014;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 50px;
    border: none;
}



/* banner section finsih */
.login-banner {
    background: url(../image/card/login-bg.png) no-repeat center/cover;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-y: scroll;
    padding-bottom: 100px;
}



.vendor_multi {
    position: absolute;
    top: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
    padding: 20px;
    margin-bottom: 50px !important;
}

.fs-24 {
    font-size: 24px;
    font-weight: 700;
}

.fs-14 {
    font-size: 16px;
    line-height: 24px;
    color: #292828;
    font-weight: 500;
}

.unlock-growth {
    background: url(../image/card/bg-1.png) no-repeat center center;
    background-size: cover;
    min-height: 70vh;
}

.carousel-indicators {
    margin-bottom: -0.5rem !important;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.fs-30 {
    text-transform: uppercase;
    color: #000000;
    font-weight: 700;
    font-size: 30px;
}

.fs-14 {
    font-size: 16px;
    line-height: 24px;
    color: #292828;
    font-weight: 500;
}

.three-steps {
    background: url(../image/card/3step.png) no-repeat center center;
    background-size: cover;
    min-height: 60vh;
}

@media only screen and (max-width: 1200px) {
    .slider2 button.slick-prev.slick-arrow {
        right: -90%;
    }

    .slider2 button.slick-next.slick-arrow {
        right: 0;
    }

    .Input-form {
        width: 20rem;
    }

    ul.navbar-nav {
        text-align: center;
    }

    .vendor_multi {
        max-width: 479px;
    }

    .nav_cart_icon {
        margin: 0px;
    }
    .head-pro h6 {
        max-width: 120px !important;
    }
    .right-botom a:not(:last-child)::after {
        content: ""; 
    }
}

@media only screen and (max-width: 992px) {
    .slider2 button.slick-prev.slick-arrow {
        right: -85%;
    }
    .slider2 button.slick-next.slick-arrow {
        right: 0;
    }
    .See-More {
        margin-bottom: 10px;
    }
    .see_detailsres a {
        padding: 8px 42px;
        background-color: #ddd;
    }

    .offcanvas-box {
        margin-left: 25px !important;
    }

    .collapse {
        padding-left: 25px;
    }
    .Header-form {
        justify-content: space-between;
        margin-top: 10px;
    }

    .vendor_multi {
        right: 11px;
    }

    ul.navbar-nav {
        margin-bottom: 10px;
        flex-direction: row;
    }
    .footer-widget h4 {
        font-size: 16px;
    }
    .footer-widget .logo img {
        width: 150px !important;
    }
    
}

@media only screen and (max-width: 767px) {

    .cart-empty-container img {
        width: 60px !important;
    }
    .promo-code-container {
        min-width: 300px !important;
        font-size: 12px !important;
      }
    .vendor_multi {
        max-width: 348px;
    }

    .req_documnet {
        padding: 20px;
    }

    .fs-30 {
        font-size: 18px;
    }

    .slider1-container {
        padding-inline: 15px;
    }

    .slider1 {
        margin: 25px 0 !important;
    }

    .product-details-img {
        max-width: 100%;
    }

    .product-imgg {
        width: 100%;
        padding: 0;
        z-index: 0;
    }

    .links-app {
        margin-top: 0px;
    }

    .top-inner {
        top: 60px;
        padding-top: 20px;
    }

    .product-right-info {
        width: 100%;
        padding: 0;
    }

    .product-modal-footer {
        padding-top: 15px;
    }

    .addon-head h5 {
        font-size: 20px;
    }

    .lsg_item {
        /* display: grid;
        grid-template-columns: repeat(3, 1fr); */
        align-items: center;
        justify-content: start;
        gap: 10px;
        width: 100% !important;
    }
    .lsg_item .dropdown {
        display: flex !important;
    }

    a.login.btn {
        margin-left: 6px;
    }

    .addon-item .item-left span {
        font-size: 16px;
    }

    .top-inner p {
        font-size: 14px;
    }

    .detail-header {
        padding: 10px 0px;
    }

    .img-card {
        position: relative;
        top: 0;
    }

    .sticky {
        position: static;
        margin-bottom: 0;
    }

    .site-footer {
        padding: 10px !important;
    }

    .img-card img {
        border-radius: 0px;
        width: 100%;
    }

    .product-modal {
        flex-direction: column;
        padding: 20px;
    }

    .productDetail-sec {
        padding-top: 10px;
        padding-bottom: 40px;
    }

    .addon-item input {
        width: 20px;
    }

    .see_detailsres a {
        padding: 8px 30px;
        background-color: #ddd;
    }

    .footer-widget .logo img {
        width: 150px;
        margin: 0 auto;
    }

    .links-app img {
        width: 134px;
        display: none;
    }

    .footer-widget {
        padding-bottom: 25px;
    }

    .botom-card ul {
        justify-content: center;
    }

    .Input-form {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 10px;
    }

    ul.navbar-nav {
        border-radius: 50px;
        margin-left: 10px;
        display: none;
    }

    .collapse {
        padding: 0;
    }

    




    .Header-form {
        margin-right: 0;
        flex-direction: column !important;
    }
    .botom-card {
        text-align: center;
    }
    .right-botom {
        text-align: center;
        flex-direction: column;
    }

    .right-botom ul {
        padding: 0;
        justify-content: center;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .offcanvas-box {
        margin-left: 4px !important;
    }

    .See-More {
        margin-bottom: 10px;
    }

    .delh-pick {
        flex-direction: column;
        gap: 10px;
    }

    .pickup-restaurant-filter{
        grid-template-columns: repeat(3, 1fr);
    }

    .card1 {
        margin: 5px 0;
    }

    .slick-prev {
        left: -40px;
    }

    .slider1 button.slick-prev.slick-arrow {
        left: 0% !important;

    }

    .slider1 button.slick-next.slick-arrow {
        right: 0% !important;

    }

    .slider2 button.slick-prev.slick-arrow {
        right: -70% !important;
        width: 25px !important;
        height: 25px !important;

    }

    .slider2 button.slick-next.slick-arrow {
        right: 0% !important;
        width: 25px !important;
        height: 25px !important;
    }

    .brand-section h4 {
        font-size: 15px;
    }

    .trending-now {
        padding: 20px;
    }

    .Checkout-head {
        padding: 20px 10px;
    }

    .vendor-name img {
        width: 45px;
        height: 45px;
    }

    .title-ts h4 {
        font-size: 18px;
        font-weight: 500;
    }

    .order-main .edit-address {
        width: 40%;
        padding-right: 0;
    }

    .product-price-total {
        padding-top: 10px;
    }

    .vendor-name h4 {
        font-size: 20px;
    }

    .checkout-Card .col-lg-7,
    .col-lg-5 {
        padding: 0;
    }

    div#DeleteItemmodal .modal-footer button {
        width: 60%;
    }

    .main-wrapper {
        width: 100%;
        padding-left: 20px;
        flex-direction: column;
    }

    .right-sumamry {
        margin-top: 20px;
    }

    .radio-option {
        margin: 0px 0px !important;
    }

    .radio-option span {
        margin: 10px 0px !important;
    }

    .card-title {
        margin: 10px;
    }

    .card-sec {
        margin-bottom: 10px;
    }

    .card-sec h2 {
        padding: 0px 15px;
    }

    .card-sec p {
        padding: 0px;
    }

    .vendorClosedModal-para-time {
        top: 71%;
        bottom: 10%;
        left: 50%;
        font-size: 13px;
        white-space: wrap;
        width: 17rem;
    }


    div#productdetailModal .modal-dialog {
        max-width: 80%;
    }
    .multiple_count {
        left: 0% !important;
    }

    .delivery-details {
        padding: 10px !important;
    }

    .total-item {
        justify-content: space-between !important;
    }

    #dynamicMap {
        margin: 0 auto;
    }
    .profile-order {
        display: flex;
        flex-direction: column !important;
    }
    .profile-order img {
        height: 120px;
        width: 120px !important;
        margin-bottom: 10px;
    }

    .order-item {
        display: flex;
        flex-direction: column !important;
    }
    .order-item img {
        height: 120px;
        width: 120px !important;
        margin-bottom: 10px;
    }
    .order-item .product-price {
        display: none;
    }
    .site-footer {
        text-align: center !important;
    }
    .social-icons {
        justify-content: center;
    }

}

@media(width:768px) {
    .vendorClosedModal-para-time {
        top: 71%;
        bottom: 10%;
        left: 50%;
        font-size: 18px;
        white-space: wrap;
        width: 17rem;
    }
}

.specify_instruction {
    padding: 12px 0px 16px;
    line-height: 28px;
    font-size: 20px;
    font-weight: 700;
}

.instruction_area {
    height: 92px;
    resize: none;
    width: 100%;
    padding: 10px 14px;
    border: none !important;
    background-color: #f3f3f3;
    border-radius: 15px !important;
}

.description_button {
    padding: 4px 10px;
    font-size: 15px !important;
    font-weight: 500;
    background-color: #ffc0b399;
    color: #000000;
    letter-spacing: 1.3px;
}

.description-text {
    overflow: hidden;
}

.read-more-btn {
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    display: none;
}

.delivery_details {
    line-height: 28px;
    font-weight: 700;
}

.cart_edit_btn {
    background-color: #feefef !important;
}

@media(max-width:475px) {
    .promo-code-container {
        min-width: 250px !important;
        font-size: 12px !important;
      }
      div#productdetailModal .modal-dialog {
        max-width: 100%;
    }
}

@media (width:375px) {

    .vendorClosedModal-para-time {
        font-size: 11px;
        word-break: break-word;
        width: 14rem;
    }
}

@media(width:320px) {
    .vendorClosedModal-para-time {
        font-size: 11px;
        word-break: break-word;
        width: 12rem;
    }

    .promo-code-container {
        min-width: 200px !important;
        font-size: 12px !important;
      }
}

/* Resturent menu time start */

.menu-container {
    width: 300px !important;
    font-family: Arial, sans-serif;
    background-color: #fff;
    overflow: hidden;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.menu-header:hover {
    background-color: #f0f0f0;
}

.menu-header .chevron-icon {
    transition: transform 0.3s ease;
}

.menu-header.active .chevron-icon {
    transform: rotate(180deg);
}

.menu-content {
    width: 300px;
    cursor: pointer;
    display: none;
    flex-direction: column;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.menu-option {
    display: flex;
    flex-direction: column;
    padding: 10px 12px;
    border-top: 1px solid #eee;
    color: #333;
}

.menu-option p {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
}

.menu-option span {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.menu-time {
    font-size: 12px;
    color: #666;
    display: block;
    margin-top: 4px;
}

.dark-mode .description_button {
    background-color: brown;
}

.description_button {
    padding: 4px 8px;
    width: fit-content;
    text-overflow: ellipsis;
    height: 24px;
    font-size: 12px;
    max-width: 100%;
    border-radius: 12px;
    background: rgb(243, 243, 243);
    -moz-box-align: center;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    line-height: 16px;
    font-weight: 500;
    font-family: UberMoveText, system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: rgb(0, 0, 0);
    display: flex;
    box-sizing: border-box;
    cursor: pointer;
    list-style: none;
    margin: 2px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .menu-content {
        cursor: pointer;
        display: none;
        flex-direction: column;
        background-color: #fff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .menu-container {
        cursor: pointer;
        width: 258px;
        font-family: 'Lato', sans-serif;
        background-color: #fff;
        overflow: hidden;
    }
}

@media (max-width: 575px) {
    .menu-container {
        width: 100% !important;
    }
    .restro-search {
        width: 100% !important;
    }
    .cart-empty-container img {
        width: 50px !important;
    }
    .location {
        white-space: nowrap !important;
        width: 80px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media screen and (max-width: 480px) {
    .menu-container {
        cursor: pointer;
        width: 100% !important;
        font-family: 'Lato', sans-serif;
        border: 1px solid #ddd;
        border-radius: 8px;
        background-color: #fff;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .menu-content {
        cursor: pointer;
        display: none;
        flex-direction: column;
        background-color: #fff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;

    }
    
    .pickup-restaurant-filter{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        overflow-y: scroll;
        scrollbar-width: none;
    }

    .location {
        width: 150px;
    }

}

@media (max-width: 375px) {
    .location {
        width: 65px;
    }
}


.by1get1span {
    color: #4caf50;
    margin-top: 2px;
    font-size: 13px !important;
    width: 105px;
    font-family: "Lato", sans-serif !important;
}



/* Resturant menu time end */

/* navbar button tab start */


/* Deliver and pickup button start */



.btn1-color {
    background-color: #f8d7da;
    color: #020202;
    border: 0px;
}


.btn1-color,
.btn1-color:focus,
.btn1-color:active {
    outline: none;
    box-shadow: none;
}

.btn-check:focus+.btn,
.btn:focus {
    box-shadow: none;
}

.main-div {
    width: 165px;
    margin-right: 14px;
}

.btn-group {
    display: flex;
}

.btn-group .btn {
    border-radius: 50px;
    transition: background-color 0.3s, z-index 0.3s;
    width: 100px;
    margin-right: -20px;
    position: relative;
}

/* Hover state - only color change, no z-index manipulation */
.btn-outline-primary:hover {
    background-color: #f5c6cb;
    color: #000;
    z-index: 1;
}

/* When the radio button is selected */
.btn-check:checked+.btn {
    background-color: #ae0014;
    color: white;
    border-color: #ae0014;
    z-index: 2 !important;
    position: relative;
    margin-right: -20px;
}

/* Button styling */
.btn-outline-primary {
    background-color: #f8d7da;
    color: #000000;
    border: 0px;
}

/* Custom Button Group Styling - Ensure proper rounded edges */
.btn-group>.btn-group:not(:last-child)>.btn,
.btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.btn-group>.btn-group:not(:first-child)>.btn,
.btn-group>.btn:not(:first-child):not(.dropdown-toggle) {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.btn1-color {
    font-size: 15px;
}


/* Deliver and pickup button End */
.order-card {
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #dbd5d561;
}

.item-countheader {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.dark-mode .dropdown-menu.show {
    background-color: #000000 !important;
}

.multiple_count {
    width: 320px;
    left: -173px !important;
    background-color: #ffffff !important;
}

.dark-mode .bg-white {
    background-color: #000000 !important;
    color: #fff !important;
}

@media only screen and (max-width: 767px) {
    .multiple_count {
        left: 0% !important;
    }
}



/* navbar button  hero section Offers Pickup Rating over 4.5  Under 30 min start*/

.feature-item-plus-button {
    text-align: right !important;
    position: absolute;
    top: 115px;
    right: 4px;
}

.feature-item-plus-button i {
    background: #fff;
    padding: 10px 11px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 0 6px #dbdbdb;
}

/* this is for herosection icon button */
.offer_btn {
    padding: 0.5rem 1.5rem;
    border-radius: 50rem;
    background-color: #f8d7da;
    border: 1px solid #ddd;
    color: #333;
    transition: all 0.3s ease;
}

.offer_btn:hover {
    background-color: #faaab0;
    border-color: #f8d7da;
    color: #000;
}

/* Optional: Adjust the select dropdown to better fit the pill shape */
.form-select.rounded-pill {
    padding-right: 2.5rem;
    height: auto;
}

/* navbar button hero section  Offers Pickup Rating over 4.5  Under 30 min start*/
/* restaurent deliver pickup location */

.pickup-location {
    width: 100%;
}

@media(max-width:768px) {

    .head-pro h6 {
        font-family: UberMoveText, system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
        color: #000000c9;
        font-size: 14px;
        font-weight: 700;
        padding-bottom: 2px;
        margin: 0;
        padding: 2px 0px;
        line-height: 24px;
        pointer-events: none;
    }

    .delivery-alert p {
        font-weight: 500;
        font-size: 12px;
        color: rgb(0, 0, 0);
        line-height: 20px;
        font-weight: normal;
        font-family: UberMoveText, system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
        white-space: wrap;
        pointer-events: none;
    }

    .delivery-alert p span {
        color: rgb(94, 94, 94);
        font-size: 12px;
        line-height: 20px;
        font-weight: normal;
        font-family: UberMoveText, system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
        white-space: wrap;
        pointer-events: none;
    }
}