:root {
    --wpaa-gold: #d19f47;
    --wpaa-gold-hover: #b3883b;
    --wpaa-gold-soft: #f8f4f0;
    --wpaa-text-dark: #2c2c2c;
    --wpaa-text-light: #666;
    --wpaa-white: #ffffff;
    --wpaa-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* --- NEWSLETTER POPUP --- */
#wpaa-newsletter-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    z-index: 10000000;
    width: 90%;
    max-width: 700px;
    display: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.wpaa-newsletter-flex {
    display: flex;
    flex-wrap: wrap;
}

.wpaa-newsletter-img {
    width: 40%;
    min-width: 250px;
    min-height: 300px;
    background-size: cover;
    background-position: center;
}

.wpaa-newsletter-content {
    flex: 1;
    padding: 40px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wpaa-newsletter-content h2 { font-size: 28px; margin: 0 0 10px 0; color: var(--wpaa-gold); line-height: 1.2; }
.wpaa-newsletter-content p { font-size: 15px; color: #666; margin-bottom: 25px; line-height: 1.5; }

.wpaa-form-group { margin-bottom: 15px; }
.wpaa-form-group input {
    width: 100% !important;
    padding: 14px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    box-sizing: border-box !important;
    font-size: 14px !important;
    outline: none !important;
    transition: border-color 0.2s;
}

.wpaa-form-group input:focus {
    border-color: var(--wpaa-gold) !important;
    box-shadow: 0 0 0 3px rgba(209, 159, 71, 0.1) !important;
}

.wpaa-btn-full {
    background: var(--wpaa-gold);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s, transform 0.1s;
}

.wpaa-btn-full:hover { background: var(--wpaa-gold-hover); }
.wpaa-btn-full:active { transform: scale(0.98); }

.wpaa-newsletter-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #cbd5e1;
    transition: color 0.2s;
    line-height: 1;
}

.wpaa-newsletter-close:hover { color: #64748b; }

/* --- COOKIE CONSENT BAR --- */
#wpaa-cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid #f1f5f9;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

#wpaa-cookie-popup h3 { margin: 0; font-size: 16px; color: #1e293b; display: none; }
#wpaa-cookie-popup p { margin: 0; font-size: 14px; color: #64748b; line-height: 1.4; flex: 1; }

.wpaa-cookie-buttons { display: flex; gap: 10px; align-items: center; }

.wpaa-cookie-btn {
    background: var(--wpaa-gold);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.wpaa-cookie-btn-out {
    background: transparent;
    border: 1px solid #e2e8f0;
    color: #64748b;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
}

/* Mobile Adaptations */
@media (max-width: 768px) {
    #wpaa-cookie-popup {
        flex-direction: column;
        text-align: center;
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 20px;
    }
    .wpaa-cookie-buttons { width: 100%; justify-content: center; }
    .wpaa-newsletter-img { width: 100%; min-height: 200px; }
}
