/* ========================================================
   Viro Newsletter Widget — Elementor
   ======================================================== */

.viro-newsletter-section {
    background-color: var(--color-light-grey);
    padding: var(--spacing-xl) 0;
    width: 100%;
    border-top: 1px solid var(--color-border-lighter);
    border-bottom: 1px solid var(--color-border-lighter);
}

/* Réutilise les classes globales du thème */
.viro-newsletter-section .newsletter-apps-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
}

.viro-newsletter-section .info-column {
    flex: 1.5;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.viro-newsletter-section .newsletter-text {
    text-align: left;
}

.viro-newsletter-section .column-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-extrabold);
    margin-bottom: var(--spacing-xs);
}

.viro-newsletter-section .subtitle {
    font-size: var(--font-size-sm);
    margin-bottom: 0;
    opacity: 0.8;
}

.viro-newsletter-section .icon-circle {
    width: 75px;
    height: 75px;
    background-color: var(--viro-primary-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--viro-primary-color);
    flex-shrink: 0;
}

.viro-newsletter-section .icon-circle svg {
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
}

.viro-newsletter-section .form-column {
    flex: 1.8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.viro-newsletter-section .notice {
    font-size: var(--font-size-xs);
    margin-bottom: var(--spacing-xs);
    opacity: 0.6;
}

.viro-newsletter-section .newsletter-form {
    width: 100%;
    max-width: 500px;
}

.viro-newsletter-section .newsletter-form form {
    display: flex;
    gap: var(--spacing-sm);
    width: 100%;
}

.viro-newsletter-section .newsletter-form input[type="email"] {
    flex-grow: 1;
    height: 50px;
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 0 var(--spacing-sm);
    font-size: var(--font-size-sm);
    outline: none;
    color: var(--viro-secondary-color);
}

.viro-newsletter-section .btn-subscribe {
    background-color: var(--viro-primary-color);
    color: var(--color-white) !important;
    padding: 0 var(--spacing-lg);
    height: 50px;
    border: none;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.viro-newsletter-section .btn-subscribe:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(var(--viro-primary-color-rgb), 0.3);
}

.viro-newsletter-section .apps-column {
    flex: 1;
    text-align: right;
}

.viro-newsletter-section .apps-title {
    font-size: var(--font-size-base);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.viro-newsletter-section .app-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: flex-end;
}

.viro-newsletter-section .app-btn-link img {
    height: 44px;
    width: auto;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.viro-newsletter-section .app-btn-link:hover img {
    transform: translateY(-2px);
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 992px) {
    .viro-newsletter-section .newsletter-apps-grid {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .viro-newsletter-section .info-column {
        flex-direction: column;
        justify-content: center;
    }

    .viro-newsletter-section .newsletter-text {
        text-align: center;
    }

    .viro-newsletter-section .form-column {
        align-items: center;
        width: 100%;
    }

    .viro-newsletter-section .newsletter-form {
        max-width: 100%;
    }

    .viro-newsletter-section .apps-column {
        text-align: center;
    }

    .viro-newsletter-section .app-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .viro-newsletter-section .newsletter-form form {
        flex-direction: column;
    }

    .viro-newsletter-section .newsletter-form input[type="email"],
    .viro-newsletter-section .btn-subscribe {
        width: 100%;
    }
}