.cc-floating-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #2b2b2b;
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;

    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
}

.cc-floating-btn:hover {
    transform: scale(1.1);
    background-color: #000;
}

.cc-floating-btn.cc-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
