/* Full Page Preloader */
/* Remove outline from all elements */

*,
*::before,
*::after {
    outline: none !important;
    box-shadow: none !important;
}
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
option:focus,
label:focus,
div:focus,
span:focus {
    outline: none !important;
    box-shadow: none !important;
}
* {
    -webkit-tap-highlight-color: transparent;
}
body {
    background: #292a2b !important ;
}
.page-preloader {
    position: fixed !important;
    top: 0;
    left: 0; 
    width: 100%;
    height: 100%;
    background: #292a2b ;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preference-text {
    text-align: center;
    margin: 30px 0 0;
    color: #ffffff;
    font-size: 20px;
}
.variation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.variation-option {
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

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

/* Single pill / circle style */
.variation-option {
     padding: 6px 14px;
      border-radius: 20px;
    border: 1px solid rgb(255 255 255 / 10%);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 8px;
	text-transform: capitalize;
	
}
#variationOptions .required-badge {
    display: none;
}
/* Selected */
.variation-option:has(input[type="radio"]:checked) {
    background: #f3f0d7;
    color: #111;
    border-color: #f3f0d7;
}

/* Hover */
.variation-option:hover {
    border-color: #fff;
}

.variation-name,
.variation-price {
    display: inline-block;
}

div#userMenuContainer {
    display: none;
}
.cart-items-list .cart-item-modifiers {
    color: #ffffff;
    font-size: 14px;
    text-transform: capitalize;
}
.cart-model-data {
     border-bottom: 1px solid rgb(255 255 255 / 10%);
    margin-bottom: 20px;
   padding-bottom: 20px;
    max-height: 300px;
    overflow-y: auto;
}
.variation-group-header h4 {
    font-size: 20px;
    color: #ffffd6;
    margin: 0 0 4px;
}
.product-grid {
    margin-bottom: 60px;
}
.page-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    padding: 20px;
}

.preloader-spinner {
    width: 45px;
    height: 45px;
    margin: 0 auto 20px;
    border: 4px solid #3a2f25;
    border-top: 4px solid #FC9D5D;
    border-right: 4px solid #FFFFD6;
    border-radius: 50%;
    animation: preloaderSpin 1s linear infinite;
}
.static-footer {
    text-align: center;
    padding: 70px 0 40px;
    border: 1px solid rgb(255 255 255 / 10%);
}
.site-btn a {
    color: #000;
    background: #FFFFD6;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.site-btn a:hover {
 color: #000;
    background: #FFFFD6;
}
@keyframes preloaderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.preloader-text {
    color: #FFFFD6;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}

.preloader-progress {
    width: 250px;
    height: 3px;
    background: #3a2f25;
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-progress-bar {
    height: 100%;
    width: 0%;
    background: #FFFFD6;
    border-radius: 3px;
    animation: progressBar 1.5s ease-out forwards;
}

@keyframes progressBar {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* Root Variables */
:root {
    --primary-color: #292A2B;
}

/* Menu wrapper initial state */
.menu-wrapper {
    opacity: 0;
    transition: opacity 0.5s ease;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Modal Styles */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(4px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.cart-modal.active {
    display: flex;
}

.cart-modal-content {
    background: #292a2b;
    width: 90%;
    max-width: 690px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cart-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #3a2f25;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-modal-header h3 {
    color: #FFFFD6;
    font-size: 1.6rem;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #aaa;
    transition: 0.2s;
}

.close-modal:hover {
    color: #FFFFD6;
}

.cart-modal-body {
    padding: 24px;
}

.product-modal-name {
    font-size: 21px;
	font-weight: 500;
    color: #fff;
    margin: 8px 0;
}

.product-modal-desc {
    color: #bbb;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 16px;
}

.modal-price {
    font-size: 1.8rem;
    color: #FFFFD6;
    font-weight: bold;
    margin-bottom:10px;
}

.quantity-label {
    display: block;
    margin-bottom: 12px;
    color: #ccc;
    font-weight: 500;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 8px 16px;
    border-radius: 60px;
    width: fit-content;
   border: 1px solid rgb(255 255 255 / 10%);
}

.qty-btn {
    border: 1px solid rgb(255 255 255 / 10%);
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
	background: transparent;
	color: #FFFFD6;
}
.qty-btn:hover {
    background: #FFFFD6;
    color: #000000;
}
.qty-row-flx {
    display: flex;
    width: 100%;
    align-items: center;
	gap: 30px;
}

.modal-actions {
    width: 100%;
}
.quantity-number {
    font-size: 15px;
    font-weight: 600;
    min-width: 50px;
    text-align: center;
    color: white;
}

.modal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-add-to-cart {
    flex: 1;
    color: #1c8c3a;
    background: #e6f4ea;
    border: 1.5px solid #1c8c3a;
    padding: 14px 20px;
    border-radius: 50px;
        font-weight: 600;
    font-size: 15px;
    cursor: pointer;
	transition: all 0.2s ease;
}
button.dropbtn {
    display: flex;
    align-items: center;
    gap: 4px;
}


 .btn-continue {
    background: transparent;
    border: 1.5px solid #FFFFD6;
    padding: 14px 20px;
    border-radius: 50px;
    color: #FFFFD6;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
	font-size: 15px;
}

.btn-continue:hover {
    background: #ffd70020;
}

/* Floating Cart Icon */
.cart-icon-fixed {
    position: fixed;
    bottom: 24px;
    right: 24px;
   background: #e6f4ea;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: 0.2s;
    color: #1c8c3a;
	border: 1.5px solid #1c8c3a;
}
.cart-icon-fixed:hover {
    transform: scale(1.05);
}

.cart-icon {
    font-size: 28px;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #1f1a14;
    color: #FFFFD6;
    font-size: 12px;
    font-weight: bold;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFFFD6;
}

/* Side Cart */
.side-cart {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #292a2b;
    z-index: 10001;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

.side-cart.open {
    right: 0;
}

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

.side-cart-header h3 {
    color: #FFFFD6;
    font-size: 20px;
}

.close-sidecart {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #ffffff;
}

.cart-items-list {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.cart-item {
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: #fff;
}

.cart-item-price {
    font-size: 12px;
    color: #FFFFD6;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-qty-btn {
	background: transparent;
    color: #FFFFD6;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.2rem;
	    border: 1px solid rgb(255 255 255 / 10%);
}


.cart-remove-btn {
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #FFFFD6;
	background: transparent;
}


.cart-footer {
        padding: 0 20px 20px 20px;
    border-top: 1px solid #3a2f25;
}

.cart-total {
    font-size: 16px;
    font-weight: bold;
    text-align: right;
    color: #FFFFD6;
}
.checkout-btn {
    color: #1c8c3a;
    background: #e6f4ea;
    border: 1.5px solid #1c8c3a;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
	width: 100%;
}
span.cart-item-qty {
    color: #ffffff;
    padding: 0 3px;
}
.empty-cart {
    text-align: center;
    color: #aaa;
    padding: 40px;
}
button.dessert-skip-btn {
/*    color: #1c8c3a; */
color:#ffffff;
	background: transparent;
/*     border: 1.5px solid #1c8c3a; */
	border : 1px solid rgb(255 255 255 / 10%);
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}
.skip-c-b5utton {
    text-align: center;
    margin-top: 50px;
}
.cart-desserts {
	position: relative;
}

.toast-notification {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #FFFFD6;
    color: #1f1a14;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: bold;
    z-index: 10002;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.toast-notification.show {
    opacity: 1;
}

/* Menu Styles */
.menu-tabs {
    position: relative;
    top: 0;
    z-index: 10;
}

.menu-nav {
    display: flex;
    gap: 12px;
}

.dropdown {
    position: relative;
    display: inline-block;
}


.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #2b241d;
    min-width: 220px;
    border-radius: 8px;
    overflow: hidden;
    z-index: 9999;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    border: 1px solid #3a2f25;
}
.dropdown:hover .dropdown-content {
    display: block;
}



.dropdown-content a:hover {
    background: #3a2f25;
    padding-left: 20px;
}

.menu-section {
    margin-bottom: 30px;
    scroll-margin-top: 100px;
}

.menu-section h2 {
    color: #FFFFD6;
    border-bottom: 1px solid #FFFFD6;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.menu-section h3 {
    color: #FFFFD6;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background: transparent;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgb(255 255 214 / 30%);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.product-card:hover {
    transform: translateY(-3px);
}

.card-data {
    flex: 1;
    max-width: 80%;
}

.card-data h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.card-data p {
    margin: 5px 0;
    font-size: 0.85rem;
    color: #ccc;
}

.price {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    font-size: 18px;
    color: #FFFFD6;
    background: rgba(0,0,0,0.3);
    padding: 4px 12px;
    border-radius: 20px;
}

.card-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #2b241d;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.menu-search-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-search-wrapper input {
    height: 40px;
    border-radius: 20px;
    padding: 20px;
}

.menu-search-wrapper button {
    border-radius: 50%;
    width: 42px;
    height: 42px;
}

.modifier-group-header h4 {
    color: #ffffd6;
    text-transform: capitalize;
	margin: 0 0 4px;
}

.modifier-group {
    margin-bottom: 20px;
    border-radius: 12px;
}
.modifier-price {
    margin-left: auto;
    color: #FFFFD6;
    font-size: 0.85rem;
}

.required-badge {
    background: #f00;
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.optional-badge {
    background: #666;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
}

.loading-modifiers {
    text-align: center;
    padding: 20px;
    color: #ccc;
}

.no-modifiers {
    text-align: center;
    padding: 20px;
    color: #ccc;
    font-style: italic;
}

/* Popup Styles */
.auto-popup-header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auto-popup-header img {
    width: 100%;
    max-width: 100px;
}

.close-popup-btn {
    position: absolute;
    right: -71px;
    top: -10px;
    transform: translateY(-50%);
    background: #FFFFD6;
    border: none;
    color: #000000;
    font-size: 20px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-weight: bold;
    line-height: 1;
	border: 1px solid #000000;
}
.auto-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.auto-popup-container {
    width: 90%;
    max-width: 700px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: slideIn 0.4s ease;
	  background-color: var(--primary-color);
}
.tab-content {
    max-height: 400px;
    overflow-y: auto;

    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: #e6e6c2 transparent;
}

/* Chrome, Edge, Safari */
.tab-content::-webkit-scrollbar {
    width: 4px;
}

.tab-content::-webkit-scrollbar-track {
    background: transparent;
}

.tab-content::-webkit-scrollbar-thumb {
    background: #e6e6c2;
    border-radius: 10px;
}

.tab-content::-webkit-scrollbar-thumb:hover {
    background: #e6e6c2;
}
@keyframes slideIn {
    from { 
        transform: translateY(-50px) scale(0.95);
        opacity: 0;
    }
    to { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.auto-popup-header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
    text-align: center;
}

/* Tab Styles */
.popup-tabs {
    display: flex;
    background-color: var(--primary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 20px;
    padding: 20px 42px 60px;
}

.tab-btn {
    flex: 1;
    max-width: 245px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 5px 5px 25px 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
}
.card-icon {
     font-size: 48px;
    margin-bottom: 15px;
    background: #201f1d;
    border-radius: 10px;
}
.card-title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
	color: #FFFFD6;
}
.tab-btn.active {
    color: #FFFFD6;
}
.tab-btn:hover {
    color: #FFFFD6;
    background-color: rgba(255,255,218,0.1);
}

.tab-content {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #fff;
    font-size: 14px;
}

/* Date Input */
.delivery-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    font-family: inherit;
    background-color: transparent;
    color: #ffffff;
    outline: 0;
}

/* Placeholder */
.delivery-input::placeholder {
    color: #ffffff;
    opacity: 0.7;
}

/* Calendar icon white */
.delivery-input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 1;
    cursor: pointer;
}


/* Time Select */
.time-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    font-family: inherit;
    background-color: transparent;
    color: #ffffff;
    outline: 0;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='white' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
    cursor: pointer;
}

/* Dropdown options readable */
.time-input option {
    color: #000000;
}

/* Focus state */
.delivery-input:focus,
.time-input:focus {
    border-color: #FFFFD6;
    box-shadow: 0 0 0 3px rgba(255,255,214,0.3);
}
.form-group label i {
    color: #FFFFD6;
    margin-right: 4px;
}
.location-search {
    display: flex;
    gap: 10px;
}

.location-search input {
    flex: 1;
}

.popup-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.popup-btn.secondary {
    background: #FFFFD6;
    color: #000;
}

input#pickupDate {
    line-height: normal;
}

.popup-btn.secondary:hover {
    background: #e6e6c2;
    transform: translateY(-1px);
}
.shop-result, 
.delivery-result strong {
    display: block;
    font-size: 13px;
    line-height: 1;
    margin-bottom: 6px;
}
.popup-btn.view-all {
    color: #1c8c3a;
    background: #e6f4ea;
    border: 1.5px solid #1c8c3a;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}
.shop-card {
    padding: 12px;
    background-color: var(--primary-color);
    border-radius: 6px;
    border-left: 3px solid #FFFFD6;
    font-size: 13px;
    line-height: 1.3;
    color: #ffffff;
}
.mb-0 {
    margin-bottom: 0;
}
.distance {
    display: inline-block;
    margin-top: 8px;
    color: #FFFFD6;
    font-weight: 500;
}
.static-address {
    color: #ffffff;
	font-size: 13px;
	    line-height: 1.4;
}
/* Suggestions dropdown for delivery address */
.suggestions-dropdown {
    position: absolute;
    z-index: 1000;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    max-height: 250px;
    overflow-y: auto;
    width: calc(100% - 40px);
    max-width: 490px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
}

.suggestion-item {
    padding: 10px 12px;
    cursor: pointer;
    font-size: 13px;
    border-bottom: 1px solid #eee;
    color: #333;
}

.suggestion-item:hover {
    background-color: #f5f5f5;
}

.delivery-error-msg {
    margin-top: 15px;
    padding: 12px;
    background-color: #f8d7da;
    color: #721c24;
    border-radius: 6px;
    font-size: 13px;
    text-align: center;
    border-left: 4px solid #dc3545;
	margin-bottom: 6px;
}

.loading-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 5px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.card-data {
    max-width: 75%;
}
.head-filture {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 20px;
}
.menu-search-wrapper input {
    height: 40px;
    border-radius: 20px;
    padding: 20px;
    background: transparent;
    border: 1px solid;
	outline: 0;
}
.menu-search-wrapper button {
    border-radius: 50%;
    width: 42px;
    height: 42px;
    background: #FFFFD6;
    color: #000000;
    border: 1px solid #FFFFD6;
}
button.add-btn {
    position: absolute;
    right: 3%;
    bottom: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 5px 22px;
    font-size: 12px;
    font-weight: 600;
    color: #1c8c3a; /* clean green */
    background: #e6f4ea; /* light green bg */
    border: 1.5px solid #1c8c3a;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}
button.add-btn i {
    position: absolute;
    right: 5px;
    top: 5px;
    font-size: 10px;
}
.product-card:has(.card-image) .add-btn {
    right: 12% !important;
}
.product-card:not(:has(.card-image)) .add-btn {
    right: 3%;
}
/* Menu Navigation Styles */
	.manual-badge {
    display: none;
}
.menu-nav {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.menu-nav-link {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
   border: 1px solid rgb(255 255 255 / 10%);
    cursor: pointer;
}

.menu-nav-link:hover {
    transform: translateY(-2px);
	color: #fff;
}
/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    color: #ffffff;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}



.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 235px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    top: 100%;
    left: 0;
    margin-top: 0px;
	
}
.dropdown-content a {
    color: #333;
    padding: 10px 12px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
	white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: #FFFFD6;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Most Popular Section */


.popular-item {
    position: relative;
}

.popular-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff6b35, #ff4757);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
    animation: pulse 2s infinite;
	display: none;
}



/* Item Count */
.item-count {
    font-size: 14px;
    color: #000000;
    font-weight: normal;
    margin-left: 10px;
    background: #FFFFD6;
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.modal-image-container {
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    background: #000000;
    max-width: 270px;
    margin: 0 auto;
}

.modal-product-img {
    width: 100%;
    max-height: 155px;
    object-fit: contain;
    border-radius: 8px;
}

.modal-image-placeholder {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #999;
    font-size: 14px;
}

.modal-image-placeholder::before {
    content: "";
    font-size: 24px;
    margin-right: 8px;
}
.text {
    background: #292a2b;
    text-align: center;
    padding: 20px 0;
}
.modifier-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.modifier-option {
    cursor: pointer;
}

.modifier-option input {
    display: none;
}
label.modifier-option {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: #fff;
    transition: 0.2s;
    border: 1px solid rgb(255 255 255 / 10%);
    text-transform: capitalize;
}
label.modifier-option:hover {
	    background: #FFFFD6;
	color: #000000;
}
label.modifier-option:hover span {
	color: #000000;
}
 .modifier-option span {
    font-size: 12px;
    color: #fff;
}
label.modifier-option:has(input:checked) {
    background: #FFFFD6;
    color: #000;
    border-color: #FFFFD6;
}

label.modifier-option:has(input:checked) span {
    color: #000;
}
.clear-search-btn {
    position: absolute;
    right: 65px;
    top: 52%;
    transform: translateY(-50%);
    cursor: pointer;
    display: none;
    font-size: 15px;
}
.delivery-fee-note {
    color: #ffff;
}
.delivery-fee-label {
    color: #FFFFD6;
}
.delivery-fee-amount {
    color: #ffff;
}
.delivery-popup {
    display: flex;
	    align-items: baseline;
    gap: 15px;
}
.static-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
	margin-bottom: 50px;
	position: relative;
}

/* location popup css */
   /* Back button styles */
        .back-button {
            position: absolute ;
            left: 15px ;
            top: 50% ;
            transform: translateY(-50%) ;
            background: rgba(255, 255, 255, 0.2) ;
            border: 1px solid rgba(255, 255, 255, 0.3) ;
            color: white ;
            padding: 6px 14px ;
            border-radius: 25px ;
            cursor: pointer ;
            font-size: 13px ;
            font-weight: 500 ;
            z-index: 11 ;
            transition: all 0.3s ease ;
            font-family: inherit ;
        }

        .back-button:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) translateX(-3px) ;
        }
        
        /* Ensure popup container has relative positioning */
        .auto-popup-container {
            position: relative;
        }
        
        /* Hide tab buttons container when back button is active */
        .popup-tabs.hidden {
            display: none;
        }
        
        /* Time slot message styles */
        .time-slot-info, .time-slot-error {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            animation: slideDown 0.3s ease;
            font-size: 13px;
            position: relative;
        }
        
        .time-slot-info {
            color: #FFFFD6;
        }
        
        .time-slot-error {
            background: linear-gradient(135deg, #5f1e1e, #822c2c);
            border-left: 4px solid #ff6b6b;
            color: #fff;
        }
        
        .message-icon {
            font-size: 20px;
            flex-shrink: 0;
        }
        
        .message-text {
            flex: 1;
            line-height: 1.4;
        }
        
        .message-close {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }
        
        .message-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
.orignal-result{
	display: none;
	padding: 12px;
	background-color:var(--primary-color);
	border-radius: 6px;
	border-left: 3px solid #FFFFD6;
}
.pickup-info-tab{
	font-size: 13px;
	color: #fff;
}
/* All child blocks */
.delivery-tab-info,
.orignal-result,
.pickup-info-tab,
.delivery-result {
    flex: 1 1 0;
}

/* If only one child is visible → full width */
.delivery-popup > *:only-child {
    flex: 0 0 100%;
}
.detct-add-class{
	font-size: 13px;
	color: #fff;
	line-height: 1.4;
}
/* status info band */
.pickup-info-band {
            position: relative;
            top: 0;
            left: 0;
            right: 0;
            background: #292a2b;
            border-bottom: 3px solid #FFFFD6;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            animation: slideDown 0.3s ease;
            margin-bottom: 20px;
        }
        
        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .band-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .band-left {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .band-icon {
            font-size: 16px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
			border: 1px solid rgb(255 255 255 / 10%);
			color: #FFFFD6;
        }
        
        .band-text {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        
        .band-text strong {
            color: #FFFFD6;
            font-size: 14px;
            font-weight: 600;
        }
        
        .band-text span {
            color: #e0e0e0;
            font-size: 12px;
        }
        
        .band-change-btn {
            background: #FFFFD6;
            color: #000;
            border: none;
            padding: 8px 20px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 13px;
            transition: all 0.2s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .band-change-btn:hover {
            background: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }
/* band css*/
.band-container {
    display: none;
}
/* band css end*/
select#deliveryTime option {
    color: #000;
}
.delivery-fields.gap-column {
    gap: 150px;
}
.distance {
    background-color: #f8d7da;
    color: #721c24;
    padding: 6px 10px;
    border-radius: 6px;
    border-left: 4px solid #dc3545;
    margin: 10px 0;
    font-size: 13px;
}

/* ============================= */
/* 🌞 LIGHT THEME OVERRIDES */
/* ============================= */

body.light-theme {
    background: #f8f9fb !important;
    color: #111;
}
	body.light-theme span.product-rating i {
    color: #ffc107;
}
body.light-theme .preference-text {
	color: #000000;
}
body.light-theme .static-footer {
	border-top: 1px solid #ddd;
	}
body.light-theme .logo-side img {
    filter: invert(1);
}
body.light-theme  .variation-group-header h4{
	color: #000000;
}
body.light-theme .time-slot-info {
    color: #000
}
body.light-theme .variation-option {
    color: #000;
    border: 1px solid #ddd;
}
body.light-theme  .card-title {
	color: #000000;
}
.variation-option:has(input[type="radio"]:checked) {
	background: #000000;
	color: #ffffff;
}

body.light-theme span.cart-item-qty {
    color: #000;
}
body.light-theme .cart-remove-btn {
    color: #000;
}
body.light-theme .card-icon {
    background:#f5f5f5;
}
body.light-theme .form-group label i {
    color: #000;
}
body.light-theme .tab-content {

    scrollbar-color: #8e8e8e transparent;
}
body.light-theme .delivery-input {
    color: #000000;
	border: 1px solid #ddd;
}
body.light-theme  .dessert-item {
    padding: 16px;
    border: 1px solid #ddd;
}
body.light-theme button.dessert-skip-btn {
    color: #000000;
}
body.light-theme .desert-container h4 {
    color: #000000;
}
body.light-theme .desert-container p {
 color: #555;
}
body.light-theme  .dessert-item h3.rating-include {
    color: #000000;
}
body.light-theme span.dessert-item-price {
    color: #000000;
}
/* Scrollbar Track */
/* Track background */
body.light-theme  .dessert-items::-webkit-scrollbar-track {
    background: #ddd;
}

/* Scrollbar Thumb */
body.light-theme  .dessert-items::-webkit-scrollbar-thumb {
    background: #000000;
    border-radius: 0;
}
body.light-theme  button.popup-btn.a-and-c.skip-btn {
    color: #000000;
}
body.light-theme.gigt-text {
 color: #000000;
}
/* Placeholder (light theme) */
body.light-theme .delivery-input::placeholder {
    color: #000000;
    opacity: 0.5;
}

/* Calendar icon (make it dark for light bg) */
body.light-theme .delivery-input::-webkit-calendar-picker-indicator {
    filter: invert(0); /* default (dark icon) */
    opacity: 1;
    cursor: pointer;
}
body.light-theme .time-input {
    color: #000000;
	border: 1px solid #ddd;
}

/* Cards */
body.light-theme .product-card {
    border: 1px solid #ddd;
}

body.light-theme .card-data h3 {
    color: #111;
}

body.light-theme .card-data p {
    color: #555;
}

body.light-theme .price {
    color: #111;
}

body.light-theme .cart-qty-btn {
    border: 1px solid #000000;
    color: #000000;
}
/* Menu section */
body.light-theme .menu-section h2 {
    color: #333;
    border-color: #ddd;
}

body.light-theme .menu-section h3 {
    color: #111;
}

/* Dropdown */
body.light-theme .dropdown-content {
    background: #ffffff;
    border: 1px solid #ddd;
}

body.light-theme .dropdown-content a {
    color: #111;
}

body.light-theme .dropdown-content a:hover {
    background: #f1f1f1;
}

/* Modal */
body.light-theme .cart-modal-content {
    background: #ffffff;
    color: #111;
    border: 1px solid #ddd;
}

body.light-theme .product-modal-name {
    color: #111;
}

body.light-theme .product-modal-desc {
    color: #555;
}

body.light-theme .modal-price {
    color: #000;
}

/* Quantity box */
body.light-theme .quantity-controls {
    border: 1px solid #ddd;
}

body.light-theme .qty-btn {
    background: #ddd;
    color: #000;
}

body.light-theme .qty-btn:hover {
    background: #000;
    color: #fff;
}

/* Side Cart */
body.light-theme .side-cart {
    background: #ffffff;
}
body.light-theme .cart-item-name {
    color: #111;
}

body.light-theme .cart-item-price {
    color: #333;
}

body.light-theme .cart-total {
    color: #000;
}

/* Buttons */
body.light-theme .btn-continue {
    border-color: #000;
    color: #000;
}

/* Search */
body.light-theme .menu-search-wrapper input {
    background: #fff;
    border: 1px solid #ccc;
    color: #000;
}

body.light-theme .menu-search-wrapper button {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Popup */
body.light-theme .auto-popup-container {
    background: #ffffff;
}

body.light-theme .auto-popup-header {
    background: #ffffff;
}

body.light-theme .popup-tabs,
body.light-theme .tab-content,
body.light-theme .popup-footer {
    background: #ffffff;
}

body.light-theme .form-group label {
    color: #111;
}
body.light-theme .shop-card {
    color: #000000;
    background: #ffffd6;
    border: 0;
    border-radius: 0;
}

/* Toast */
body.light-theme .toast-notification {
    background: #000;
    color: #fff;
}
body.light-theme .cart-modal-header h3 {
      color: #000;
}
body.light-theme .side-cart-header h3 {
      color: #000;
}
body.light-theme .modifier-group {
    background: none;
}
body.light-theme .modifier-group-header h4 {
   color: #000;
}
/* ============================= */
/* 🌞 LIGHT THEME OVERRIDES */
/* ============================= */

body.light-theme {
    background: #f8f9fb !important;
    color: #111;
}
/* Cards */

body.light-theme .card-data h3 {
    color: #111;
}

body.light-theme .card-data p {
    color: #555;
}

body.light-theme .price {
    color: #000000;
	border: 1px solid #ddd;
}

/* Menu section */
body.light-theme .menu-section h2 {
    color: #333;
    border-color: #ddd;
}

body.light-theme .menu-section h3 {
    color: #000000;
}

/* Dropdown */
body.light-theme .dropdown-content {
    background: #ffffff;
    border: 1px solid #ddd;
}

body.light-theme .dropdown-content a {
    color: #111;
}

body.light-theme .dropdown-content a:hover {
    background: #f1f1f1;
}

/* Modal */
body.light-theme .cart-modal-content {
    background: #ffffff;
    color: #111;
    border: 1px solid #ddd;
}

body.light-theme .product-modal-name {
    color: #111;
}

body.light-theme .product-modal-desc {
    color: #555;
}

body.light-theme .modal-price {
    color: #000000;
}

/* Cart Modal Header */
body.light-theme .cart-modal-header h3 {
    color: #000000;
}

body.light-theme .close-modal {
    color: #666;
}
/* Quantity box */
body.light-theme .qty-btn {
    background: transparent;
    color: #000000;
    border: 1px solid #e9e8e8;
}

body.light-theme .qty-btn:hover {
    background: #000;
    color: #fff;
}

body.light-theme .quantity-number {
    color: #000000;
}

body.light-theme .quantity-label {
    color: #333;
}

/* Side Cart */
body.light-theme .side-cart {
    background: #ffffff;
}

body.light-theme .side-cart-header h3 {
    color: #000000;
}

body.light-theme .close-sidecart {
    color: #666;
}
body.light-theme .cart-item-name {
    color: #111;
}

body.light-theme .cart-item-price {
    color: #000000;
}

body.light-theme .cart-total {
    color: #000000;
}

body.light-theme .empty-cart {
    color: #666;
}

body.light-theme input#pickupDate::-webkit-calendar-picker-indicator {
    filter: brightness(0);
    opacity: 1;
    cursor: pointer;
}
body.light-theme .time-input {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	    background-size: 20px;
}
/* Buttons */
body.light-theme .btn-continue {
    border-color: #000;
    color: #000;
}

/* Floating Cart Icon */
body.light-theme .cart-icon-fixed {
    background: #000000;
    color: #ffffff;
}

body.light-theme .cart-badge {
    background: #ffffff;
    color: #000000;
    border: 1px solid #000000;
}
/* Search */
body.light-theme .menu-search-wrapper input {
    background: #fff;
    border: 1px solid #ccc;
    color: #000;
}

body.light-theme .menu-search-wrapper input::placeholder {
    color: #999;
}

body.light-theme .menu-search-wrapper button {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Add Button */
body.light-theme button.add-btn {
    background: #e6f4ea;
    color: #1c8c3a;
    border: 1.5px solid #1c8c3a;
}

body.light-theme button.add-btn:hover {
    background: #1c8c3a;
    color: #ffffff;
}

/* Menu Navigation */
body.light-theme .menu-nav-link {
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
}


body.light-theme .popular-link,
body.light-theme .items-link {
    color: #000000;
}

body.light-theme .dropbtn {
    background-color: #fff;
    color: #000000;
    border: 1px solid #ddd;
}


/* Modifier Group */
body.light-theme .modifier-group-header h4 {
    color: #000000;
}

/* default text in light theme */
body.light-theme label.modifier-option {
    border: 1px solid #ddd;
    color: #333;
}

body.light-theme .modifier-option span {
    color: #333;
}

/* hover (apply on label, not span only) */
body.light-theme label.modifier-option:hover {
    background: #000;
    color: #fff;
}

body.light-theme label.modifier-option:hover span {
    color: #fff;
}

/* ✅ checked state (IMPORTANT) */
body.light-theme label.modifier-option:has(input:checked) {
    background: #000;
    color: #fff;
    border-color: #000;
}

body.light-theme label.modifier-option:has(input:checked) span {
    color: #fff;
}
body.light-theme  .cart-items-list .cart-item-modifiers {
	color: #000000;
}
body.light-theme .modifier-price {
    color: #000000;
}

/* Popup */
body.light-theme .auto-popup-container {
    background: #ffffff;
}

body.light-theme .auto-popup-header {
    background: #ffffff;
}

body.light-theme .text {
    background: #ffffff;
    color: #000000;
}

body.light-theme .popup-tabs,
body.light-theme .tab-content,
body.light-theme .popup-footer {
    background: #ffffff;
}

body.light-theme .form-group label {
    color: #000000;
}
body.light-theme input.popup-input.popup-search {
    border: 1px solid #ddd;
	color: #000000;
}
body.light-theme .popup-input:focus {
    border-color: #000000;
}
body.light-theme .distance {
    color: #000000;
}

body.light-theme .delivery-fee-label {
    color: #000000;
}

body.light-theme .delivery-fee-amount,
body.light-theme .delivery-fee-note {
    color: #000000;
}
body.light-theme .popup-btn.secondary {
    background: #000000;
    color: #ffffff;
}

body.light-theme .popup-btn.view-all {
    color: #000000;
        border: 1px solid #ddd;
}

/* Suggestions Dropdown */
body.light-theme .suggestions-dropdown {
    background: #ffffff;
    border: 1px solid #ddd;
}

body.light-theme .suggestion-item {
    color: #333;
    border-bottom: 1px solid #eee;
}

body.light-theme .suggestion-item:hover {
    background: #f5f5f5;
}

/* Toast Notification */
body.light-theme .toast-notification {
    background: #000000;
    color: #ffffff;
}

/* Item Count */
body.light-theme .item-count {
    background: #f0f0f0;
    color: #000000;
}

/* Modal Image Container */
body.light-theme .modal-image-container {
    background: #f5f5f5;
}

/* Required/Optional Badges */
body.light-theme .required-badge {
    background: #ff4444;
    color: white;
}

body.light-theme .optional-badge {
    background: #999;
    color: white;
}

/* Loading States */
body.light-theme .loading-modifiers,
body.light-theme .no-modifiers {
    color: #666;
}

/* Delivery Error Message */
body.light-theme .delivery-error-msg {
    background-color: #f8d7da;
    color: #721c24;
}
body.light-theme .back-button  {
  background:#000 !important;
}
body.light-theme .tab-btn {
     border: 2px solid #000;
	color: #000;
}
body.light-theme .tab-btn.active {
        color: #000;
}
body.light-theme .auto-popup-header img {
        filter: invert(1);
}
body.light-theme .pickup-info-tab {
    color: #000;
}
body.light-theme .orignal-result {
    background-color: #ffffd6;
}
body.light-theme .detct-add-class {
     color: #000;
}
body.light-theme .card-image {
        background: #f8f9fb;
}
body.light-theme .static-address {
    color: #000;
}
body.light-theme .cart-items-list {
        scrollbar-color: #FFFFD6 #eee;
    }

 body.light-theme .cart-items-list::-webkit-scrollbar {
        width: 8px;
    }

 body.light-theme .cart-items-list::-webkit-scrollbar-track {
        background: #eee;
        border-radius: 10px;
    }

body.light-theme .cart-items-list::-webkit-scrollbar-thumb {
        background: #FFFFD6;
        border-radius: 10px;
        border: 2px solid #eee;
    }

 body.light-theme .cart-items-list::-webkit-scrollbar-thumb:hover {
        background: #f5f5a5;
    }
/* ============================= */
/* 🌞 LIGHT THEME - PICKUP BAND */
/* ============================= */

body.light-theme .pickup-info-band {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%) !important;
    border-bottom: 3px solid #ddd !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08) !important;
}
/* Icon */
body.light-theme .band-icon {
        border: 1px solid #ddd;
    color: #000000 !important;
}

/* Main heading */
body.light-theme .band-text strong {
    color: #111 !important;
}

/* Sub text */
body.light-theme .band-text span {
    color: #555 !important;
}

/* Button */
body.light-theme .band-change-btn {
    background: #000 !important;
    color: #fff !important;
}

body.light-theme .band-change-btn:hover {
    background: #333 !important;
    transform: translateY(-2px);
}
/* Smooth transition for all elements */
body, 
.product-card,
.cart-modal-content,
.side-cart,
.popup-input,
.btn-add-to-cart,
.theme-toggle {
    transition: all 0.3s ease;
}
/* Smooth transition */
body {
    transition: background 0.3s ease, color 0.3s ease;
}
.short-head-right {
    display: flex;
    align-items: center;
    gap: 40px;
}
button.signup-modal-icn {
    background: #000000;
    border: 0;
    color: #ffffff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
}
.auto-popup-container {
    padding: 20px 60px 60px;
}
.close-sidecart {
    width: 40px;
    height: 40px;
    background: #FFFFD6;
    border-radius: 50%;
    line-height: normal;
	color: #000000;
}
.no-results-message {
    background: #ffffd6;
    text-align: center;
    font-weight: 700;
    color: #000000;
    border-radius: 18px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Main Toggle */
.theme-toggle-switch{
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

/* Hide old labels */
.theme-toggle-switch .light-text,
.theme-toggle-switch .dark-text{
    display: none;
}

/* Switch Track */
.theme-toggle-switch .switch-track{
    width: 60px;
    height: 32px;
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 50px;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 10px 0 36px;
    box-sizing: border-box;
    overflow: hidden;

    transition: all .45s ease;
}

/* Toggle Circle */
.theme-toggle-switch .switch-thumb{
    width: 26px;
    height: 26px;
    background: #FFFFD6;
    border-radius: 50%;

    position: absolute;
    left: 3px;
    top: 3px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all .45s cubic-bezier(.68,-0.55,.27,1.55);

    box-shadow: 0 2px 8px rgba(0,0,0,.25);
    z-index: 2;
}

/* Hover */
.theme-toggle-switch:hover .switch-thumb{
    transform: scale(1.05);
}

/* Text */
.theme-toggle-switch .mode-text{
    width: 100%;

    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .7px;
    font-family: Arial, sans-serif;

    white-space: nowrap;
    text-align: center;

    transition: all .35s ease;
}

/* Icons */
.theme-toggle-switch .moon-icon,
.theme-toggle-switch .sun-icon{
    position: absolute;
    font-size: 12px;
    transition: all .35s ease;
}

/* Dark Mode Default */
.theme-toggle-switch .moon-icon{
    opacity: 1;
    color: #000;
    transform: rotate(0deg);
}

.theme-toggle-switch .sun-icon{
    opacity: 0;
    color: #fff;
    transform: rotate(180deg);
}

/* =========================
   LIGHT MODE ACTIVE
========================= */

.theme-toggle-switch.active .switch-track{
    background: #fff;
    border: 1px solid #ddd;

    /* extra left space for text */
    padding: 0 34px 0 10px;
}

/* Move Circle Right */
.theme-toggle-switch.active .switch-thumb{
    left: calc(100% - 29px);
    background: #000;
}

/* Fix Light Text */
.theme-toggle-switch.active .mode-text{
    color: #000;
    text-align: left;
    padding-left: 2px;
    letter-spacing: .5px;
}

/* Icon Animation */
.theme-toggle-switch.active .moon-icon{
    opacity: 0;
    transform: rotate(-180deg);
}

.theme-toggle-switch.active .sun-icon{
    opacity: 1;
    transform: rotate(0deg);
}
.theme-mode-switch {
    display: flex;
    justify-content: end;
    margin-bottom: 0;
}
.menu-and-tab {
    display: flex;
    align-items: center;
    gap: 20px;
}
button.close-modal.model-close {
    position: absolute;
    right: -2%;
    background: #FFFFD6;
    width: 30px;
    height: 30px;
    line-height: 1;
    border-radius: 30px;
    top: -2%;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #000;
}
.cart-modal-content {
    position: relative;
}
/* Row */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    box-sizing: border-box;
}

/* Column */
.col-md-6 {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}
.delivery-minimum-text {
    background-color: #f8d7da;
    color: #721c24;
    padding: 6px 10px;
    border-radius: 6px;
    border-left: 4px solid #dc3545;
    margin: 10px 10px;
    width: 100%;
    text-align: center;
    font-size: 10px;
}
.location-search {
    align-items: center;
}

span.or-sprator {
    width: 30px;
    height: 30px;
    background-color: #f8d7da;
    color: #721c24;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: 700;
}
input.popup-input.popup-search {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 6px;
    background: transparent;
    color: #fff;
    outline: 0;
}
.dilivery-rec-info {
    background: transparent;
    width: 100%;
    padding: 6px;
    border-radius: 6px;
}
span.product-rating {
    font-size: 14px;
	padding-left: 7px;
}
/* Responsive Styles */
.order-analize {
    margin: 10px 0 10px;
    display: inline-block !important;
    width: auto;
    padding: 3px 15px;
    color: #000000;
    border-radius: 30px;
    background: #ffffd6;
    font-size: 14px;
}
span.product-rating i {
    color: #fff2a4;
}
button.popup-btn.a-and-c {
    color: #1c8c3a;
    background: #e6f4ea;
    border: 1.5px solid #1c8c3a;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}
.gigt-text {
    text-align: center;
    color: #ffffff;
    margin-bottom: 15px;
}

.dessert-items {
    display: flex;
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 10px;
    margin-bottom: 30px;
    max-width: 100%;
    overflow-x: auto;
	padding-bottom: 20px;
}
.dessert-items .dessert-items {
    min-width: 300px;
}

.product-card {
    min-width: 258px;
}
.desserts-step .product-card {
    display: block;
}
.desserts-step .qty-price-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 5px;
}
.desserts-step .qty-btn {
    width: 20px;
    height: 20px;
    font-size: 10px;
    line-height: 1;
}
.desserts-step .quantity-number {
    font-size: 12px;
    min-width: 15px;
}
.desserts-step .quantity-controls {
    gap: 4px;
	   padding: 8px 12px;
}
.desserts-step .product-card h3 {
    font-size: 16px;
}
.desserts-step  button.add-item-btn {
    color: #1c8c3a;
    background: #e6f4ea;
    border: 1.5px solid #1c8c3a;
    padding: 7px 10px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}
button.popup-btn.a-and-c.skip-btn {
    background: transparent;
    border: 0;
    color: #ffffff;
}
/* Scrollbar Track */
.dessert-items::-webkit-scrollbar {
    height: 6px;
}

/* Track background */
.dessert-items::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 10px;
}

/* Scrollbar Thumb */
.dessert-items::-webkit-scrollbar-thumb {
    background: #FFFFD6;
    border-radius: 0;
}
.desserts-step .card-data {
    margin-bottom: 20px;
}
.cart-desserts {
    padding: 16px;
    border-top: 1px solid #3a2f25;
}
.desert-container p {
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}
.cart-desserts {
    padding: 16px;
    border-top: 1px solid #3a2f25;
}

.desert-container h4 {
    color: #FFFFD6;
    font-size: 20px;
    text-align: center;
    line-height: 1.2;
    margin: 0;
}

.desert-container p {
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}
.dessert-item h3.rating-include {
    color: #ffffff;
    font-size: 16px;
    margin: 0 0 10px;
}
.dessert-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.dessert-item {
    padding: 16px;
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 10px;
    position: relative;
}
.dessert-item span.product-rating {
    display: block;
    padding-left: 0;
    font-size: 10px;
}
.ft-flex {
    display: flex;
    align-items: center;
}
span.dessert-item-price {
    font-size: 12px;
    color: #ffffd6;
}
.ad-c-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 16px;
    width: 100%;
}

button.dessert-continue {
    color: #1c8c3a;
    background: #e6f4ea;
    border: 1.5px solid #1c8c3a;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}
.desert-container {
    padding-top: 40px;
	padding-left: 2%;
	padding-right: 2%;
	
}
.dessert-item  .qty-btn {
    width: 20px;
    height: 20px;
    font-size: 12px;
    line-height: 1;
}
.dessert-item  .dessert-qty-number {
    font-size: 12px;
    font-weight: 600;
    padding: 0 2px;
}
  .cart-items-list {
        scrollbar-color: #FFFFD6 #2a2a2a;
    }

    .cart-items-list::-webkit-scrollbar {
        width: 8px;
    }

    .cart-items-list::-webkit-scrollbar-track {
        background: #2a2a2a;
        border-radius: 10px;
    }

    .cart-items-list::-webkit-scrollbar-thumb {
        background: #FFFFD6;
        border-radius: 10px;
        border: 2px solid #2a2a2a;
    }

    .cart-items-list::-webkit-scrollbar-thumb:hover {
        background: #e6e6a8;
    }

@media only screen and (max-width: 1370px ) { 
.auto-popup-container {
    padding: 20px 60px 20px;
}
	.auto-popup-header img {
    max-width: 80px !important;
}
	.form-group {
    margin-bottom: 10px;
}
}
@media only screen and (max-width: 1025px ) { 
.menu-nav-link {
    padding: 10px 12px;
}
	.product-grid {
    grid-template-columns: repeat(2, 1fr);
}
	button.close-modal.model-close {
    right: 50%;
    transform: translate(50%, -10%);
}
	.close-popup-btn {
    right: 50%;
    top: -10px;
    transform: translate(50%, -75%);
}
}
@media only screen and (max-width: 991px ) {
		.product-card {
    border: 0 !important;
    border-bottom: 1px dashed !important;
    border-radius: 0!important;
			padding: 0 !important;
    padding-bottom: 30px !important;
}
	body.light-theme .product-card {
    border-bottom: 1px dashed #ddd !important;
}
	.location-search {
    margin-bottom: 10px;
}
.delivery-fields.gap-column {
    gap: 10px;
}
.delivery-popup {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
	   .col-md-6 {
        width: 100%;
    }
	.side-cart-header h3 {
    margin: 0;
}
	.side-cart-header {
    padding: 10px 20px;
}
}
@media only screen and (max-width: 767px) {
	button.close-modal.model-close {
    right: 50%;
    width: 30px;
    height: 30px;
    top: 0;
    transform: translate(50%, -50%);
}
	.cart-items-list{
    padding-bottom: 30px;

}
	.menu-and-tab {
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
	
	.menu-search-wrapper input {
    width: 100%;
}

	.cart-icon-fixed {
    width: 45px;
    height: 45px;
}
	.cart-icon {
    font-size: 18px;
}
	.cart-badge {
    font-size: 12px;
    width: 18px;
    height: 18px;
}
	.menu-section h2 {
        font-size: 22px;
    }
	.popup-tabs {
    padding: 20px 20px 20px;
}
	.auto-popup-container {
    overflow: hidden;
}
	.qty-row-flx {
    gap: 8px;
}
	.menu-section h2 {
    margin: 0 0 15px;
}
	.menu-section {
    margin-bottom: 0;
}
	.quantity-controls {
    padding: 8px 10px;
}
	.btn-add-to-cart {
    padding: 10px 12px;
		font-size: 12px;
}
	.auto-popup-container {
    padding: 15px;
}
.close-popup-btn {
        right: 3%;
        top: 4%;
        transform: none;
    }
	.qty-btn {
    width: 25px;
    height: 25px;
		line-height: 1;
}
	.quantity-number {
    min-width: 20px;
}
	.theme-head {
    display: flex;
    flex-wrap: wrap-reverse;
}
	.head-filture {
    margin-bottom: 10px;
}
	.head-filture.stickey-head {
    position: fixed;
    background: #292a2b;
    top: 0;
    left: 0;
    z-index: 999;
    border-bottom: 1px solid #ffffd6;
	padding: 10px;
}
	body.light-theme .head-filture.stickey-head {
    background: #ffffff;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 0 10px #dfdfdf;
}
	
	.menu-search-wrapper {
    width: 100%;
}
	.menu-search-wrapper button {
    min-width: 42px;
}
	.dropbtn {
    padding: 6px 6px;
    font-size: 12px;
}
	.menu-nav-link {
		 padding: 6px 6px;
    font-size: 12px;
}
.menu-and-tab {
    gap: 7px;
}	
	    .head-filture {
			gap: 7px;
    }
    .product-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .card-image {
        width: 80px;
        height: 80px;
    }
    
    .product-card {
        padding: 15px;
    }
    
    .menu-section {
        padding: 10px;
    }
    
    .menu-wrapper {
        padding: 10px;
    }
    
    .card-data {
        max-width: 70%;
    }   
       .dropdown {
        width: auto;
    }
    
    .dropbtn {
        width: 100%;
        text-align: center;
    }
    
    .dropdown-content {
        width: 100%;
    }
    .dropdown-content {
    left: 0;
    right: inherit;
}
	.dropdown-content {
    border-radius: 0;
}
    .dropdown.active .dropdown-content {
        display: block;
    }
	.head-filture {
		        flex-wrap: wrap-reverse;
}
   .band-container {
                flex-direction: column;
                text-align: center;
            }
            
            .band-left {
                justify-content: center;
            }
            
            .band-change-btn {
                width: 100%;
            }
	.menu-nav {
    gap: 5px;
}
	.head-filture {
    padding: 10px 0;
}
	.short-head-right {
    gap: 0;
    width: 100%;
    justify-content: space-between;
}
.cart-modal-body {
    max-height: max-content;
    overflow-y: auto;
}
	.cart-modal-body {
    padding: 15px;
}
	.product-grid {
    margin-bottom: 20px;
}
/* 	test sidebar in mobile */
/* Fix iPhone Safari 100vh issue */

.side-cart{
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;

    /* Better mobile height support */
    height: 100%;
    height: 100dvh;
    z-index: 10001;

    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,.5);

    display: flex;
    flex-direction: column;

    overflow: hidden;
}

/* Scroll Area */
.cart-items-list{
    flex: 1;
    overflow-y: auto;

    /* space for footer */
    padding-bottom: 30px;

    -webkit-overflow-scrolling: touch;
}

/* Sticky Footer */
.cart-footer{
    position: sticky;
    bottom: 0;
    left: 0;
    padding: 15px;

    z-index: 5;

    /* iPhone safe area */
    padding-bottom: calc(15px + env(safe-area-inset-bottom));
}

/* Extra Fix for iOS Safari */
@supports (-webkit-touch-callout: none){

    .side-cart{
        height: -webkit-fill-available;
    }

}
	
	.cart-remove-btn {
    width: 30px;
    height: 30px;
}

}


/* Tablet */
/* Mobile */
@media (max-width: 576px) {
    .row {
        margin-left: 0;
        margin-right: 0;
    }

    .col-md-6 {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }
}
@media (max-width: 480px) {
    .auto-popup-container {
        width: 95%;
        max-height: 95vh;
    }
    
    .location-search {
        flex-direction: column;
    }
    
    .popup-btn.view-all {
        width: 100%;
    }
    
    .suggestions-dropdown {
        width: calc(100% - 30px);
    }
}
@media (max-width: 370px) {
    .menu-nav-link {
        font-size: 10px;
    } 
	.dropbtn {
        font-size: 10px;
    }
}