@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        padding: 1rem;
    }

    .menu-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .item-image {
        width: 100%;
        height: 200px;
        margin: 0 auto;
    }

    .item-price {
        text-align: center;
        margin-top: 1rem;
    }

    .allergens-tags {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1rem;
    }

    .logo-container h1 {
        font-size: 1.5rem;
    }

    .language-nav ul {
        gap: 1rem;
    }

    .category-card img {
        height: 150px;
    }

    .menu-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .category-title {
        font-size: 1.5rem;
    }
} 