/* Custom Colorful Styling for Shiv Shakti Dhaba & Chinese Corner */

/* Hide default scrollbars */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Category Tab styling in bright theme */
.category-tab {
    background-color: #ffffff;
    color: #475569;
    border: 2px solid #fed7aa;
}

.category-tab:hover {
    color: #ea580c;
    border-color: #ea580c;
    background-color: #fff7ed;
}

.category-tab.active {
    background: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
}

/* Diet Filter Buttons */
.diet-filter-btn {
    color: #64748b;
}

.diet-filter-btn.active {
    background-color: #ffedd5;
    color: #c2410c;
}

/* Menu Item Card Micro-Interactions */
.menu-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.menu-card:hover {
    transform: translateY(-4px);
    border-color: #ea580c;
    box-shadow: 0 14px 28px -10px rgba(234, 88, 12, 0.2);
}

/* Custom Scrollbar for Cart */
#cartItemsList::-webkit-scrollbar {
    width: 6px;
}
#cartItemsList::-webkit-scrollbar-track {
    background: #fff7ed;
}
#cartItemsList::-webkit-scrollbar-thumb {
    background: #fed7aa;
    border-radius: 4px;
}
#cartItemsList::-webkit-scrollbar-thumb:hover {
    background: #ea580c;
}
