
/* Overlay pro XY banner popup */
.wt-xy-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Vlastní popup */
.wt-xy-popup {
    background: #fff;
    max-width: 480px;
    width: 90%;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* Zavírací křížek */
.wt-xy-close-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
}

/* Tlačítko Přidat produkt do košíku */
.wt-xy-add-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background: #478f00;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    margin: 16px auto 0;
    display: block;
}

.wt-xy-amount-wrapper {
    margin: 16px 0 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.wt-xy-amount-label {
    font-weight: 600;
}

.wt-xy-amount-input {
    width: 80px;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
}