/* Frontend Styles */
.wvfc-float-contact {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.wvfc-notification-section {
    width: 100%;
    padding: 2px 0;
}

.wvfc-contact-section {
    width: 100%;
}

.wvfc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.wvfc-notification-line {
    width: 100%;
    text-align: center;
}

.wvfc-contact-line {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
}

.wvfc-separator {
    opacity: 0.5;
    margin: 0 5px;
}

.wvfc-contact-line a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-weight: 500;
    padding: 0px 60px;
}

.wvfc-contact-line a:hover {
    opacity: 0.8;
}

.wvfc-notification {
    font-weight: 500;
    font-size: 0.9em;
}

/* Responsive */
@media (max-width: 768px) {
    .wvfc-hide-mobile {
        display: none !important;
    }

    .wvfc-notification-line,
    .wvfc-contact-line {
        font-size: 14px;
    }

    .wvfc-notification-section {
        padding: 6px 0;
    }

    .wvfc-contact-line {
        padding: 8px 0;
    }
}

@media (min-width: 769px) {
    .wvfc-hide-desktop {
        display: none !important;
    }
}

/* Animation */
.wvfc-float-contact.wvfc-hidden {
    transform: translateY(100%);
}