/**
 * Klaviyo Newsletter Footer Styles
 * Version: 2.0
 * Culorile vin din variabile injectate inline pe .cm-newsletter-wrapper
 * (cu fallback la valorile implicite, pentru compatibilitate).
 */

/* Main Wrapper */
.cm-newsletter-wrapper {
    background: linear-gradient(135deg, var(--cm-grad-start, #228000) 50%, var(--cm-grad-end, #2da000) 100%);
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.cm-newsletter-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cm-newsletter-wrapper::after {
    content: '';
    position: absolute;
    top: -50px;
    right: 10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Container */
.cm-newsletter-container {
    max-width: 1283px;
    margin: 0 auto;
    padding: 35px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Content */
.cm-newsletter-content {
    flex: 1;
    color: #fff;
}

.cm-newsletter-title {
    font-size: 1.5em;
    color: #fff !important;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cm-newsletter-subtitle {
    font-size: 16px;
    margin: 0 0 6px 0;
    opacity: 0.95;
    line-height: 1.4;
}

.cm-newsletter-discount {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 13px;
    margin-top: 6px;
    margin-right: 6px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cm-newsletter-discount:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.cm-newsletter-discount svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.cm-newsletter-note {
    display: block;
    margin-top: 12px;
    opacity: 0.9;
    font-size: 13px;
}

/* Form Wrapper */
.cm-newsletter-form-wrapper {
    flex: 1;
    max-width: 500px;
}

.cm-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(255,255,255,0.95);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* Klaviyo Form Container */
.cm-newsletter-form .klaviyo-form-V7Leh6 {
    width: 100%;
}

/* GDPR Text */
.cm-newsletter-gdpr {
    font-size: 12px;
    color: #666;
    margin: 8px 0 0 0;
    line-height: 1.4;
}

.cm-newsletter-gdpr a {
    color: var(--cm-accent, #228000);
    text-decoration: none;
    font-weight: 600;
}

.cm-newsletter-gdpr a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .cm-newsletter-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .cm-newsletter-form-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .cm-newsletter-title {
        font-size: 1em;
    }

    .cm-newsletter-discount {
        margin-bottom: 4px;
    }
}

@media (max-width: 640px) {
    .cm-newsletter-form {
        padding: 20px;
    }

    .cm-newsletter-title {
        font-size: 1em;
    }

    .cm-newsletter-discount {
        font-size: 12px;
        padding: 5px 10px;
    }
}
