/* Sabit butonlar */
.fixed-buttons {
    position: fixed;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: .75rem;
    z-index: 9999;
}

.fixed-buttons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    background: #A67C00 !important;
    font-size: 1.4rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    animation: pulse 2s infinite;
    transition: .25s;
}

.fixed-buttons a:hover {
    transform: scale(1.1);
}

.fixed-buttons .btn-whatsapp { background: radial-gradient(circle at 30% 30%, #F4E4BC 0%, #D4AF37 40%, #B8860B 75%, #A67C00 100%) !important; }
.fixed-buttons .btn-phone { background: radial-gradient(circle at 30% 30%, #F4E4BC 0%, #D4AF37 40%, #B8860B 75%, #A67C00 100%) !important; }
.fixed-buttons .btn-instagram { background: radial-gradient(circle at 30% 30%, #F4E4BC 0%, #D4AF37 40%, #B8860B 75%, #A67C00 100%) !important; }
.fixed-buttons .btn-facebook { background: radial-gradient(circle at 30% 30%, #F4E4BC 0%, #D4AF37 40%, #B8860B 75%, #A67C00 100%) !important; }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(201, 162, 39, 0); }
    100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0); }
}

@media (max-width: 900px) {
    .fixed-buttons {
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        transform: none;
        flex-direction: row;
        width: 100%;
        justify-content: stretch;
        padding: 0;
        background: #fff;
        box-shadow: 0 -4px 20px rgba(0,0,0,.15);
        gap: 0;
        border-top: 1px solid rgba(0,0,0,.05);
    }

    .fixed-buttons a {
        flex: 1;
        width: auto;
        height: 56px;
        border-radius: 0;
        font-size: 1.4rem;
        animation: none;
        box-shadow: none;
        border-right: 1px solid rgba(255,255,255,.15);
    }

    .fixed-buttons a:last-child {
        border-right: none;
    }

    .fixed-buttons .btn-whatsapp { background: #25D366; }
    .fixed-buttons .btn-phone { background: #A67C00; }
    .fixed-buttons .btn-instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
    .fixed-buttons .btn-facebook { background: #1877F2; }
}
