.wccc-exit-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999999;
}

.wccc-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.wccc-close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    background: none;
    border: none;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.wccc-close-popup:hover {
    background-color: #f0f0f0;
}

.wccc-popup-header {
    margin-bottom: 20px;
}

.wccc-popup-title {
    font-size: 24px;
    margin: 0 0 10px;
    color: #333;
}

.wccc-popup-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.wccc-email-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.wccc-email-form input[type="email"] {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    width: 100%;
}

.wccc-popup-button {
    background-color: #2271b1;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.wccc-popup-button:hover {
    background-color: #135e96;
}

.wccc-discount-code {
    background-color: #f8f8f8;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
}

.wccc-discount-code p {
    margin: 0 0 5px;
    color: #666;
}

.wccc-discount-code code {
    font-size: 24px;
    color: #2271b1;
    padding: 5px 10px;
    background-color: #fff;
    border: 2px dashed #2271b1;
    border-radius: 4px;
}

.wccc-timer {
    font-size: 14px;
    color: #666;
    margin-top: 15px;
}

@media screen and (max-width: 480px) {
    .wccc-popup-content {
        padding: 20px;
    }

    .wccc-popup-title {
        font-size: 20px;
    }

    .wccc-popup-subtitle {
        font-size: 14px;
    }

    .wccc-email-form input[type="email"],
    .wccc-popup-button {
        font-size: 14px;
        padding: 10px;
    }

    .wccc-discount-code code {
        font-size: 20px;
    }
} 