/* --- SADECE ÜRÜN AÇIKLAMASI İÇİN AVISTA TASARIMI (V2 - Chrome Fix) --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

/* Ana Kapsayıcı */
.avista-kutu {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    max-width: 100%;
}

/* --- Başlık ve Bölümler --- */
.av-bolum {
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-radius: 6px;
    overflow: hidden;
}

.av-baslik {
    background: #1a1a1a;
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-left: 5px solid #c4161c;
}

.av-icerik {
    background: #fff;
    padding: 20px 25px;
    border: 1px solid #eee;
    border-top: none;
}

/* Liste Ayarları */
.av-liste {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.av-liste li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #444;
}

.av-liste li::before {
    content: '•';
    color: #c4161c;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -6px;
    line-height: 1;
}

/* --- BELGE KUTULARI (GÜNCELLENDİ) --- */
.av-belge-alani { margin-top: 30px; }

/* Grid Yapısı */
.av-belge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Sütun */
    gap: 15px;
}

/* WordPress'in oluşturduğu hatalı P ve BR etiketlerini yok et */
.av-belge-grid br { display: none !important; }
.av-belge-grid p { display: contents !important; margin: 0; padding: 0; }

/* Kart Tasarımı - Flex kullanarak hizalama */
a.av-kart {
    display: flex !important;
    align-items: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 10px;
    text-decoration: none !important;
    transition: all 0.2s;
    min-height: 55px;
    box-sizing: border-box;
}

/* İkon (Artık span olarak ayarlandı) */
span.av-ikon {
    width: 36px; height: 36px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-right: 10px; 
    flex-shrink: 0; /* Küçülmesini engelle */
}
span.av-ikon svg { width: 18px; height: 18px; fill: #c4161c; }

/* Yazılar (Artık span olarak ayarlandı) */
span.av-bilgi { 
    display: flex; 
    flex-direction: column; 
    overflow: hidden; 
    width: 100%;
}

span.av-kart-baslik {
    font-weight: 800; font-size: 12px; color: #111;
    text-transform: uppercase; margin-bottom: 2px; display: block;
}
span.av-kart-aciklama {
    font-size: 11px; color: #777;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block;
}

a.av-kart:hover {
    border-color: #c4161c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Mobil Ayarı */
@media (max-width: 768px) {
    .av-belge-grid { grid-template-columns: 1fr 1fr; }
}
