﻿/* MENU3 DESIGN - SADE BEYAZ TASARIM */

.menu3-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
}

/* ÖNE ÇIKANLAR BÖLÜMİ - Instagram Tarzı */
.menu3-highlights-section {
    padding: 20px;
    margin: 20px 0;
}

.menu3-highlights-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.menu3-highlight-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e6e6e6;
}

    .menu3-highlight-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }

.menu3-highlight-content {
    display: flex;
    padding: 20px;
    gap: 15px;
    align-items: center;
}

.menu3-highlight-info {
    flex: 1;
}

.menu3-highlight-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.menu3-highlight-description {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.menu3-highlight-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 10px;
}

.menu3-highlight-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .menu3-highlight-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* ANA MENU KONTEYNERİ */
.menu3-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.menu3-category-section {
    margin-bottom: 40px;
}

.menu3-category-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 30px;
    position: relative;
}

    .menu3-category-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 2px;
        background: #333333;
    }

.menu3-products-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu3-product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e6e6e6;
}

    .menu3-product-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    }

.menu3-product-content {
    display: flex;
    padding: 20px;
    gap: 20px;
    align-items: center;
}

.menu3-product-info {
    flex: 1;
}

.menu3-product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 6px;
    line-height: 1.3;
}

.menu3-product-description {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 8px;
}

.menu3-product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 10px;
}

.menu3-product-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .menu3-product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.menu3-image-placeholder {
    color: #cccccc;
    font-size: 1.5rem;
}

/* EKSTRA BİLGİLER */
.menu3-product-extras,
.menu3-highlight-extras {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.menu3-calorie,
.menu3-prep-time {
    background: #f5f5f5;
    color: #666666;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 3px;
}

/* ALERJEN BİLGİLERİ */
.menu3-allergens {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.menu3-allergen-emoji {
    font-size: 1rem;
    padding: 2px;
    background: #f9f9f9;
    border-radius: 4px;
    cursor: help;
}

/* RESPONSIVE TASARIM */
@media (max-width: 768px) {
    .menu3-main-container, .menu3-highlights-section {
        padding: 15px;
    }

    .menu3-category-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .menu3-products-list {
        gap: 12px;
    }

    .menu3-product-content,
    .menu3-highlight-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 12px;
    }

    .menu3-product-image,
    .menu3-highlight-image {
        width: 90px;
        height: 90px;
        align-self: center;
    }

    .menu3-highlights-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .menu3-main-container, .menu3-highlights-section {
        padding: 10px;
    }

    .menu3-product-card,
    .menu3-highlight-card {
        border-radius: 8px;
    }

    .menu3-product-content,
    .menu3-highlight-content {
        padding: 15px;
    }

    .menu3-category-title {
        font-size: 1.3rem;
    }

    .menu3-product-extras,
    .menu3-highlight-extras {
        justify-content: center;
    }
}

/* BÜYÜK EKRANLAR */
@media (min-width: 1200px) {
    .menu3-main-container, .menu3-highlights-section {
        padding: 30px;
    }

    .menu3-category-title {
        font-size: 2rem;
        margin-bottom: 35px;
    }

    .menu3-products-list {
        gap: 20px;
    }

    .menu3-product-content,
    .menu3-highlight-content {
        padding: 25px;
        gap: 25px;
    }

    .menu3-product-image,
    .menu3-highlight-image {
        width: 120px;
        height: 120px;
    }

    .menu3-highlights-container {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
    }
}

/* HOVER EFEKTLERİ */
.menu3-product-card:hover .menu3-product-image img,
.menu3-highlight-card:hover .menu3-highlight-image img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* ANİMASYONLAR */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu3-product-card,
.menu3-highlight-card {
    animation: fadeIn 0.5s ease-out;
}
