/* Utility: skjul via klasse (ikke inline styles) */
.wdp-hidden { 
    display: none; 
}

/* Launcher-knap nederst højre */
#wdp-launcher{
    position:fixed; 
    right: 16px; 
    bottom: 16px; 
    z-index: 9998;
    padding: 20px 24px; 
    border: 0; 
    border-radius: 9999px;
    background:#111; 
    color: #c0a847; 
    font-weight: bold;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
    cursor: pointer;
    width: 300px;
    font-size: 16px;
    background-image: url("https://www.sengeexperten.dk/wp-content/uploads/stjerner.jpg");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Popup-boksen */
#wdp-modal{
    position: fixed;
    right: 16px; 
    bottom: 16px; 
    z-index: 9999;
    width: 800px;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,.25); 
    overflow: hidden;
    background-color: #000;
    padding: 20px;
    background-image: url("https://www.sengeexperten.dk/wp-content/uploads/Beige-Clean-Aesthetic-Pop-Up-Notification-Note-Today-Instagram-Post-1.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    color: #fff;
}   

#wdp-modal::after {
    content: "";
    background-image: url("https://www.sengeexperten.dk/wp-content/uploads/stjerner.jpg");
    height: 350px;
    position: absolute;
    width: 800px;
    background-repeat: no-repeat;
    bottom: 0;
    left: 0;
    z-index: -1;
}

#wdp-modal .wdp-head{
    display: flex; 
    flex-direction: column;
    align-items: center;
    padding: 12px 14px; 
    color: #fff;
    position: relative;
    padding-top: 180px;
}

#wdp-modal .wdp-title{ 
    font-weight: bold; 
    font-size: 42px; 
    margin: 0; 
    font-style: italic;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 4px;

}

#wdp-modal .wdp-sub-title{  
    font-size: 26px; 
    margin: 0; 
    text-align: center;
    font-weight: 300;
    line-height: 36px;
}

#wdp-modal .wdp-close{ 
    background: none; 
    border: 0; 
    font-size: 22px; 
    cursor: pointer; 
    position: absolute;
    right: -10px;
    top: -10px;
    color: #fff;
    font-weight: bold;
}

#wdp-modal .wdp-body{ 
    padding: 16px; 
    display: flex;
    gap: 10px;
}

#wdp-modal .wdp-body img {
    width: 200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
}

#wdp-modal .wdp-body .wdp-text-wrapper {
    display: flex;
    flex-direction: column;
}

#wdp-modal .wdp-body div {
    flex: 1;
}
#wdp-modal .wdp-body p {
    font-size: 16px;
    margin-top: 10px;
    font-weight: bold;
}

#wdp-modal .wdp-body .wdp-small-title {
    font-size: 14px;
}

#wdp-modal .wdp-footer {
    margin-top: 20px;
}

#wdp-modal .wdp-footer strong {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 3px;
}

#wdp-modal .wdp-footer .wdp-company {
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
    letter-spacing: 3px;
    font-weight: 300;
}

#wdp-modal .wdp-footer .wdp-copyright {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

#wdp-modal .wd-contact-form .wd-contact-form-inner {
    background-color: transparent;
    padding: 10px 0 0 0;
}

#wdp-modal .wd-contact-form .wd-contact-form-inner .wd-submit-btn {
    background-color: #c0a847;
}

#wdp-modal .wd-contact-form .wd-contact-form-inner .wd-submit-btn:hover {
    opacity: 0.9;
}

@media (min-width:768px){
    #wdp-modal{ 
        right:24px; 
        bottom:24px 
    }
    #wdp-launcher{ 
        right:24px; 
        bottom:24px 
    }
}