.menu-display {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.menu-category {
    margin-bottom: 40px;
    padding: 20px 0;
}

.menu-category:not(:last-child) {
    border-bottom: 2px solid #eee;
}

.category-header {
    margin-bottom: 20px;
    text-align: center;
}

.category-title {
    font-size: 2em;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.category-description {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 0;
    font-style: italic;
}

.menu-items {
    display: grid;
    gap: 20px;
}

.menu-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

.menu-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.item-image {
    flex-shrink: 0;
}

.item-image img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
}

.item-content {
    flex: 1;
}

.item-header {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.item-title {
    font-size: 1.3em;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.product-number {
    font-size: 0.8em;
    color: #888;
    font-weight: 400;
    margin-right: 8px;
}

.item-short-desc {
    color: #666;
    font-style: italic;
    flex: 1;
}

.item-price {
    font-weight: 700;
    color: #e74c3c;
    font-size: 1.2em;
    margin-left: auto;
}

.item-description {
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.no-items,
.no-menu {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 40px 20px;
}

/* Category Navigation */
.menu-navigation {
    background: #f8f9fa;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    text-align: center;
}

.menu-navigation h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-weight: 600;
}

.category-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.category-nav-link {
    display: inline-block;
    padding: 8px 16px;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.category-nav-link:hover {
    background: #e74c3c;
    color: #fff;
    border-color: #e74c3c;
}

.category-nav-link.active {
    background: #e74c3c;
    color: #fff;
    border-color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-display {
        padding: 15px;
    }
    
    .menu-item {
        flex-direction: column;
        text-align: center;
    }
    
    .item-image {
        align-self: center;
    }
    
    .item-header {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .item-price {
        margin-left: 0;
    }
    
    .category-title {
        font-size: 1.6em;
    }
}

@media (max-width: 480px) {
    .menu-display {
        padding: 10px;
    }
    
    .item-image img {
        width: 100px;
        height: 75px;
    }
    
    .category-title {
        font-size: 1.4em;
    }
    
    .item-title {
        font-size: 1.1em;
    }
}