
.cw-floating-buttons {
    position: fixed;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cw-floating-buttons a {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.cw-floating-buttons a img {
    width: 32px;
    height: 32px;
}
@media (max-width: 768px) {
    .cw-floating-buttons a {
        width: 55px;
        height: 55px;
    }
    .cw-floating-buttons a img {
        width: 28px;
        height: 28px;
    }
}
