#shopaq-lead-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: shopaqFadeIn 0.3s ease;
}

@keyframes shopaqFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes shopaqSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

#shopaq-lead-popup {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 36px 32px;
    max-width: 440px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: shopaqSlideUp 0.4s ease;
    border-top: 4px solid #0274be;
}

#shopaq-lead-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    transition: color 0.2s;
}

#shopaq-lead-close:hover {
    color: #333;
}

.shopaq-lead-icon {
    font-size: 48px;
    margin-bottom: 8px;
}

#shopaq-lead-popup h2 {
    font-size: 22px;
    color: #1a1a1a;
    margin: 0 0 6px;
    line-height: 1.3;
}

.shopaq-lead-subtitle {
    font-size: 16px;
    color: #c00000;
    margin: 0 0 24px;
}

#shopaq-lead-form input[type="text"],
#shopaq-lead-form input[type="email"] {
    display: block;
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.2s;
    outline: none;
}

#shopaq-lead-form input[type="text"]:focus,
#shopaq-lead-form input[type="email"]:focus {
    border-color: #0274be;
}

.shopaq-lead-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
    margin: 4px 0 16px;
    font-size: 12px;
    color: #555;
    line-height: 1.4;
    cursor: pointer;
}

.shopaq-lead-consent input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #0274be;
    width: 16px;
    height: 16px;
}

.shopaq-lead-consent a {
    color: #0274be;
    text-decoration: underline;
}

#shopaq-lead-form button[type="submit"] {
    display: block;
    width: 100%;
    padding: 14px;
    background: #0274be;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
}

#shopaq-lead-form button[type="submit"]:hover {
    background: #025a96;
}

#shopaq-lead-form button[type="submit"]:disabled {
    background: #999;
    cursor: not-allowed;
}

#shopaq-lead-message {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
}

#shopaq-lead-message.success {
    background: #d4edda;
    color: #155724;
}

#shopaq-lead-message.error {
    background: #f8d7da;
    color: #721c24;
}

.shopaq-lead-privacy {
    font-size: 12px;
    color: #999;
    margin: 16px 0 0;
}

@media (max-width: 480px) {
    #shopaq-lead-popup {
        padding: 28px 20px 24px;
    }
    #shopaq-lead-popup h2 {
        font-size: 18px;
    }
}
