/* Background Overlay */
.eip-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 9998;
    display: none;
}

/* Popup Box */
.eip-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    max-width: 90%;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    text-align: center;
}

/* Close Button */
.eip-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

/* Discount Code Styling */
.eip-discount-code {
    font-size: 18px;
    font-weight: bold;
    color: #ff0000;
    margin-top: 10px;
}

/* Message Content Styling */
.eip-message {
    margin-bottom: 15px;
}

.eip-message p {
    margin: 0 0 10px;
}

.eip-message img {
    max-width: 100%;
    height: auto;
}

.eip-message ul, .eip-message ol {
    text-align: left;
    margin-left: 20px;
    margin-bottom: 10px;
}

/* CTA Button Container */
.eip-cta-container {
    margin-top: 15px;
    text-align: center;
}

/* CTA Button - Basic styling (more specific styling is inline) */
.eip-cta-button {
    transition: all 0.3s ease;
}

.eip-cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.eip-cta-button:active {
    transform: translateY(0);
}
