/* Ana Konteyner */
.bcp-container {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

/* Sadece mobil cihazlarda göster (Maksimum 768px genişlik) */
@media (max-width: 768px) {
    .bcp-container {
        display: flex;
    }
}

/* Genel Buton Stili */
.bcp-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    gap: 10px; /* İkon ve yazı arası boşluk */
    
    /* PHP'den gelen font boyutu değişkenini kullan */
    font-size: var(--bcp-font-boyutu);
}

.bcp-button:hover {
    opacity: 0.9;
}

/* Buton Renkleri */
.bcp-phone {
    background-color: var(--bcp-telefon-renk);
}

.bcp-whatsapp {
    background-color: var(--bcp-whatsapp-renk);
}

/* İkon Stili */
.bcp-icon {
    /* PHP'den gelen ikon boyutu değişkenini kullan */
    font-size: var(--bcp-ikon-boyutu);
    line-height: 1; /* Dikey hizalamayı iyileştirir */
}