/* Mobil görünüm için ek stil ayarları */

@media (max-width: 768px) {
    /* Ürün detay sayfasında galeri ve bilgiler bölümünü alt alta düzenle */
    .product-detail-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .product-gallery, 
    .product-info {
        width: 100% !important;
    }
    
    /* Butonları mobilde daha kullanışlı hale getir */
    .product-cta {
        flex-direction: column;
    }
    
    /* Thumbnail görüntülerinin yatay kaydırılabilir olmasını sağla */
    .product-thumbnails {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding: 10px;
    }
    
    /* Tab butonlarını mobilde daha iyi görüntüle */
    .tab-buttons {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
    }
    
    .tab-button {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    /* İlgili ürünleri mobilde alt alta göster */
    .related-products-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .product-item {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .product-main-image {
        height: 250px !important;
    }
    
    .product-thumb {
        height: 60px !important;
        width: 60px !important;
    }
    
    .product-info-title {
        font-size: 22px !important;
    }
    
    .product-info-description {
        font-size: 14px !important;
    }
} 