/**
 * Casinofy Auth Popup Styles
 * Light Theme - Matches current Casinofy design
 */

/* Hide old static dialogs */
#dialog_lost_pwd,
#dialog_must_login,
#dialog_subscribe,
#dialog_signin,
#dialog_signup {
    display: none !important;
}

/* ===== DIALOG OVERLAY ===== */
.ui-widget-overlay {
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 1 !important;
}

/* ===== MAIN DIALOG CONTAINER ===== */
.ui-dialog,
.ui-dialog.casinofy-auth-dialog,
.ui-dialog[aria-describedby="cf_dialog"] {
    border: none !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.25) !important;
    overflow: hidden !important;
    padding: 0 !important;
    max-width: 480px !important;
    width: 92vw !important;
    flex-direction: unset !important;
}

/* Hide default jQuery UI titlebar */
.ui-dialog-titlebar {
    display: none !important;
}

/* Dialog content wrapper */
.ui-dialog-content,
.ui-dialog .ui-dialog-content {
    padding: 0 !important;
    background: transparent !important;
    overflow: visible !important;
}

/* ===== DIALOG WRAPPER ===== */
.dialog_wrapper {
    background: transparent !important;
    padding: 36px 32px 32px !important;
    position: relative !important;
    z-index: 1;
}

/* ===== CLOSE BUTTON ===== */
.dialog-close-btn,
#cf_dialog .dialog-close-btn,
.dialog_wrapper .dialog-close-btn {
    position: absolute !important;
    top: 24px !important;
    right: 24px !important;
    width: 28px !important;
    height: 28px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 999999 !important;
    padding: 0 !important;
    pointer-events: auto !important;
    color: rgba(0, 0, 0, 0.4) !important;
    font-size: 24px !important;
    font-weight: 300 !important;
    line-height: 1 !important;
    font-family: Arial, sans-serif !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.dialog-close-btn:hover,
#cf_dialog .dialog-close-btn:hover,
.dialog_wrapper .dialog-close-btn:hover {
    color: rgba(0, 0, 0, 0.7) !important;
}

/* ===== TYPOGRAPHY ===== */
.dialog_wrapper h2.heading-update,
.dialog_wrapper h2 {
    color: #1a1a2e !important;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    font-style: normal !important;
    margin: 0 0 28px 0 !important;
    padding: 0 !important;
    padding-right: 40px !important;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-align: left !important;
}

/* ===== FORM LABELS ===== */
.dialog_wrapper label,
.dialog_wrapper .form-group > label {
    color: #1a1a2e !important;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    display: block;
    letter-spacing: 0.1px;
}

/* ===== FORM ELEMENTS ===== */
.dialog_wrapper .form-control,
.dialog_wrapper input[type="text"],
.dialog_wrapper input[type="email"],
.dialog_wrapper input[type="password"] {
    background: #f5f5f5 !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 12px !important;
    padding: 16px 18px !important;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    color: #1a1a2e !important;
    transition: all 0.2s ease !important;
    height: auto !important;
    min-height: 54px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
}

.dialog_wrapper .form-control:hover,
.dialog_wrapper input[type="text"]:hover,
.dialog_wrapper input[type="email"]:hover,
.dialog_wrapper input[type="password"]:hover {
    background: #f0f0f0 !important;
    border-color: rgba(139, 92, 246, 0.3) !important;
}

.dialog_wrapper .form-control:focus,
.dialog_wrapper input[type="text"]:focus,
.dialog_wrapper input[type="email"]:focus,
.dialog_wrapper input[type="password"]:focus {
    background: #ffffff !important;
    border-color: rgba(139, 92, 246, 0.5) !important;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1) !important;
    outline: none !important;
}

.dialog_wrapper .form-control::placeholder,
.dialog_wrapper input::placeholder {
    color: rgba(0, 0, 0, 0.4) !important;
    font-weight: 400;
}

/* Password visibility toggle icon */
.dialog_wrapper .password-input-wrap {
    position: relative;
}

.dialog_wrapper .password-input-wrap input {
    padding-right: 50px !important;
}

.dialog_wrapper .toggle-password {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none !important;
    border: none !important;
    color: rgba(0, 0, 0, 0.4) !important;
    cursor: pointer;
    padding: 4px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.dialog_wrapper .toggle-password:hover {
    color: rgba(0, 0, 0, 0.7) !important;
}

.dialog_wrapper .toggle-password svg {
    width: 22px;
    height: 22px;
}

.dialog_wrapper .toggle-password.visible .eye-icon {
    display: none;
}

.dialog_wrapper .toggle-password.visible .eye-off-icon {
    display: block !important;
}

/* ===== FORGOT PASSWORD LINK ===== */
.dialog_wrapper .go_forgot_passwrod,
.dialog_wrapper a[class*="forgot"] {
    color: #8b5cf6 !important;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    display: inline-block !important;
    margin-top: 6px !important;
    margin-bottom: 16px !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    text-align: left !important;
    transition: color 0.2s ease !important;
    cursor: pointer !important;
}

.dialog_wrapper .go_forgot_passwrod:hover,
.dialog_wrapper a[class*="forgot"]:hover {
    color: #7c3aed !important;
    text-decoration: none !important;
}

/* ===== PRIMARY BUTTON ===== */
.dialog_wrapper .btn-primary,
.dialog_wrapper .btn-save.create,
.dialog_wrapper .load_more_btn_cf button {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%) !important;
    border: none !important;
    border-radius: 16px !important;
    padding: 18px 32px !important;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    cursor: pointer;
    transition: all 0.2s ease !important;
    text-transform: none !important;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3) !important;
    width: 100%;
    margin-top: 8px;
    display: block;
    text-align: center;
    min-height: 58px !important;
}

.dialog_wrapper .btn-primary:hover,
.dialog_wrapper .btn-save.create:hover,
.dialog_wrapper .load_more_btn_cf button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4) !important;
    background: linear-gradient(135deg, #9d7af8 0%, #8b5cf6 100%) !important;
}

.dialog_wrapper .btn-primary:active,
.dialog_wrapper .btn-save.create:active,
.dialog_wrapper .load_more_btn_cf button:active {
    transform: translateY(0) !important;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3) !important;
}

/* ===== SOCIAL LOGIN BUTTONS ===== */
.dialog_wrapper .social-login-buttons {
    display: flex !important;
    gap: 14px !important;
    margin-top: 24px !important;
    padding-bottom: 28px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    margin-bottom: 28px !important;
}

.dialog_wrapper .social-btn {
    flex: 1 !important;
    background: #f5f5f5 !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 16px !important;
    padding: 16px 24px !important;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #1a1a2e !important;
    cursor: pointer;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    min-height: 56px !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

.dialog_wrapper .social-btn:hover {
    background: #ebebeb !important;
    border-color: rgba(139, 92, 246, 0.3) !important;
    transform: translateY(-1px);
}

.dialog_wrapper .social-btn:active {
    transform: translateY(0);
    background: #e0e0e0 !important;
}

.dialog_wrapper .social-btn svg,
.dialog_wrapper .social-btn img {
    width: 22px !important;
    height: 22px !important;
    flex-shrink: 0;
}

/* Google icon */
.dialog_wrapper .google-btn svg path {
    fill: #1a1a2e !important;
}

/* Apple icon */
.dialog_wrapper .apple-btn svg path {
    fill: #1a1a2e !important;
}

/* ===== FOOTER SECTION ===== */
.dialog_wrapper .auth-footer {
    text-align: center;
    margin-top: 0 !important;
    padding-top: 0;
    border-top: none;
}

.dialog_wrapper .auth-footer p {
    color: #6b7280 !important;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 14px !important;
    margin: 0 0 12px 0 !important;
    font-weight: 400;
}

/* Gradient text for Sign up link */
.dialog_wrapper .auth-footer p a,
.dialog_wrapper .auth-footer .go_signup,
.dialog_wrapper .auth-footer .go_signin {
    color: #8b5cf6 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #8b5cf6 !important;
    background-clip: unset !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    border: none !important;
    padding: 0 !important;
    transition: color 0.2s ease !important;
}

.dialog_wrapper .auth-footer p a:hover,
.dialog_wrapper .auth-footer .go_signup:hover,
.dialog_wrapper .auth-footer .go_signin:hover {
    color: #7c3aed !important;
    -webkit-text-fill-color: #7c3aed !important;
    background: none !important;
}

/* Why join link */
.dialog_wrapper .why-join-link,
.dialog_wrapper a.why-join-link {
    color: #8b5cf6 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #8b5cf6 !important;
    background-clip: unset !important;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    display: block;
    text-align: center;
    margin-top: 8px;
    transition: color 0.2s ease !important;
}

.dialog_wrapper .why-join-link:hover {
    color: #7c3aed !important;
    -webkit-text-fill-color: #7c3aed !important;
    background: none !important;
}

/* ===== ERROR MESSAGES ===== */
.dialog_wrapper .form_error,
.dialog_wrapper .form-error,
.dialog_wrapper small.form_error {
    color: #ef4444 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    margin-top: 6px !important;
    display: block;
}

/* ===== FORM GROUP SPACING ===== */
.dialog_wrapper .form-group,
.dialog_wrapper .form-width-pop {
    margin-bottom: 20px !important;
    position: relative !important;
    display: block !important;
    width: 100% !important;
}

/* ===== LOAD MORE WRAPPER ===== */
.dialog_wrapper .load_more_wrapper {
    margin-top: 0 !important;
    padding: 0 !important;
    position: static !important;
    display: block !important;
}

.dialog_wrapper .load_more_btn_cf {
    text-align: center;
}

/* ===== CHECKBOX STYLING ===== */
.dialog_wrapper .check-bocks {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 16px 0;
    padding: 0;
}

.dialog_wrapper .check-bocks input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: #8b5cf6;
    cursor: pointer;
    margin-top: 2px;
    border-radius: 4px;
}

.dialog_wrapper .check-bocks label {
    color: #6b7280 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    cursor: pointer;
    margin: 0 !important;
    line-height: 1.4;
}

/* ===== RESET STYLES ===== */
.dialog_wrapper form {
    display: block !important;
    width: 100% !important;
}

.dialog_wrapper .row,
.dialog_wrapper .row-set,
.dialog_wrapper .row-set-pop,
.dialog_wrapper [class*="col-"] {
    display: block !important;
    width: 100% !important;
    float: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.dialog_wrapper .col-6-set.padding-adjust:not(:only-child) {
    display: none !important;
}

.ui-dialog[aria-describedby="cf_dialog"] {
    flex-direction: unset !important;
    display: block;
}

.ui-dialog[aria-describedby="cf_dialog"] .cf_dialog {
    padding: 0 !important;
    width: 100% !important;
}

/* Ensure dialog content takes full width */
.ui-dialog .ui-dialog-content,
.ui-dialog-content#cf_dialog,
#cf_dialog.ui-dialog-content {
    width: 100% !important;
    display: block !important;
}

.ui-dialog .dialog_wrapper {
    width: 100% !important;
}

/* ===== LOADER ===== */
.dialog_wrapper .loader_wrapper,
.loader_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    padding: 40px;
}

.loader_wrapper img {
    max-width: 40px;
}

/* ===== ALERT MESSAGES ===== */
.dialog_wrapper .alert-success {
    background: rgba(34, 197, 94, 0.1) !important;
    border: 1px solid rgba(34, 197, 94, 0.3) !important;
    color: #16a34a !important;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px;
    margin-bottom: 16px;
    text-align: center;
}

.dialog_wrapper .alert-danger {
    background: rgba(239, 68, 68, 0.1) !important;
    border: 1px solid rgba(239, 68, 68, 0.3) !important;
    color: #ef4444 !important;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px;
    margin-bottom: 16px;
    text-align: center;
}

/* ===== BACK BUTTON ===== */
.dialog_wrapper .back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1a1a2e !important;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    margin-bottom: 24px;
    transition: opacity 0.2s ease;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer !important;
}

.dialog_wrapper .back-btn:hover {
    opacity: 0.7;
}

.dialog_wrapper .back-btn::before {
    content: '‹';
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
}

/* ===== SELECT/DROPDOWN STYLING ===== */
.dialog_wrapper select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%231a1a2e' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px !important;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 520px) {
    .ui-dialog,
    .ui-dialog.casinofy-auth-dialog,
    .ui-dialog[aria-describedby="cf_dialog"] {
        width: 95vw !important;
        max-width: none !important;
        border-radius: 16px !important;
    }
    
    .dialog_wrapper {
        padding: 28px 24px 28px !important;
    }
    
    .dialog_wrapper h2.heading-update,
    .dialog_wrapper h2 {
        font-size: 24px !important;
    }
    
    .dialog_wrapper .form-control,
    .dialog_wrapper input[type="text"],
    .dialog_wrapper input[type="email"],
    .dialog_wrapper input[type="password"] {
        padding: 14px 16px !important;
        font-size: 15px !important;
        min-height: 50px !important;
    }
    
    .dialog_wrapper .btn-primary,
    .dialog_wrapper .load_more_btn_cf button {
        padding: 16px 24px !important;
        font-size: 15px !important;
        min-height: 52px !important;
    }
    
    .dialog_wrapper .social-btn {
        padding: 14px 16px !important;
        font-size: 14px !important;
        min-height: 50px !important;
    }
    
    .dialog-close-btn {
        top: 20px !important;
        right: 20px !important;
    }
}

/* ===== SIGNUP WIZARD STEPS ===== */
.signup-steps-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.signup-steps-indicator .step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.signup-steps-indicator .step-dot.active {
    background: #8b5cf6;
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
}

.signup-steps-indicator .step-dot.completed {
    background: #8b5cf6;
}

.signup-step {
    display: none !important;
}

.signup-step.active {
    display: block !important;
    animation: stepFadeIn 0.3s ease-out;
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== COUNTRIES DROPDOWN ===== */
.dialog_wrapper .form-group {
    position: relative !important;
}

.dialog_wrapper .form-group.country-field-wrapper,
.country-field-wrapper {
    position: relative !important;
}

#countries_list {
    position: absolute !important;
    top: calc(100% + 4px) !important;
    left: 0 !important;
    right: 0 !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 12px !important;
    max-height: 200px !important;
    overflow-y: auto !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
    width: 100% !important;
    z-index: 9999999 !important;
}

.dialog_wrapper #countries_list,
#cf_dialog #countries_list,
.ui-dialog #countries_list {
    position: absolute !important;
    top: calc(100% + 4px) !important;
    left: 0 !important;
    right: 0 !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 12px !important;
    max-height: 200px !important;
    overflow-y: auto !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
    width: 100% !important;
    z-index: 9999999 !important;
}

#countries_list .result_entry,
.dialog_wrapper #countries_list .result_entry,
#cf_dialog #countries_list .result_entry {
    padding: 12px 16px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    color: #1a1a2e !important;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 14px !important;
    background: transparent !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
    display: block !important;
}

#countries_list .result_entry:last-child,
.dialog_wrapper #countries_list .result_entry:last-child,
#cf_dialog #countries_list .result_entry:last-child {
    border-bottom: none !important;
}

#countries_list .result_entry:not(.error):hover,
.dialog_wrapper #countries_list .result_entry:not(.error):hover,
#cf_dialog #countries_list .result_entry:not(.error):hover {
    background: rgba(139, 92, 246, 0.1) !important;
    color: #1a1a2e !important;
}

#countries_list .result_entry.error {
    color: #6b7280 !important;
    cursor: default !important;
}

#countries_list .loader_wrapper,
.dialog_wrapper #countries_list .loader_wrapper,
#cf_dialog #countries_list .loader_wrapper {
    padding: 20px !important;
    min-height: auto !important;
    text-align: center !important;
}

#countries_list .loader_wrapper img,
.dialog_wrapper #countries_list .loader_wrapper img,
#cf_dialog #countries_list .loader_wrapper img {
    max-width: 30px !important;
}

/* ===== WHY JOIN CASINOFY ===== */
.why-join-wrapper {
    padding: 28px 24px !important;
}

.why-join-wrapper h2.heading-update,
h2.why-join-heading {
    margin-bottom: 8px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    font-size: 24px !important;
    color: #1a1a2e !important;
    letter-spacing: -0.5px !important;
}

.why-join-description {
    color: #6b7280 !important;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    margin: 0 0 24px 0 !important;
    line-height: 1.5;
    font-style: normal !important;
}

/* Benefit Cards */
.why-join-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    background: #f5f5f5 !important;
    border-radius: 14px;
    transition: background 0.2s ease;
}

.benefit-card:hover {
    background: #ebebeb !important;
}

.benefit-card-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    color: #8b5cf6;
}

.benefit-card-check svg {
    width: 14px;
    height: 14px;
}

.benefit-card-text {
    color: #1a1a2e !important;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.4;
}

/* Old simple list styles */
.why-join-benefits-list {
    margin: 0;
}

.benefit-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.benefit-list-item:last-child {
    border-bottom: none;
}

.benefit-check {
    width: 20px;
    height: 20px;
    min-width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b5cf6;
    margin-top: 1px;
}

.benefit-check svg {
    width: 16px;
    height: 16px;
}

.benefit-list-text {
    color: #4a4a5a !important;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.5;
}

/* Old benefit card styles */
.why-join-benefits {
    margin: 20px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    margin-bottom: 12px;
    background: #f5f5f5;
    border-radius: 12px;
    transition: background 0.2s ease;
}

.benefit-item:hover {
    background: #ebebeb;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    border-radius: 10px;
    color: #ffffff;
}

.benefit-icon svg {
    width: 20px;
    height: 20px;
}

.benefit-text h4 {
    color: #1a1a2e !important;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    margin: 0 0 4px 0 !important;
}

.benefit-text p {
    color: #6b7280 !important;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    margin: 0 !important;
    line-height: 1.4;
}

/* ===== ANIMATION ===== */
@keyframes dialogFadeIn {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(-8px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.ui-dialog {
    animation: dialogFadeIn 0.2s ease-out;
}

/* ===== INFO POPUPS ===== */
.info-popup,
.dialog_wrapper.info-popup {
    text-align: center;
    padding: 40px 32px !important;
}

.info-popup h2.heading-update,
.dialog_wrapper:has(.info-popup-icon) h2.heading-update {
    text-align: center !important;
    padding-right: 0 !important;
}

.info-popup-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    color: #8b5cf6;
}

.info-popup-icon.success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.info-popup-icon.email-3d {
    width: 120px;
    height: 100px;
    background: transparent;
    border-radius: 0;
    margin-bottom: 32px;
}

.info-popup-icon.email-3d svg {
    width: 120px;
    height: 90px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

.info-popup-icon.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.info-popup-icon svg {
    width: 40px;
    height: 40px;
}

.info-popup .heading-update,
.info-popup h2.heading-update {
    margin-bottom: 12px !important;
    text-align: center !important;
    font-style: italic !important;
    font-weight: 700 !important;
    font-size: 22px !important;
    line-height: 1.35 !important;
    padding-right: 0 !important;
}

.info-popup-text {
    color: #6b7280 !important;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    margin: 0 0 24px 0 !important;
    text-align: center !important;
}

.info-popup-text-small {
    color: #9ca3af !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    margin: 0 0 24px 0 !important;
}

.info-popup .load_more_wrapper {
    margin-top: 24px;
}

.info-popup .load_more_btn_cf button {
    min-width: 160px;
}

/* ===== GDPR COOKIE BANNER - Light Theme ===== */

/* Force light mode on all GDPR elements - Maximum specificity */
html body #moove_gdpr_cookie_info_bar,
html body #moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme,
html body #moove_gdpr_cookie_info_bar.moove-gdpr-light-scheme,
html body #moove_gdpr_cookie_info_bar[class*="moove-gdpr"],
html body div#moove_gdpr_cookie_info_bar,
html body div#moove_gdpr_cookie_info_bar[style],
#moove_gdpr_cookie_info_bar,
#moove_gdpr_cookie_info_bar[style] {
    background: #ffffff !important;
    background-color: #ffffff !important;
    border: none !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    font-family: 'Montserrat', sans-serif !important;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1) !important;
    /* Ensure banner stays at bottom and doesn't cover screen */
    position: fixed !important;
    bottom: env(safe-area-inset-bottom, 0) !important;
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: auto !important;
    max-height: 200px !important;
    min-height: auto !important;
    z-index: 2147483647 !important; /* Maximum z-index value */
    pointer-events: auto !important;
    -webkit-transform: translateZ(0) !important;
    transform: translateZ(0) !important;
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    user-select: none !important;
    /* Ensure banner is always visible */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure container and content are clickable */
#moove_gdpr_cookie_info_bar * {
    pointer-events: auto !important;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container * {
    pointer-events: auto !important;
    position: relative !important;
    z-index: 999999 !important;
}

/* Ensure the entire banner is clickable and positioned above footer */
#moove_gdpr_cookie_info_bar {
    pointer-events: auto !important;
    z-index: 2147483647 !important; /* Maximum z-index value */
    position: fixed !important;
    bottom: 0 !important;
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 200px !important;
    min-height: auto !important;
    -webkit-transform: translateZ(0) !important;
    transform: translateZ(0) !important;
    /* Ensure it's above Windows taskbar in Edge */
    position: fixed !important;
    bottom: env(safe-area-inset-bottom, 0) !important;
    /* Force banner to be visible - override any plugin hiding */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Microsoft Edge specific fixes */
@supports (-ms-ime-align: auto) {
    #moove_gdpr_cookie_info_bar {
        z-index: 2147483647 !important;
        position: fixed !important;
        bottom: 0 !important;
    }
}

/* Edge Chromium specific */
@supports (-webkit-appearance: none) and (not (overflow: -webkit-marquee)) {
    #moove_gdpr_cookie_info_bar {
        z-index: 2147483647 !important;
        position: fixed !important;
        bottom: 0 !important;
    }
}

/* Ensure banner container doesn't expand to full screen */
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container {
    height: auto !important;
    max-height: 200px !important;
    min-height: auto !important;
    overflow: visible !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    padding: 15px 20px !important;
}

/* Override top position class - force to bottom */
#moove_gdpr_cookie_info_bar.gdpr_infobar_postion_top,
#moove_gdpr_cookie_info_bar[class*="top"],
#moove_gdpr_cookie_info_bar[style*="top"] {
    top: auto !important;
    bottom: 0 !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-bottom: none !important;
    height: auto !important;
    max-height: 200px !important;
    min-height: auto !important;
}

/* Force banner to bottom and limit height - highest specificity */
html body #moove_gdpr_cookie_info_bar[style*="top"],
html body #moove_gdpr_cookie_info_bar.gdpr_infobar_postion_top {
    top: auto !important;
    bottom: 0 !important;
    height: auto !important;
    max-height: 200px !important;
}

/* Ensure footer stays below banner */
footer,
.footer,
#footer {
    position: relative !important;
    z-index: 1 !important;
}

/* Fix scrolling when GDPR banner is visible - iOS Safari fix */
/* Apply to ALL devices, but especially important for iOS */
body.moove_gdpr_overflow,
html body.moove_gdpr_overflow {
    overflow-y: scroll !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    position: relative !important;
    height: auto !important;
    max-height: none !important;
    touch-action: pan-y !important;
}

html.moove_gdpr_overflow,
html body.moove_gdpr_overflow {
    overflow-y: scroll !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    height: auto !important;
    max-height: none !important;
}

/* Ensure page content can scroll */
body.moove_gdpr_overflow #page,
body.moove_gdpr_overflow #main-content,
body.moove_gdpr_overflow main,
body.moove_gdpr_overflow .main-layout-wrapper {
    pointer-events: auto !important;
    position: relative !important;
    overflow: visible !important;
    touch-action: pan-y !important;
    -webkit-overflow-scrolling: touch !important;
}

/* iOS Safari specific - more aggressive fixes */
@supports (-webkit-touch-callout: none) {
    body.moove_gdpr_overflow,
    html body.moove_gdpr_overflow {
        overflow-y: scroll !important;
        -webkit-overflow-scrolling: touch !important;
        touch-action: pan-y !important;
        -webkit-transform: translateZ(0) !important;
        transform: translateZ(0) !important;
    }
    
    /* Ensure banner doesn't block scrolling - keep it compact */
    body.moove_gdpr_overflow #moove_gdpr_cookie_info_bar {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: 400px !important;
        min-height: auto !important;
        z-index: 999999 !important;
        touch-action: manipulation !important;
        pointer-events: auto !important;
    }
    
    /* Ensure banner container stays compact */
    body.moove_gdpr_overflow #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container {
        height: auto !important;
        max-height: 400px !important;
        min-height: auto !important;
        overflow: visible !important;
    }
    
    /* Ensure footer stays below banner on iOS */
    body.moove_gdpr_overflow footer,
    body.moove_gdpr_overflow .footer,
    body.moove_gdpr_overflow #footer {
        position: relative !important;
        z-index: 1 !important;
    }
}

/* For non-iOS (Android Chrome, etc.) - don't override plugin's overflow handling */
body.moove_gdpr_overflow:not(.ios-device) {
    /* Let plugin handle overflow - don't interfere */
}

/* Ensure page content can scroll even with banner */
body.moove_gdpr_overflow #page,
body.moove_gdpr_overflow #main-content,
body.moove_gdpr_overflow main {
    pointer-events: auto !important;
    position: relative !important;
    overflow: visible !important;
}

/* iOS Safari specific - allow touch scrolling - ONLY for iOS */
@supports (-webkit-touch-callout: none) {
    /* Only apply if it's actually iOS Safari */
    @media screen and (-webkit-min-device-pixel-ratio: 0) {
        body.moove_gdpr_overflow {
            overflow-y: scroll !important;
            -webkit-overflow-scrolling: touch !important;
        }
        
        /* Only fix position on iOS - don't interfere with Android */
        body.moove_gdpr_overflow #moove_gdpr_cookie_info_bar {
            position: fixed !important;
            bottom: 0 !important;
            left: 0 !important;
            right: 0 !important;
            width: 100% !important;
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
        }
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    #moove_gdpr_cookie_info_bar a.mgbutton,
    #moove_gdpr_cookie_info_bar button.mgbutton {
        -webkit-transform: translateZ(0) !important;
        transform: translateZ(0) !important;
        will-change: transform !important;
        -webkit-backface-visibility: hidden !important;
        backface-visibility: hidden !important;
    }
}

/* Info bar container - Force light background */
html body #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container,
html body #moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container,
.moove-gdpr-info-bar-container {
    background: #ffffff !important;
    background-color: #ffffff !important;
}

body #moove_gdpr_cookie_info_bar.gdpr_infobar_postion_bottom_left:not(.gdpr-full-screen-infobar),
body #moove_gdpr_cookie_info_bar.gdpr_infobar_postion_bottom_right:not(.gdpr-full-screen-infobar),
body #moove_gdpr_cookie_info_bar.gdpr_infobar_postion_bottom_left.moove-gdpr-dark-scheme:not(.gdpr-full-screen-infobar),
body #moove_gdpr_cookie_info_bar.gdpr_infobar_postion_bottom_right.moove-gdpr-dark-scheme:not(.gdpr-full-screen-infobar),
html body #moove_gdpr_cookie_info_bar.gdpr_infobar_postion_bottom_left:not(.gdpr-full-screen-infobar),
html body #moove_gdpr_cookie_info_bar.gdpr_infobar_postion_bottom_right:not(.gdpr-full-screen-infobar) {
    border-radius: 16px !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    background: #ffffff !important;
    background-color: #ffffff !important;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p a,
#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p,
#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p a {
    color: #4a4a5a !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p a {
    color: #8b5cf6 !important;
    text-decoration: underline !important;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content p a:hover {
    color: #7c3aed !important;
}

/* Cookie banner buttons - iOS fixes */
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton,
#moove_gdpr_cookie_info_bar .moove-gdpr-button-holder a.mgbutton,
#moove_gdpr_cookie_info_bar .moove-gdpr-button-holder button.mgbutton,
#moove_gdpr_cookie_info_bar a.mgbutton,
#moove_gdpr_cookie_info_bar button.mgbutton {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;
    border-radius: 10px !important;
    padding: 12px 24px !important;
    font-size: 14px !important;
    /* Ensure buttons are clickable */
    pointer-events: auto !important;
    cursor: pointer !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: rgba(139, 92, 246, 0.3) !important;
    z-index: 999999 !important;
    position: relative !important;
    /* iOS specific fixes */
    position: relative !important;
    z-index: 1000000 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    -webkit-tap-highlight-color: rgba(139, 92, 246, 0.3) !important;
    touch-action: manipulation !important;
    transform: translateZ(0) !important;
    -webkit-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
    min-width: 44px !important;
    min-height: 44px !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    border: none !important;
    position: relative !important;
    z-index: 1000000 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    -webkit-tap-highlight-color: rgba(139, 92, 246, 0.3) !important;
    touch-action: manipulation !important;
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    user-select: none !important;
    display: inline-block !important;
    min-height: 44px !important;
    min-width: 44px !important;
}

/* Mobile-specific button fixes */
@media (max-width: 768px) {
    #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton,
    #moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton,
    #moove_gdpr_cookie_info_bar .moove-gdpr-button-holder a.mgbutton,
    #moove_gdpr_cookie_info_bar .moove-gdpr-button-holder button.mgbutton {
        padding: 14px 24px !important;
        font-size: 15px !important;
        min-height: 48px !important;
        -webkit-tap-highlight-color: rgba(139, 92, 246, 0.5) !important;
    }
}

/* Accept button */
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.moove-gdpr-infobar-allow-all,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-allow-all {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3) !important;
    /* Ensure accept button is always clickable */
    pointer-events: auto !important;
    cursor: pointer !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: rgba(139, 92, 246, 0.5) !important;
    z-index: 999999 !important;
    position: relative !important;
    user-select: none !important;
    -webkit-user-select: none !important;
}

/* Ensure accept button text stays white in all states */
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.moove-gdpr-infobar-allow-all,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-allow-all,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.moove-gdpr-infobar-allow-all:hover,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-allow-all:hover,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.moove-gdpr-infobar-allow-all:active,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-allow-all:active,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.moove-gdpr-infobar-allow-all:focus,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-allow-all:focus {
    color: #ffffff !important;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.moove-gdpr-infobar-allow-all:hover,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-allow-all:hover {
    background: linear-gradient(135deg, #9d7af8 0%, #8b5cf6 100%) !important;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4) !important;
    transform: translateY(-1px) !important;
    color: #ffffff !important; /* Ensure text stays white on hover */
}

/* Settings/Reject buttons */
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.moove-gdpr-infobar-settings-btn,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-settings-btn,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.moove-gdpr-infobar-reject-btn,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-reject-btn,
#moove_gdpr_cookie_info_bar:not(.gdpr-full-screen-infobar) .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.moove-gdpr-infobar-settings-btn,
#moove_gdpr_cookie_info_bar:not(.gdpr-full-screen-infobar) .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-settings-btn,
#moove_gdpr_cookie_info_bar:not(.gdpr-full-screen-infobar).moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.moove-gdpr-infobar-settings-btn,
#moove_gdpr_cookie_info_bar:not(.gdpr-full-screen-infobar).moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-settings-btn {
    background: #f5f5f5 !important;
    color: #4a4a5a !important;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1) !important;
    opacity: 1 !important;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.moove-gdpr-infobar-settings-btn:hover,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-settings-btn:hover,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.moove-gdpr-infobar-reject-btn:hover,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-reject-btn:hover,
#moove_gdpr_cookie_info_bar:not(.gdpr-full-screen-infobar) .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.moove-gdpr-infobar-settings-btn:hover,
#moove_gdpr_cookie_info_bar:not(.gdpr-full-screen-infobar) .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-settings-btn:hover,
#moove_gdpr_cookie_info_bar:not(.gdpr-full-screen-infobar).moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.moove-gdpr-infobar-settings-btn:hover,
#moove_gdpr_cookie_info_bar:not(.gdpr-full-screen-infobar).moove-gdpr-dark-scheme .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-settings-btn:hover {
    background: #ebebeb !important;
    color: #1a1a2e !important;
    box-shadow: inset 0 0 0 1px #8b5cf6 !important;
}

/* Close button */
#moove_gdpr_cookie_info_bar .moove-gdpr-infobar-close-btn,
#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-button-holder .moove-gdpr-infobar-close-btn {
    color: #9ca3af !important;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1) !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 999999 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    -webkit-tap-highlight-color: rgba(139, 92, 246, 0.3) !important;
    touch-action: manipulation !important;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-infobar-close-btn:hover,
#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme .moove-gdpr-button-holder .moove-gdpr-infobar-close-btn:hover {
    background: #f5f5f5 !important;
    color: #1a1a2e !important;
}

/* Cookie settings modal */
#moove_gdpr_cookie_modal .moove-gdpr-modal-content {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 16px !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content {
    background: #f8f8f8 !important;
    border-top-left-radius: 16px !important;
    border-bottom-left-radius: 16px !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-right-content {
    background: #ffffff !important;
    border-top-right-radius: 16px !important;
    border-bottom-right-radius: 16px !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-title h2,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main h3.tab-title,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main span.tab-title {
    color: #1a1a2e !important;
    font-family: 'Montserrat', sans-serif !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content p,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content li,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content a {
    color: #4a4a5a !important;
    font-family: 'Montserrat', sans-serif !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-tab-main .moove-gdpr-tab-main-content a {
    color: #8b5cf6 !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: #4a4a5a !important;
    font-family: 'Montserrat', sans-serif !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li.menu-item-selected a,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li.menu-item-selected button,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a:hover,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button:hover {
    background: rgba(139, 92, 246, 0.1) !important;
    border-color: #8b5cf6 !important;
    color: #1a1a2e !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a i,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li a span.gdpr-icon,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button i,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content #moove-gdpr-menu li button span.gdpr-icon {
    color: #8b5cf6 !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content {
    background: #f8f8f8 !important;
    border-radius: 0 0 16px 16px !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content:before {
    background: rgba(0, 0, 0, 0.08) !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;
    border-radius: 10px !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton.moove-gdpr-modal-allow-all,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton.moove-gdpr-modal-allow-all {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3) !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton.moove-gdpr-modal-allow-all:hover,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton.moove-gdpr-modal-allow-all:hover {
    background: linear-gradient(135deg, #9d7af8 0%, #8b5cf6 100%) !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton.moove-gdpr-modal-save-settings,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton.moove-gdpr-modal-save-settings {
    background: #ffffff !important;
    color: #4a4a5a !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder a.mgbutton.moove-gdpr-modal-save-settings:hover,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-button-holder button.mgbutton.moove-gdpr-modal-save-settings:hover {
    background: #f5f5f5 !important;
    color: #1a1a2e !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close i,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close span.gdpr-icon {
    background: #f5f5f5 !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: #6b7280 !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close:hover i,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-close:hover span.gdpr-icon {
    background: #ebebeb !important;
    color: #1a1a2e !important;
}

/* Cookie toggle switches */
#moove_gdpr_cookie_modal .cookie-switch input:checked+.cookie-slider,
#moove_gdpr_cookie_modal .switch input:checked+.slider {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%) !important;
}

#moove_gdpr_cookie_modal .cookie-switch .cookie-slider,
#moove_gdpr_cookie_modal .switch .slider {
    background: #e0e0e0 !important;
}

#moove_gdpr_cookie_modal .cookie-switch .cookie-slider:after,
#moove_gdpr_cookie_modal .switch .slider:after,
#moove_gdpr_cookie_modal .cookie-switch .gdpr-sr-label,
#moove_gdpr_cookie_modal .switch .gdpr-sr-label {
    color: #6b7280 !important;
}

#moove_gdpr_cookie_modal .cookie-switch input:checked+.cookie-slider:after,
#moove_gdpr_cookie_modal .switch input:checked+.slider:after {
    color: #8b5cf6 !important;
}

/* Floating settings button */
#moove_gdpr_save_popup_settings_button {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

#moove_gdpr_save_popup_settings_button:hover {
    background: #f5f5f5 !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Branding link */
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-footer-content .moove-gdpr-branding,
#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content .moove-gdpr-branding-cnt a {
    color: #9ca3af !important;
}

/* Force GDPR banner to be visible - override any plugin hiding or display:none */
#moove_gdpr_cookie_info_bar[style*="display: none"],
#moove_gdpr_cookie_info_bar[style*="display:none"],
#moove_gdpr_cookie_info_bar.hidden,
#moove_gdpr_cookie_info_bar[class*="hidden"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure banner is always visible when it exists in DOM (unless user has accepted) */
body:not(.moove_gdpr_cookie_consent_accepted) #moove_gdpr_cookie_info_bar,
body:not(.moove_gdpr_cookie_consent_declined) #moove_gdpr_cookie_info_bar {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* GDPR Accept button - Force clickability */
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.moove-gdpr-infobar-allow-all,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-allow-all,
#moove_gdpr_cookie_info_bar .moove-gdpr-button-holder a.mgbutton.moove-gdpr-infobar-allow-all,
#moove_gdpr_cookie_info_bar .moove-gdpr-button-holder button.mgbutton.moove-gdpr-infobar-allow-all {
    color: #ffffff !important; /* Ensure text is white */
    pointer-events: auto !important;
    cursor: pointer !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: rgba(139, 92, 246, 0.5) !important;
    z-index: 999999 !important;
    position: relative !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    /* Remove any overlay that might block clicks */
    position: relative !important;
    z-index: 999999 !important;
}

/* Ensure accept button container doesn't block clicks */
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content,
#moove_gdpr_cookie_info_bar .moove-gdpr-button-holder {
    pointer-events: auto !important;
    position: relative !important;
    z-index: 999998 !important;
}

#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.moove-gdpr-infobar-allow-all:hover,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-allow-all:hover,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.moove-gdpr-infobar-allow-all:active,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-allow-all:active,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content a.mgbutton.moove-gdpr-infobar-allow-all:focus,
#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content button.mgbutton.moove-gdpr-infobar-allow-all:focus,
#moove_gdpr_cookie_info_bar .moove-gdpr-button-holder a.mgbutton.moove-gdpr-infobar-allow-all:hover,
#moove_gdpr_cookie_info_bar .moove-gdpr-button-holder button.mgbutton.moove-gdpr-infobar-allow-all:hover,
#moove_gdpr_cookie_info_bar .moove-gdpr-button-holder a.mgbutton.moove-gdpr-infobar-allow-all:active,
#moove_gdpr_cookie_info_bar .moove-gdpr-button-holder button.mgbutton.moove-gdpr-infobar-allow-all:active,
#moove_gdpr_cookie_info_bar .moove-gdpr-button-holder a.mgbutton.moove-gdpr-infobar-allow-all:focus,
#moove_gdpr_cookie_info_bar .moove-gdpr-button-holder button.mgbutton.moove-gdpr-infobar-allow-all:focus {
    color: #ffffff !important; /* Ensure text is white on hover/active/focus */
    pointer-events: auto !important;
    cursor: pointer !important;
}
