.floating-btn-group {
    position: fixed;
    top: 40%;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.floating-btn-group.hidden {
    opacity: 0;
    pointer-events: none;
}

.float-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #CF7525; /* orange color */
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: background 0.3s, transform 0.2s;
}

.float-btn:hover {
    background: #DE9A5E;
    transform: scale(1.1);
}

/* ---------- MOBILE VIEW ---------- */
@media (max-width: 768px) {
    .floating-btn-group {
        top: auto;
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        flex-direction: row;
        gap: 8px;
    }

    .float-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}