/* Menu Categories Styles */
.menu-categories {
    padding: 20px;
    padding-bottom: 80px;
}

.category-banner {
    position: relative;
    width: 100%;
    height: 120px;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.category-banner:hover {
    transform: translateY(-5px);
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 30px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    color: white;
    font-size: 24px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.category-items {
    margin-top: 20px;
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 5px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.category-items::-webkit-scrollbar {
    display: none;
}

.menu-item {
    flex: 0 0 280px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.item-info {
    padding: 15px;
}

.item-info h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
}

.item-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.price {
    font-weight: bold;
    color: #ff6b6b;
    font-size: 16px;
}

/* No categories message */
.no-categories {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-categories i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-categories h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.no-categories p {
    font-size: 16px;
    color: #999;
}

/* No products message */
.no-products {
    text-align: center;
    padding: 30px 20px;
    color: #999;
    font-style: italic;
}

.no-products p {
    margin: 0;
    font-size: 14px;
}

/* Animation for category banners */
.category-banner {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.category-banner:nth-child(1) { animation-delay: 0.1s; }
.category-banner:nth-child(2) { animation-delay: 0.2s; }
.category-banner:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 