.elementor-30178 .elementor-element.elementor-element-faa0a2c{--display:flex;}.elementor-widget-html .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-html .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}#elementor-popup-modal-30178{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-30178 .dialog-message{width:640px;height:auto;}#elementor-popup-modal-30178 .dialog-close-button{display:flex;}#elementor-popup-modal-30178 .dialog-widget-content{box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}/* Start custom CSS for html, class: .elementor-element-209a5fb *//* =====================================
   RDPextra Discount Popup - Production Ready
====================================== */

:root {
    --rdp-primary: #1E88E5;
    --rdp-primary-dark: #1565C0;
    --rdp-accent: #42A5F5;
    --rdp-bg: #171B2B;
    --rdp-bg-alt: #1D263C;
    --rdp-text: #FFFFFF;
    --rdp-text-muted: #C8D4E8;
    --rdp-text-light: #8FA7C9;
    --rdp-border: rgba(66, 165, 245, .20);
}

/* Global Overlay Layer - Removed backdrop-filter to prevent light stripe blur artifacts */
#rdp-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999 !important;
    background: rgba(8, 10, 18, 0.9) !important; /* Solid dark translucent backdrop */
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    padding: 20px;
    box-sizing: border-box;
}

/* Central Offer Card Container */
.rdp-popup-card {
    width: 100%;
    max-width: 460px;
    max-height: 90vh; /* Prevents overflow on short mobile screens */
    overflow-y: auto; /* Custom scroll block inside the card */
    position: relative;
    background: var(--rdp-bg) !important;
    border-radius: 20px;
    padding: 36px 32px 32px;
    color: var(--rdp-text);
    border: 1px solid var(--rdp-border);
    box-shadow: 0 30px 60px rgba(10, 37, 64, 0.5);
    animation: popupFade 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-sizing: border-box;
}

/* Custom internal scrollbar for small viewports */
.rdp-popup-card::-webkit-scrollbar {
    width: 4px;
}
.rdp-popup-card::-webkit-scrollbar-thumb {
    background: var(--rdp-border);
    border-radius: 4px;
}

/* Top Accent Stripe */
.rdp-popup-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #42A5F5, #2196F3, #1976D2, #1565C0);
}

/* Close Circular Button */
.rdp-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(13, 71, 161, 0.5);
    color: #ffffff !important;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    padding: 0;
}
.rdp-close svg { 
    width: 16px; 
    height: 16px; 
    display: block;
}
.rdp-close:hover { 
    background: #0D47A1; 
    transform: scale(1.05); 
}

/* Alignment Elements */
.rdp-badge,
.rdp-title,
.rdp-countdown-title,
.rdp-copy-btn,
.rdp-shop-btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Limited Offer Top Badge */
.rdp-badge {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 50px;
    background: #0D47A1;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.rdp-badge svg { width: 14px; height: 14px; color: var(--rdp-accent); }

/* Typography & Layout Spacing */
.rdp-title {
    margin: 20px 0 8px;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.rdp-offer {
    margin: 0 0 16px;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.1;
}
.rdp-offer span { color: var(--rdp-accent); }
.rdp-offer small {
    display: block;
    margin-top: 4px;
    font-size: 18px;
    color: var(--rdp-text-muted);
    font-weight: 500;
}

.rdp-description {
    color: var(--rdp-text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 24px;
}
.rdp-description strong { color: #fff; }

/* Coupon Row Layout */
.rdp-coupon-row {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.rdp-coupon-code {
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    border: 2px dashed var(--rdp-accent);
    border-radius: 10px;
    background: var(--rdp-bg-alt);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    box-sizing: border-box;
}

.rdp-copy-btn {
    flex: 1;
    justify-content: center;
    height: 50px;
    border: none;
    border-radius: 10px;
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    background: linear-gradient(135deg, #42A5F5, #1E88E5);
    transition: all 0.2s ease;
    box-sizing: border-box;
    text-decoration: none;
}
.rdp-copy-btn:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30,136,229,.3);
}

/* Copy Confirmation Alert Styling */
.rdp-copy-alert {
    color: #66BB6A;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    margin-top: -14px;
    margin-bottom: 20px;
}

/* Countdown Configuration */
.rdp-countdown-box { margin-bottom: 24px; }
.rdp-countdown-title {
    color: var(--rdp-accent);
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
}

.rdp-countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.time-box {
    background: var(--rdp-bg-alt);
    border: 1px solid rgba(66, 165, 245, 0.1);
    border-radius: 10px;
    padding: 10px 4px;
    text-align: center;
    box-sizing: border-box;
}
.time-box span {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--rdp-accent);
    line-height: 1.2;
}
.time-box small {
    display: block;
    font-size: 9px;
    color: #9FB6D9;
    letter-spacing: .5px;
    margin-top: 2px;
}

/* Action Button Callout Layout */
.rdp-shop-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff !important;
    font-weight: 600;
    font-size: 15px;
    background: linear-gradient(135deg, #1E88E5, #1565C0);
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.rdp-shop-btn:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30,136,229,.3);
}

/* Custom layout formatting for integrated inline vector SVG icon */
.rdp-btn-svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Micro-animations */
@keyframes popupFade {
    from { opacity: 0; transform: translateY(20px) scale(.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Mobile Responsiveness Updates */
@media (max-width: 480px) {
    #rdp-popup { padding: 12px; }
    .rdp-popup-card { padding: 28px 20px 20px; border-radius: 16px; }
    .rdp-title { font-size: 22px; margin-top: 16px; }
    .rdp-offer { font-size: 32px; }
    .rdp-offer small { font-size: 16px; }
    
    .rdp-coupon-row { flex-direction: column; gap: 8px; margin-bottom: 14px; }
    .rdp-coupon-code, .rdp-copy-btn { width: 100%; height: 46px; }
    
    .rdp-copy-alert { margin-top: -6px; margin-bottom: 16px; }
    
    .time-box { padding: 8px 2px; }
    .time-box span { font-size: 18px; }
    .time-box small { font-size: 8px; }
}/* End custom CSS */