.wclt-exit-intent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px); /* Premium blur effect */
    transition: all 0.3s ease;
}

.wclt-exit-intent-modal {
    background: #ffffff;
    width: 90%;
    max-width: 500px;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    position: relative;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    animation: wcltBounceIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 6px solid #ff4757; /* Urgent Red Accent */
}

@keyframes wcltBounceIn {
    0% { transform: scale(0.8); opacity: 0; }
    60% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.wclt-offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff4757;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
    letter-spacing: 1px;
}

.wclt-exit-intent-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    background: #f1f2f6;
    border: none;
    cursor: pointer;
    color: #747d8c;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.wclt-exit-intent-close:hover {
    background: #dfe4ea;
    color: #2f3542;
}

.wclt-exit-intent-content h2 {
    margin-top: 10px;
    color: #2f3542;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.wclt-exit-intent-body {
    font-size: 17px;
    color: #57606f;
    margin-bottom: 25px;
    line-height: 1.6;
}

.wclt-coupon-box {
    background: #fff0f1;
    border: 2px dashed #ff4757;
    padding: 15px;
    margin: 20px 0;
    display: inline-block;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
}

.wclt-coupon-label {
    display: block;
    font-size: 14px;
    color: #ff4757;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: bold;
}

.wclt-coupon-code {
    display: block;
    background: #fff;
    padding: 10px;
    border: 1px solid #ffcccf;
    border-radius: 6px;
    font-size: 24px;
    font-weight: 900;
    color: #ff4757;
    cursor: pointer;
    transition: transform 0.2s;
    user-select: all;
}

.wclt-coupon-code:active {
    transform: scale(0.98);
}

.wclt-continue-checkout {
    background: linear-gradient(135deg, #2ed573 0%, #26af61 100%);
    color: white;
    border: none;
    padding: 16px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 5px 15px rgba(46, 213, 115, 0.4);
    text-transform: uppercase;
    animation: wcltPulse 2s infinite;
}

@keyframes wcltPulse {
    0% { box-shadow: 0 0 0 0 rgba(46, 213, 115, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(46, 213, 115, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 213, 115, 0); }
}

.wclt-continue-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 213, 115, 0.5);
}

.wclt-continue-checkout:active {
    transform: translateY(1px);
}

.wclt-secure-badge {
    margin-top: 20px;
    font-size: 13px;
    color: #a4b0be;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}
