#upsell-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.upsell-modal-wrapper {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.upsell-modal__title {
    text-align: center;
    display: block;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: bold !important;
    color: #ff3b30;
    border-bottom: 2px solid #444;
    line-height: 2;
}

.upsell-modal-flex {
    display: flex; gap: 1.5rem; flex-direction: column;
}

@media screen and ( min-width: 768px ) {
    .upsell-modal-flex {
        flex-direction: row;
    }
}

.upsell-item {
    text-align: center;
}

.upsell-item__link {
    font-size: 1.2rem;
    color: #131315;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.upsell-item__redovna-cena {
    margin-bottom: 0;

}

.upsell-item__cena_sa_popustom {
    color: #ff3b30;
    font-weight: 600;
}

.upsell-item img {
    margin: 0 auto;
    margin-bottom: 0.5rem;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    padding: 0.5rem;
    /* background-color: red; */
}

.upsell-variation-wrapper {
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
}

.upsell-variation-select {
    /* padding: 0.5rem; */
    border: 3px solid #ff3b30;
    font-weight: 500;
    padding: 0.3rem;
}