/* --- 🌟 TÜM ÜRÜNLER 5'Lİ GRID STİLLERİ --- */

.tum-urunler-section {
    padding: 40px 0 60px 0;
    background-color: #f8fafc;
}

.tum-urunler-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 15px; /* Mobilde başlığın kenarlara yapışmasını engeller */
}

.tum-urunler-title {
    font-family: 'Gilroy', 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* 5'Lİ GRID SİSTEMİ VE TAŞMA ENGELLEYİCİ */
.tum-urunler-grid {
    display: grid;
    /* KESİN ÇÖZÜM: minmax(0, 1fr) kullanarak ızgaranın ekranı yırtmasını engelliyoruz */
    grid-template-columns: repeat(5, minmax(0, 1fr)); 
    gap: 15px; 
    margin-bottom: 30px;
    padding: 0 15px; /* Sağdan soldan nefes alma boşluğu */
}

.grid-item {
    display: flex;
    /* KESİN ÇÖZÜM: Kartların minimum genişliğini sıfırlayarak dışarı taşmayı yasaklıyoruz */
    min-width: 0; 
}

.grid-item > .product-card {
    width: 100%;
    min-width: 0; /* İçerik taşmasını engeller */
}

/* TÜMÜNÜ GÖR BUTONU TAA ALTTA VE ORTADA */
.tum-urunler-footer {
    text-align: center;
    margin-top: 20px;
    padding: 0 15px;
}

.btn-view-all-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    color: #1e293b;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 30px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.btn-view-all-large:hover {
    background-color: var(--theme-color, #f97316);
    color: #ffffff;
    border-color: var(--theme-color, #f97316);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

/* 📱 MOBİL UYUMLULUK EKRAN KIRILMA NOKTALARI */
@media (max-width: 1200px) {
    .tum-urunler-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 992px) {
    .tum-urunler-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
    .tum-urunler-grid { 
        grid-template-columns: repeat(2, minmax(0, 1fr)); 
        gap: 10px; 
    }
}
@media (max-width: 480px) {
    .tum-urunler-grid { 
        grid-template-columns: repeat(2, minmax(0, 1fr)); 
        gap: 8px; /* Mobilde aralığı biraz daralttık */
    }
    .btn-view-all-large { padding: 12px 25px; font-size: 0.9rem; width: 100%; justify-content: center; }
}