/* ── Exit Intent Popup Styles ─────────────────────────────────────── */

#exit-intent-popup {
    text-align: center;
    padding: 10px 20px 20px;
}

.exit-popup-inner {
    max-width: 480px;
    margin: 0 auto;
}

.exit-popup-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.exit-popup-content {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Discount code box */
.exit-popup-code-wrapper {
    background: #f0f4ff;
    border: 2px dashed #3d6ee8;
    border-radius: 6px;
    padding: 14px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.exit-popup-code-label {
    font-size: 14px;
    color: #555;
}

.exit-popup-code {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #1a1a1a;
}

.exit-popup-copy-btn {
    background: #3d6ee8;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 6px 14px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
}

.exit-popup-copy-btn:hover {
    background: #2a56d0;
}

.exit-popup-copied {
    color: #2a8a2a;
    font-weight: 600;
    font-size: 13px;
}

/* CTA button */
.exit-popup-cta {
    display: block;
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 14px;
}

/* Dismiss link */
.exit-popup-dismiss {
    background: none;
    border: none;
    color: #888;
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

.exit-popup-dismiss:hover {
    color: #444;
}
