.wss-container {
    position: relative;
    display: inline-block;
}

.wss-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: none;
}

.wss-popup {
    background-color: #fff;
    width: 300px;
    padding: 20px;
    border-radius: 5px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    display: none;
}

.wss-popup h2 {
    margin-top: 0;
}

.wss-popup p {
    margin-bottom: 20px;
}

.wss-close {
    position: absolute;
    top: 0;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
}

.wss-add-to-cart {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #4caf50;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.wss-add-to-cart:hover {
    background-color: #45a049;
}
.wss-store-select {
    width: 100%;
}
.quantity {
    display: none!important;
}

/*.wss-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.wss-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.wss-popup {
    position: relative;
    background-color: #fff;
    padding: 20px;
    width: 80%;
    max-width: 400px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.wss-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.wss-close {
    cursor: pointer;
}

.wss-body {
    display: flex;
    flex-direction: column;
}

.wss-store-select {
    margin-bottom: 10px;
}

.wss-add-to-cart {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}
