﻿/* YENİ TASARIM CSS'LERİ */
.new-menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.new-menu-category {
    margin-bottom: 50px;
}

.new-category-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    letter-spacing: 2px;
}

    .new-category-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background-color: #333;
    }

.new-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.new-menu-item {
    cursor: pointer;
    transition: transform 0.2s ease;
    padding: 15px 0;
}

    .new-menu-item:hover {
        transform: translateY(-2px);
    }

.new-item-content {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.new-item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.new-item-dots {
    flex: 1;
    height: 1px;
    background-image: repeating-linear-gradient( to right, #666 0, #666 4px, transparent 4px, transparent 8px );
    margin: 0 15px;
}

.new-item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
}

.new-item-description {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    line-height: 1.4;
    margin-top: 5px;
}

/* RESPONSIVE TASARIM */
@media (max-width: 768px) {
    .new-menu-container {
        padding: 15px;
    }

    .new-category-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }

        .new-category-title::after {
            width: 80px;
        }

    .new-products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .new-menu-item {
        padding: 12px 0;
    }

    .new-item-content {
        margin-bottom: 6px;
    }

    .new-item-name {
        font-size: 1rem;
    }

    .new-item-price {
        font-size: 1rem;
    }

    .new-item-dots {
        margin: 0 10px;
    }

    .new-item-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .new-menu-container {
        padding: 10px;
    }

    .new-category-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .new-item-name {
        font-size: 0.95rem;
    }

    .new-item-price {
        font-size: 0.95rem;
    }

    .new-item-dots {
        margin: 0 8px;
    }
}

/* TABLET TASARIM */
@media (min-width: 769px) and (max-width: 1024px) {
    .new-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* BÜYÜK EKRANLAR */
@media (min-width: 1200px) {
    .new-menu-container {
        padding: 30px;
    }

    .new-category-title {
        font-size: 3rem;
    }

        .new-category-title::after {
            width: 120px;
            height: 4px;
        }

    .new-products-grid {
        gap: 25px;
    }

    .new-menu-item {
        padding: 20px 0;
    }

    .new-item-name {
        font-size: 1.2rem;
    }

    .new-item-price {
        font-size: 1.2rem;
    }
}
