/* Floating CS Button */
.cs-float{
    position: fixed;
    right: 16px;
    bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.cs-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.cs-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0,0,0,.25);
    opacity: .95;
}

/* WhatsApp */
.cs-btn.wa{
    background: #25D366;
}

/* Telegram */
.cs-btn.tg{
    background: #229ED9;
}

/* Mobile safe spacing */
@media (max-width: 600px){
    .cs-float{
        right: 12px;
        bottom: 12px;
    }
    .cs-btn{
        min-width: 130px;
        height: 40px;
        font-size: 13.5px;
    }
}
