/* Modal shell (classic) */
#wdo-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    display: none;
    z-index: 9998
}

#wdo-modal {
    position: fixed;
    top: 5vh;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 95vw);
    height: min(80vh, 95vh);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .25);
    display: none;
    z-index: 9999;
    overflow: hidden
}

#wdo-modal header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid #eee;
    font-weight: 600
}

#wdo-modal .wdo-close {
    border: 0;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    cursor: pointer
}

#wdo-modal iframe {
    width: 100%;
    height: calc(100% - 46px);
    border: 0
}

/* Inline button wrapper under selected shipping option */
.wdo-inline-wrap {
    margin-top: 10px
}

.wdo-btn {
    appearance: none;
    border: 0;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 14px;
    background: #111;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15)
}

.wdo-btn:hover {
    opacity: .9
}

.wdo-pill {
    margin-top: 8px;
    padding: 8px 10px;
    border: 1px solid #28a745;
    background: #f6fff8;
    border-radius: 8px;
    font-size: 13px
}
