/* Coffito Kitchen Delivery - Matching Menu Style */
:root {
    /* Brand Colors - same as menu */
    --primary-brown: #A67C52;
    --primary-brown-dark: #8B6644;
    --primary-brown-light: #C4A484;
    --accent-green: #6B8E4E;
    --accent-green-light: #8DB070;

    /* Backgrounds */
    --bg-page: #FAF7F2;
    --bg-header: #F5EFE6;
    --bg-card: #FFFFFF;

    /* Text */
    --text-dark: #3D3229;
    --text-medium: #6B5D4D;
    --text-light: #9A8B7A;
    --text-muted: #B8A99A;

    /* Borders & Shadows */
    --border-light: rgba(166, 124, 82, 0.2);
    --border-card: rgba(61, 50, 41, 0.1);
    --shadow-card: 0 4px 20px rgba(61, 50, 41, 0.08);
    --shadow-hover: 0 8px 30px rgba(61, 50, 41, 0.12);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Layout */
    --header-height: 70px;
}

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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-page);
    color: var(--text-dark);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

/* Prevent zoom on buttons and interactive elements */
button,
input,
select,
textarea,
a,
.add-btn,
.quantity-controls,
.quantity-controls button,
.category-btn,
.modal-add-btn,
.modal-close-btn,
.floating-cart-btn {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: 16px;
}

.app-container {
    width: 100%;
    max-width: 100%;
}

/* ================= LOADING SCREEN ================= */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-page);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.loading-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.loading-brand span {
    font-family: 'Georgia', serif;
    font-style: italic;
    color: var(--accent-green);
}

.loading-status {
    font-size: 0.9rem;
    color: var(--text-light);
}

.loading-status .dot {
    animation: dotPulse 1.4s infinite;
}
.loading-status .dot:nth-child(2) { animation-delay: 0.2s; }
.loading-status .dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ================= HEADER ================= */
.header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-header);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    max-width: 1200px;
    margin: 0 auto;
    transition: padding 0.3s ease;
}

.header-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.header-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-title h1 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: default;
    transition: font-size 0.3s ease;
}

.header-title h1 .kitchen {
    font-family: 'Georgia', serif;
    font-style: italic;
    color: var(--accent-green);
}

.delivery-badge {
    background: var(--primary-brown);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.2s ease, width 0.3s ease, padding 0.3s ease, margin 0.3s ease;
}

.header-subtitle {
    font-size: 0.75rem;
    color: var(--text-light);
    transition: opacity 0.2s ease, height 0.3s ease, margin 0.3s ease;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-btn,
.cart-header-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-card);
    transition: all 0.2s;
    position: relative;
}

.search-btn:hover,
.cart-header-btn:hover {
    background: var(--primary-brown);
    color: white;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--accent-green);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================= SEARCH ================= */
.search-container {
    display: none;
    padding: 12px 16px;
    background: var(--bg-header);
    border-bottom: 1px solid var(--border-light);
}

.search-container.active {
    display: block;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: white;
    border-radius: var(--radius-md);
    padding: 0 12px;
    box-shadow: var(--shadow-card);
}

.search-input-wrapper i {
    color: var(--text-light);
}

.search-input-wrapper input {
    flex: 1;
    border: none;
    background: none;
    padding: 12px;
    outline: none;
    color: var(--text-dark);
}

.search-close {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 8px;
}

/* ================= DELIVERY BANNER ================= */
.delivery-banner {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-header);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.delivery-banner::-webkit-scrollbar {
    display: none;
}

.banner-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 8px 12px;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    color: var(--text-medium);
    white-space: nowrap;
    box-shadow: var(--shadow-card);
}

.banner-item i {
    color: var(--primary-brown);
}

.banner-item.highlight {
    background: var(--accent-green);
    color: white;
}

.banner-item.highlight i {
    color: white;
}

/* ================= CATEGORY NAV ================= */
.category-nav {
    background: var(--bg-page);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

/* View Toggle Button */
.view-toggle-btn {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--text-medium);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
    z-index: 10;
}

.view-toggle-btn:hover {
    background: var(--primary-brown);
    color: white;
    border-color: var(--primary-brown);
}

.category-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 16px 0 56px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar {
    display: none;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-medium);
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
}

.category-btn:hover {
    border-color: var(--primary-brown);
    color: var(--primary-brown);
}

.category-btn.active {
    background: var(--primary-brown);
    border-color: var(--primary-brown);
    color: white;
}

.category-btn .icon {
    font-size: 1rem;
}

.category-btn .category-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 4px;
}

/* ================= MENU CONTENT ================= */
.menu-content {
    padding: 16px;
    padding-bottom: 100px;
}

.menu-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    transition: opacity 0.25s ease;
}

/* View transition animation */
.menu-grid.view-transitioning {
    opacity: 0;
}

/* List View Mode */
.menu-grid.list-view {
    grid-template-columns: 1fr;
    gap: 8px;
}

.menu-grid.list-view .menu-item {
    display: flex;
    flex-direction: row;
    height: auto;
    min-height: 100px;
}

.menu-grid.list-view .menu-item-image {
    width: 100px;
    min-width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.menu-grid.list-view .menu-item-image img {
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.menu-grid.list-view .menu-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 12px;
}

.menu-grid.list-view .item-name {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.menu-grid.list-view .item-description {
    font-size: 0.8rem;
    -webkit-line-clamp: 3;
    margin-bottom: 6px;
    display: -webkit-box;
    color: var(--text-medium);
}

.menu-grid.list-view .item-footer {
    margin-top: auto;
}

.menu-grid.list-view .item-price {
    font-size: 0.95rem;
}

.menu-grid.list-view .add-btn {
    width: 32px;
    height: 32px;
}

.menu-grid.list-view .category-header {
    grid-column: 1;
}

/* ================= MENU CARD ================= */
.menu-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.2s;
}

@media (hover: hover) and (pointer: fine) {
    .menu-card:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-2px);
    }
}

.menu-card-image {
    position: relative;
    width: 100%;
    padding-top: 75%;
    background: var(--bg-header);
    overflow: hidden;
    cursor: pointer;
}

.menu-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-card-badges {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    gap: 4px;
}

.badge {
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge.new {
    background: var(--accent-green);
    color: white;
}

.badge.hot {
    background: #E74C3C;
    color: white;
}

.menu-card-body {
    padding: 12px;
}

.menu-card-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-card-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-brown);
}

.add-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--primary-brown);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.add-btn:hover {
    background: var(--primary-brown-dark);
    transform: scale(1.1);
}

.add-btn:active {
    transform: scale(0.95);
}

/* ================= NEW MENU ITEM STRUCTURE ================= */
.category-header {
    grid-column: 1 / -1;
    padding: 20px 0 10px;
}

.category-header h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-header-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.menu-item {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.2s;
    cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
    .menu-item:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-2px);
    }
}

.menu-item.stopped {
    cursor: default;
}

.menu-item.stopped {
    opacity: 0.7;
}

.menu-item-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f8f5f2;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #f8f5f2;
}

/* ================= NO-IMAGE CARD ================= */
.menu-item.no-image .menu-item-image {
    aspect-ratio: 3 / 2;
    background: linear-gradient(145deg, #A67C52 0%, #8B6644 50%, #6B5D4D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.no-image-placeholder i {
    font-size: 2.2em;
    color: rgba(255, 255, 255, 0.2);
}

.menu-item.no-image:hover .no-image-placeholder i {
    color: rgba(255, 255, 255, 0.3);
}

/* List view — no-image */
.menu-grid.list-view .menu-item.no-image .menu-item-image {
    aspect-ratio: 1 / 1;
}

/* Cart sidebar — no-image */
.no-image-placeholder-sm {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #A67C52, #8B6644);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-image-placeholder-sm i {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.3);
}

.item-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--accent-green);
    color: white;
}

.item-badge.new {
    background: var(--accent-green);
}

.item-badge.hot {
    background: #E74C3C;
}

.item-stopped-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.menu-item-info {
    padding: 12px;
}

.item-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-description {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 8px;
    gap: 8px;
}

.item-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-brown);
    white-space: nowrap;
    flex-shrink: 0;
}

.item-stopped-text {
    font-size: 0.75rem;
    color: #E74C3C;
    font-weight: 600;
}

/* Add Button */
.add-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--primary-brown);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.add-btn:hover {
    background: var(--primary-brown-dark);
    transform: scale(1.1);
}

.add-btn:active {
    transform: scale(0.95);
}

/* Quantity Controls */
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--bg-header);
    border-radius: 20px;
    padding: 3px;
    animation: expandIn 0.2s ease;
    flex-shrink: 0;
}

@keyframes expandIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.quantity-controls button {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.15s;
    flex-shrink: 0;
}

.quantity-controls button:hover {
    background: var(--primary-brown);
    color: white;
}

.quantity-controls button:active {
    transform: scale(0.9);
}

.quantity-controls span {
    min-width: 22px;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-dark);
}

/* ================= ITEM ANIMATION ================= */
/* Items start hidden */
.menu-grid .menu-item,
.menu-grid .category-header {
    opacity: 0;
    transform: translateY(20px);
}

/* Animate when class is added */
.menu-item.animate-in,
.category-header.animate-in {
    animation: fadeInUp 0.7s ease-out forwards;
}

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

.menu-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.menu-empty i {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.5;
}

.menu-empty p {
    font-size: 1rem;
}

/* ================= FLOATING CART BUTTON ================= */
.floating-cart-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    align-items: center;
    gap: 10px;
    background: var(--primary-brown);
    color: white;
    border: none;
    border-radius: var(--radius-xl);
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(166, 124, 82, 0.4);
    z-index: 80;
    transition: all 0.3s;
}

@media (hover: hover) and (pointer: fine) {
    .floating-cart-btn:hover {
        background: var(--primary-brown-dark);
        transform: translateY(-2px);
    }
}

.floating-cart-btn.pulse {
    animation: cartPulse 0.4s ease;
}

@keyframes cartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.floating-cart-btn .cart-count {
    background: white;
    color: var(--primary-brown);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* ================= CART SIDEBAR ================= */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.cart-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: var(--bg-page);
    z-index: 201;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}

.cart-sidebar.show {
    right: 0;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--bg-header);
    border-bottom: 1px solid var(--border-light);
}

.cart-header h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.close-cart {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--text-medium);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: var(--text-light);
    text-align: center;
}

.cart-empty i {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.5;
}

.cart-empty p {
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-empty span {
    font-size: 0.85rem;
}

/* Cart Item */
.cart-item {
    display: flex;
    gap: 12px;
    background: white;
    border-radius: var(--radius-md);
    padding: 12px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-card);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.cart-item-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-brown);
}

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

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: white;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
}

.qty-btn:hover {
    background: var(--primary-brown);
    color: white;
    border-color: var(--primary-brown);
}

.cart-item-qty {
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.cart-item-remove {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px;
}

.cart-item-remove:hover {
    color: #E74C3C;
}

/* New cart item controls */
.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: white;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
}

.cart-qty-btn:hover {
    background: var(--primary-brown);
    color: white;
    border-color: var(--primary-brown);
}

.cart-qty {
    font-weight: 600;
    min-width: 24px;
    text-align: center;
    font-size: 0.85rem;
}

.cart-remove-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px;
    margin-left: 4px;
}

.cart-remove-btn:hover {
    color: #E74C3C;
}

.min-order-text.success {
    color: var(--accent-green) !important;
}

.min-order-progress.complete {
    background: var(--accent-green);
}

/* Cart Footer */
.cart-footer {
    padding: 16px 20px;
    background: white;
    border-top: 1px solid var(--border-light);
}

.cart-summary {
    margin-bottom: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.summary-row.total {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    border-top: 1px solid var(--border-light);
    margin-top: 8px;
    padding-top: 12px;
}

/* Min Order Indicator */
.min-order-indicator {
    margin-bottom: 12px;
}

.min-order-bar {
    height: 6px;
    background: var(--border-light);
    border-radius: 3px;
    overflow: hidden;
}

.min-order-progress {
    height: 100%;
    background: var(--accent-green);
    transition: width 0.3s;
    border-radius: 3px;
}

.min-order-indicator.not-met .min-order-progress {
    background: #E74C3C;
}

.min-order-text {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 6px;
}

.min-order-indicator.not-met .min-order-text {
    color: #E74C3C;
}

.checkout-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary-brown);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}

.checkout-btn:hover {
    background: var(--primary-brown-dark);
}

.checkout-btn:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
}

.checkout-btn.disabled-hours {
    background: #95a5a6;
    font-size: 0.85rem;
}

.checkout-btn.disabled-hours i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ================= MODALS ================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal-overlay.show {
    display: flex;
    opacity: 1;
}

.modal-overlay.hidden {
    display: none !important;
}

.modal-content {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
}

.modal-header h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.modal-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--bg-header);
    color: var(--text-medium);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* Welcome Modal */
.welcome-modal {
    text-align: center;
    padding: 30px 24px;
}

.welcome-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-brown-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.welcome-icon i {
    font-size: 1.5rem;
    color: var(--primary-brown-dark);
}

.welcome-modal h2 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.welcome-modal p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 24px;
}

.welcome-btn {
    background: var(--primary-brown);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.welcome-btn:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
}

.welcome-btn:not(:disabled):hover {
    background: var(--primary-brown-dark);
}

.countdown {
    opacity: 0.7;
}

/* Checkout Modal */
.checkout-modal {
    padding: 0;
}

.checkout-modal form {
    padding: 0 20px 20px;
}

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

.form-section h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-section h3 i {
    color: var(--primary-brown);
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-medium);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-brown);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

/* Delivery Type Selector */
.delivery-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.delivery-type-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: var(--bg-header);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
}

.delivery-type-option input {
    display: none;
}

.delivery-type-option.active {
    background: white;
    border-color: var(--primary-brown);
}

.type-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-brown);
    font-size: 1.2rem;
}

.delivery-type-option.active .type-icon {
    background: var(--primary-brown);
    color: white;
}

.type-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-medium);
}

.delivery-type-option.active .type-label {
    color: var(--primary-brown);
}

/* ================= PICKUP TIME PICKER ================= */
#pickupTimeSection {
    overflow: hidden;
}

.time-range-picker {
    display: flex;
    gap: 12px;
    width: 100%;
}

.time-picker-group {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.time-picker-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.time-scroll {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px;
    background: var(--bg-header);
    border-radius: var(--radius-md);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 100%;
}

.time-scroll::-webkit-scrollbar {
    display: none;
}

.time-chip {
    flex: 0 0 auto;
    padding: 8px 14px;
    background: white;
    border: 2px solid transparent;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.time-chip:hover {
    border-color: var(--primary-brown-light);
}

.time-chip.selected {
    background: var(--primary-brown);
    border-color: var(--primary-brown);
    color: white;
}

.time-chip.disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* Order Summary in Form */
.order-summary {
    background: var(--bg-header);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 16px;
}

.delivery-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: #FFF8E1;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.delivery-notice i {
    color: #F9A825;
    margin-top: 2px;
}

.delivery-notice p {
    font-size: 0.8rem;
    color: var(--text-medium);
    line-height: 1.4;
    margin: 0;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
}

.submit-btn:hover {
    background: #1DA851;
}

.submit-btn i {
    font-size: 1.2rem;
}

/* Confirmation Modal */
.confirmation-modal {
    padding: 0;
}

.confirmation-body {
    padding: 20px;
}

.order-number {
    text-align: center;
    padding: 16px;
    background: var(--bg-header);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.order-number span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.order-number strong {
    display: block;
    font-size: 1.3rem;
    color: var(--primary-brown);
    margin-top: 4px;
}

.confirmation-section {
    margin-bottom: 16px;
}

.confirmation-section h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 6px;
}

.confirmation-section p {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-bottom: 4px;
}

.confirmation-items {
    max-height: 150px;
    overflow-y: auto;
}

.confirm-item,
.confirmation-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border-light);
}

.confirm-item:last-child,
.confirmation-item:last-child {
    border-bottom: none;
}

.confirm-item-name,
.confirmation-item .item-name {
    color: var(--text-dark);
    flex: 1;
}

.confirm-item-price,
.confirmation-item .item-price {
    color: var(--primary-brown);
    font-weight: 600;
    margin-left: 10px;
}

.confirmation-totals {
    background: var(--bg-header);
    border-radius: var(--radius-md);
    padding: 12px;
    margin-bottom: 16px;
}

.whatsapp-notice {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.confirmation-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.whatsapp-btn {
    width: 100%;
    padding: 14px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.done-btn {
    width: 100%;
    padding: 12px;
    background: var(--bg-header);
    color: var(--text-medium);
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    cursor: pointer;
}

/* ================= ITEM MODAL - BOTTOM SHEET ================= */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 400;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.item-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 24px 24px 0 0;
    max-height: 85vh;
    overflow: hidden;
    z-index: 401;
    transform: translateY(100%);
    transition: transform 0.3s ease, visibility 0.3s ease;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    pointer-events: none;
}

.item-modal.active {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

.modal-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #f5f2ed 0%, #ebe6de 100%);
    flex-shrink: 0;
}

.modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-image[src*="placeholder.png"] {
    object-fit: contain;
    padding: 15%;
    background: #f5f0eb;
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(61, 50, 41, 0.8);
    border-radius: 50%;
    color: white;
    font-size: 1.1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close-btn:hover {
    background: rgba(61, 50, 41, 1);
    transform: scale(1.05);
}

.item-modal .modal-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.modal-title {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.modal-description {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.item-modal .modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: white;
    border-top: 1px solid var(--border-light);
    flex-shrink: 0;
}

.modal-price {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--primary-brown);
}

.modal-add-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    background: var(--primary-brown);
    color: white;
    border-radius: 50px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.modal-add-btn:hover {
    background: var(--primary-brown-dark);
    transform: scale(1.02);
}

.modal-add-btn:active {
    transform: scale(0.98);
}

/* Variations in modal */
.modal-variations {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.variations-label {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 12px;
    font-weight: 500;
}

.variations-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.variation-option {
    padding: 10px 16px;
    border: 2px solid var(--border-light);
    background: white;
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    font-weight: 500;
}

.variation-option:hover {
    border-color: var(--primary-brown-light);
    background: var(--bg-header);
}

.variation-option.selected {
    border-color: var(--primary-brown);
    background: var(--primary-brown);
    color: white;
}

/* Add button with quantity badge */
.add-btn.has-qty {
    position: relative;
}

.add-btn .qty-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: var(--accent-green);
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cart item variation name */
.cart-item-variation {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 2px;
}

/* Desktop - центрированная модалка */
@media (min-width: 600px) {
    .item-modal {
        bottom: auto;
        top: 50%;
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%) scale(0.9);
        max-width: 480px;
        max-height: 80vh;
        border-radius: 24px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .item-modal.active {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

/* ================= COLLAPSED HEADER ================= */
body.header-collapsed .header-content {
    padding: 6px 16px;
}

body.header-collapsed .header-title h1 {
    font-size: 1.1rem;
}

body.header-collapsed .header-subtitle {
    opacity: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    pointer-events: none;
}

body.header-collapsed .delivery-badge {
    opacity: 0;
    width: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    pointer-events: none;
}

body.header-collapsed .header-left {
    gap: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 480px) {
    .header-title h1 {
        font-size: 1.1rem;
    }

    .delivery-badge {
        font-size: 0.6rem;
        padding: 2px 6px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .floating-cart-btn {
        left: 20px;
        right: 20px;
        justify-content: center;
    }

    .cart-sidebar {
        max-width: 100%;
    }
}

/* Item Ribbon Styles - копия из huggabar */
.item-ribbon {
    background: linear-gradient(180deg, #5c3d2e 0%, #3d2518 100%);
    color: #e8c496;
    padding: 6px 10px;
    font-size: 0.7rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

/* Side tabs that flow down - concave curved fold */
.item-ribbon::before,
.item-ribbon::after {
    content: '';
    position: absolute;
    top: calc(100% - 1px);
    width: 20px;
    height: 20px;
}

.item-ribbon::before {
    left: 0;
    background: radial-gradient(circle at bottom right, transparent 19px, var(--ribbon-bottom-bg, #3d2518) 20px);
}

.item-ribbon::after {
    right: 0;
    background: radial-gradient(circle at bottom left, transparent 19px, var(--ribbon-bottom-bg, #3d2518) 20px);
}

.item-ribbon i {
    color: var(--ribbon-icon-color, #ff9500);
    font-size: 1.1em;
    flex-shrink: 0;
}

/* Hide old tab elements */
.item-ribbon-tabs {
    display: none;
}

/* List view - плашка на всю ширину, базовые стили ушек без изменений */
.menu-grid.list-view .menu-item.has-ribbon {
    flex-wrap: wrap;
}

.menu-grid.list-view .item-ribbon {
    width: 100%;
    flex-shrink: 0;
    order: -1;
}

/* ==================== Language Selector ==================== */
.lang-selector {
    position: relative;
    z-index: 100;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: #fff;
    font-size: 0.85em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lang-btn i {
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.lang-dropdown.open + .lang-btn i,
.lang-selector.open .lang-btn i {
    transform: rotate(180deg);
}

.lang-current {
    min-width: 24px;
    text-align: center;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #2a2a2a;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 140px;
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #fff;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-option.active {
    background: rgba(139, 69, 19, 0.3);
    color: #D4A574;
}

.lang-option .lang-flag {
    font-size: 1.2em;
}

.lang-option .lang-name {
    flex: 1;
}

.lang-option .lang-check {
    opacity: 0;
    color: #D4A574;
}

.lang-option.active .lang-check {
    opacity: 1;
}

/* Fix Language Selector Visibility */
.header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.lang-selector {
    position: relative !important;
    z-index: 1000 !important;
    display: flex !important;
}

.lang-btn {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 8px 12px !important;
    background: rgba(139, 69, 19, 0.8) !important;
    border: 1px solid rgba(212, 165, 116, 0.5) !important;
    border-radius: 20px !important;
    color: #fff !important;
    font-size: 0.85em !important;
    font-weight: 600 !important;
    cursor: pointer !important;
}

.lang-btn:hover {
    background: rgba(139, 69, 19, 1) !important;
}

.lang-dropdown {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    right: 0 !important;
    background: #2a2a2a !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
    min-width: 150px !important;
    z-index: 1001 !important;
    opacity: 0;
    visibility: hidden;
}

.lang-dropdown.open {
    opacity: 1 !important;
    visibility: visible !important;
}

.lang-option {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 16px !important;
    color: #fff !important;
    cursor: pointer !important;
    border: none !important;
    background: none !important;
    width: 100% !important;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.lang-option.active {
    background: rgba(139, 69, 19, 0.5) !important;
    color: #D4A574 !important;
}

.lang-option.active .lang-check {
    opacity: 1 !important;
}

/* Fix dropdown z-index */
.lang-selector {
    z-index: 9999 !important;
}

.lang-dropdown {
    z-index: 10000 !important;
}

.category-nav {
    z-index: 100 !important;
}

/* Delivery Zones Modal */
.delivery-zones-modal {
    max-width: 500px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--bg-card);
    border-radius: 20px;
}

.delivery-zones-body {
    padding: 20px;
}

.delivery-zones-notice {
    background: rgba(107, 142, 78, 0.15);
    border: 1px solid rgba(107, 142, 78, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.delivery-zones-notice p {
    margin: 0;
    color: var(--text-medium);
}

.delivery-zones-map {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.delivery-zones-map img {
    width: 100%;
    height: auto;
    display: block;
}

.delivery-zones-btn {
    width: 100%;
    padding: 16px;
    background: var(--accent-green);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .delivery-zones-btn:hover:not(:disabled) {
        background: var(--accent-green-light);
        transform: translateY(-2px);
    }
}

.delivery-zones-btn:active:not(:disabled) {
    transform: translateY(0);
}

.delivery-zones-btn:disabled,
.delivery-zones-btn.btn-waiting {
    background: var(--bg-page);
    color: var(--text-muted);
    cursor: not-allowed;
    pointer-events: none;
}
