/* Menu Header */
.menu-header {
    margin-top: 70px;
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, #1A1A1A 0%, #2C3E50 100%);
    color: var(--text-light);
    text-align: center;
}

.menu-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.menu-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Category Tabs */
.category-tabs {
    background: var(--bg-light);
    padding: 2rem 0;
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 2px 10px var(--shadow);
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.tab-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.tab-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.4);
}

/* Menu Section */
.menu-section {
    padding: 3rem 0 5rem;
    background: white;
}

.category-section {
    display: none;
}

.category-section.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-note {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
    padding: 1rem;
    background: rgba(255, 140, 66, 0.1);
    border-radius: 10px;
    display: inline-block;
}

/* Products Grid - Burgers */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

.product-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.product-description {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.product-ingredients {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.ingredient-tag {
    background: var(--bg-light);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--secondary-color);
    border: 1px solid #E0E0E0;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #E0E0E0;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Boissons Grid */
.boissons-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.boisson-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    opacity: 1;
    transform: translateY(0);
}

.boisson-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.boisson-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}

.boisson-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.boisson-image img {
    max-width: 80%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.boisson-card:hover .boisson-image img {
    transform: scale(1.1);
}

.boisson-content {
    padding: 1rem;
}

.boisson-name {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.boisson-size {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.boisson-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-top: 0.5rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
    font-size: 1.3rem;
    padding: 1.2rem 3rem;
}

.cta-section .btn-primary:hover {
    background: var(--secondary-color);
    color: white;
}

/* Message d'erreur */
.error-message {
    text-align: center;
    padding: 2rem;
    color: #E74C3C;
    font-size: 1.1rem;
}