/* Responsive - Tablet */
@media (min-width: 600px) {
    .header-banner {
        height: 130px;
    }
    
    .header-banner-name {
        font-size: 24px;
        bottom: 12px;
    }
    
    .promo-slider {
        height: 150px;
    }
    
    .categories-grid {
        gap: 16px;
    }
    
    .category-name {
        font-size: 17px;
        padding: 50px 16px 16px 16px;
    }
    
    .product-image {
        width: 120px;
        min-width: 120px;
        height: 120px;
    }
    
    .product-modal-name {
        font-size: 22px;
    }
    
    .product-modal-visual {
        aspect-ratio: 16 / 9;
    }
}

/* Responsive - Desktop */
@media (min-width: 900px) {
    /* Layout */
    .menu-content {
        max-width: 100%;
        margin: 0 auto;
        padding: 24px 40px;
        padding-bottom: 100px;
    }

    /* Header banner */
    .header-banner {
        height: 200px;
    }

    .header-banner-name {
        font-size: 28px;
        bottom: 14px;
        left: 20px;
    }

    /* Promo slider */
    .promo-slider-wrapper {
        padding: 16px 40px 0;
    }

    .promo-slider {
        height: 200px;
        border-radius: 12px;
    }

    /* Header bar */
    .header-bar {
        padding: 12px 40px;
    }

    /* Kategoriler - 4 sütun */
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .category-card {
        height: 200px;
    }

    .category-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    }

    .category-name {
        font-size: 17px;
    }

    /* Ürünler - 2 sütun (görselli) */
    .products-list:not(.no-images) {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* No-images - tek sütun, kompakt */
    .products-list.no-images {
        display: flex;
        flex-direction: column;
        max-width: 640px;
    }

    .product-card {
        flex-direction: column;
        min-height: 280px;
    }

    /* No-images modunda min-height sıfırla */
    .products-list.no-images .product-card {
        min-height: unset;
        flex-direction: column;
    }

    .product-image {
        width: 100%;
        height: 180px;
        min-width: unset;
    }

    .product-info {
        padding: 14px;
        flex: 1;
        min-height: unset;
    }

    .product-card:not(.no-image) .product-info {
        min-height: unset;
    }

    .product-name {
        padding-right: 0;
        margin-bottom: 6px;
    }

    .product-card:not(.no-image) .product-desc {
        padding-right: 0;
    }

    /* Fiyatı absolute'dan static'e çek */
    .product-price {
        position: static;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        margin-top: auto;
        padding-top: 8px;
    }

    .product-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    }

    /* Slide panel - tam ekran yerine sağ panel */
    .slide-panel {
        left: auto;
        width: 480px;
        box-shadow: -8px 0 32px rgba(0,0,0,0.6);
    }

    /* Modal */
    .product-modal {
        max-width: 520px;
        border-radius: 16px;
        margin: auto;
    }

    .product-modal-visual {
        aspect-ratio: 16 / 9;
        max-height: 300px;
    }

    /* Footer */
    .menu-footer {
        padding: 12px 40px;
    }
}

/* Small phones */
@media (max-width: 360px) {
    .header-banner {
        height: 85px;
    }
    
    .header-banner-name {
        font-size: 18px;
        bottom: 6px;
    }
    
    .promo-slider {
        height: 100px;
    }
    
    .categories-grid {
        gap: 8px;
    }
    
    .category-name {
        font-size: 13px;
        padding: 30px 10px 10px 10px;
    }
    
    .product-image {
        width: 85px;
        min-width: 85px;
        height: 85px;
    }
    
    .product-name {
        font-size: 14px;
    }
    
    .product-modal-name {
        font-size: 18px;
    }
    
    .modal-price-pill {
        font-size: 18px;
        padding: 5px 12px;
    }
    
    .product-modal-visual {
        margin: 4px 10px 0;
    }
}

/* Safe area for notched phones */