/* assets/css/style.css */
.hib-container {
    --hib-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: fixed;
    z-index: 9999;
    display: flex;
    gap: var(--hib-gap, 10px);
}

/* Pozisyon stilleri */
.hib-floating.hib-bottom-right {
    bottom: var(--hib-margin-y, 20px);
    right: var(--hib-margin-x, 20px);
    flex-direction: column;
}

.hib-floating.hib-bottom-left {
    bottom: var(--hib-margin-y, 20px);
    left: var(--hib-margin-x, 20px);
    flex-direction: column;
}

.hib-floating.hib-middle-right {
    right: var(--hib-margin-x, 20px);
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
}

.hib-floating.hib-middle-left {
    left: var(--hib-margin-x, 20px);
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
}

.hib-fixed-bottom {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: 100%;
    background: var(--hib-background);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.hib-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    color: var(--hib-text-color, #ffffff)!important;
    transition: all 0.3s ease;
}

.hib-floating .hib-button {
    width: var(--hib-desktop-size, 60px);
    height: var(--hib-desktop-size, 60px);
    border-radius: 50%;
    box-shadow: var(--hib-shadow);
}

.hib-fixed-bottom .hib-button {
    flex: 1;
    padding: 12px;
    justify-content: center;
    border-radius: 0;
    margin: 0;
    width: 100%;
    min-width: 0;
}

.hib-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.hib-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.hib-text {
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.hib-fixed-bottom .hib-text {
    display: inline;
}

/* İkon stilleri */
.hib-icon-whatsapp {
    background-image: url('../icons/whatsapp.svg');
}

.hib-icon-phone {
    background-image: url('../icons/phone.svg');
}

.hib-icon-mail {
    background-image: url('../icons/mail.svg');
}

.hib-icon-link {
    background-image: url('../icons/link.svg');
}

.hib-icon-location {
    background-image: url('../icons/location.svg');
}

/* Responsive */
@media (max-width: 768px) {
    .hib-floating .hib-button {
        width: var(--hib-mobile-size, 50px);
        height: var(--hib-mobile-size, 50px);
    }
    
    .hib-icon {
        width: 20px;
        height: 20px;
    }
    
    .hib-text {
        font-size: 13px;
    }
    
    
    .hib-fixed-bottom .hib-button {
        padding: 10px 15px;
    }
}