/* Container Overlay */
#vep-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    font-family: inherit; /* Uses theme font */
}

#vep-overlay.vep-hidden {
    display: none !important;
}

/* Modal Card */
.vep-card {
    width: 100%;
    max-width: 400px;
    padding: 48px 32px;
    position: relative;
    text-align: center;
    box-sizing: border-box;
}

/* Top-Right Close (X) Icon Fix */
#vep-close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 28px;
    font-weight: 300;
    color: #000000;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    z-index: 1000000; /* one higher than #vep-overlay's 999999 */
    outline: none;
}

#vep-close-btn:hover {
    opacity: 0.6;
}

/* "NO, THANK YOU" Text Link Style */
.vep-link-btn {
    background: transparent;
    border: none;
    color: #777777;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    /* text-decoration: underline; */
    cursor: pointer;
    padding: 8px 0 0 0;
    margin-top: 5px;
    text-transform: uppercase;
    font-family: inherit;
    transition: color 0.2s ease;
}

.vep-link-btn:hover {
    color: #000000;
}

/* Typography */
.vep-title {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 2px;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    font-family: inherit;
}

.vep-subtitle {
    font-size: 11px;
    letter-spacing: 1.2px;
    color: #888888;
    margin: 0 0 25px 0;
    line-height: 1.5;
    font-family: inherit;
}

/* Button Group */
.vep-btn-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Buttons Styling */
.vep-btn {
    width: 100%;
    padding: 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 0px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.vep-btn-primary {
    background: #000000;
    color: #ffffff;
    border: 1px solid #000000;
}

.vep-btn-primary:hover {
    background: #333333;
}

.vep-btn-secondary {
    background: transparent;
    color: #000000;
    border: 1px solid #cccccc;
}

.vep-btn-secondary:hover {
    border-color: #000000;
}

/* Form Styles */
#vep-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#vep-email {
    width: 100%;
    padding: 15px;
    border: 1px solid #000000;
    font-size: 13px;
    letter-spacing: 1px;
    outline: none;
    box-sizing: border-box;
    font-family: inherit;
}

#vep-error-msg {
    margin-top: 10px;
    color: #d9534f;
    font-size: 12px;
}

/* Coupon Box */
.vep-code-box {
    border: 1px solid #000000;
    padding: 16px;
    margin: 20px;
    background: transparent;
}

.vep-code-box strong {
    font-size: 24px;
    letter-spacing: 3px;
    color: #000000;
}

.vep-hidden {
    display: none !important;
}

/* Disclaimer Notice (Sentence Case / No Uppercase) */
.vep-disclaimer {
    font-size: 10px;
    line-height: 1.4;
    color: #6c6c6c;
    margin-top: 15px;
    margin-bottom: 0;
    text-align: center;
    text-transform: none !important; /* Enforces normal sentence case */
    font-family: inherit;
}

.vep-disclaimer a {
    color: #6c6c6c;
    text-decoration: underline;
}

.vep-disclaimer a:hover {
    color: #000000;
}