/* ========================================================================
   ⭐ FAVORİ VE YAZDIR BUTONLARI - RESPONSIVE DÜZEN
   ======================================================================== */

/* Ana wrapper - Flexbox düzeni */
.ilan .ust .buton-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    gap: 10px !important;
    width: 100% !important;
    margin-top: 15px !important;
}

/* Favori ve Yazdır Grup Container */
.ilan .ust .favori-yazdır-grup {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    flex: 1 !important;
    min-width: 0 !important;
}

/* Favori Butonlar Container - Yan Yana */
.ilan .ust .favori-butonlar {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    width: 100% !important;
}

/* Favori Butonları */
.ilan .ust .buton.favori-buton {
    flex: 1 !important;
    min-width: 0 !important;
    max-width: none !important;
}

.ilan .ust .buton.favori-buton a {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Yazdır Butonu - Altında */
.ilan .ust .buton.yazdir-buton {
    width: 100% !important;
}

.ilan .ust .buton.yazdir-buton a {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Sosyal Medya Butonları */
.ilan .ust .buton.sosyal {
    margin-left: auto !important;
    flex-shrink: 0 !important;
}

/* Mobil için özel düzenleme (768px ve altı) */
@media (max-width: 768px) {
    .ilan .ust .buton-wrapper {
        gap: 8px !important;
    }
    
    .ilan .ust .favori-yazdır-grup {
        gap: 8px !important;
    }
    
    .ilan .ust .favori-butonlar {
        gap: 6px !important;
    }
    
    .ilan .ust .buton:not(.sosyal) a {
        font-size: 11px !important;
        padding: 8px 10px !important;
    }
    
    .ilan .ust .buton:not(.sosyal) i {
        font-size: 14px !important;
        margin-right: 4px !important;
    }
    
    .ilan .ust .buton.sosyal {
        margin-left: 0 !important;
        width: 100% !important;
        justify-content: center !important;
        margin-top: 4px !important;
    }
}

/* Çok küçük ekranlar için (480px ve altı) */
@media (max-width: 480px) {
    .ilan .ust .buton-wrapper {
        gap: 6px !important;
    }
    
    .ilan .ust .favori-yazdır-grup {
        gap: 6px !important;
    }
    
    .ilan .ust .favori-butonlar {
        gap: 5px !important;
    }
    
    .ilan .ust .buton:not(.sosyal) a {
        font-size: 10px !important;
        padding: 7px 8px !important;
    }
    
    .ilan .ust .buton:not(.sosyal) i {
        font-size: 13px !important;
        margin-right: 3px !important;
    }
    
    /* Favori butonlarında metni kısalt */
    .ilan .ust .buton.favori-buton a {
        font-size: 9px !important;
    }
}

/* Çok çok küçük ekranlar için (360px ve altı) */
@media (max-width: 360px) {
    .ilan .ust .buton:not(.sosyal) a {
        font-size: 9px !important;
        padding: 6px 7px !important;
    }
    
    .ilan .ust .buton:not(.sosyal) i {
        font-size: 12px !important;
        margin-right: 2px !important;
    }
}

