/* Custom styles */
.food-card {
    transition: transform 0.3s;
}
.food-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.category-card {
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s;
    cursor: pointer;
}
.category-card:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}
.shop-card {
    transition: all 0.3s;
}
.shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #e74c3c;
}
/* Mobile responsive */
@media (max-width: 768px) {
    .food-card .card-title {
        font-size: 0.9rem;
    }
    .category-card i {
        font-size: 2rem;
    }
    .category-card h6 {
        font-size: 0.8rem;
    }
}
/* Admin sidebar */
.sidebar {
    min-height: 100vh;
}
.sidebar .nav-link {
    padding: 0.5rem 1rem;
    transition: all 0.3s;
}
.sidebar .nav-link:hover {
    background: rgba(255,255,255,0.1);
}