.watchfit-floating-button {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 18px 24px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.5s ease, color 0.5s ease, transform 0.2s ease-in-out;
    z-index: 9999;
}

.watchfit-floating-button:hover {
    transform: translateX(-50%) scale(1.05);
}

@media (max-width: 768px) {
    .watchfit-floating-button {
        padding: 16px 22px;
        font-size: 16px;
        bottom: 15px;
    }
}

@media (min-width: 1200px) {
    .watchfit-floating-button {
        padding: 20px 28px;
        font-size: 20px;
    }
}
