#cicekchi-up-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    font-size: 20px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

#cicekchi-up-button.cup-visible {
    display: flex;
}

#cicekchi-up-button:hover {
    transform: translateY(-2px);
}

/* Mobilde gizle */
@media (max-width: 768px) {
    #cicekchi-up-button {
        display: none !important;
    }
}
