/* Wind Shop Floating Button */
#ws_btn {
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 9999;
    border: none;
    background: none;
    padding: 0;
    transition: transform 0.2s;
}

#ws_btn:hover {
    transform: scale(1.1);
}

#ws_btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

/* Modal */
#ws_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    background: #fff;
    flex-direction: column;
}

#ws_modal.active {
    display: flex;
}

#ws_iframe_container {
    flex: 1;
    width: 100%;
    height: 100%;
    border: none;
}

#ws_close_btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100001;
}

#ws_close_btn:hover {
    background: rgba(0, 0, 0, 0.8);
}