.upsell-container {
    margin: 5px 0 5px 0;
    position: relative;
    padding: 0 15px;
}
.upsell-scroll-wrap {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    scrollbar-width: none;
    width: 100%;
    justify-content: center;
}
.upsell-scroll-wrap::-webkit-scrollbar {
    display: none;
}
.upsell-scroll-wrap.overflow-active {
    justify-content: flex-start !important;
}
.upsell-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 10px;
    height: 26px;
    border-radius: 0;
    border: none;
    background: #666;
    color: #fff;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 12px;
    line-height: 1;
    box-shadow: none;
    transition: background 0.2s ease;
}
.upsell-btn.prev-btn {
    left: 2px;
}
.upsell-btn.next-btn {
    right: 2px;
}
.upsell-btn:hover:not(:disabled) {
    background: #333;
}
.upsell-btn:disabled {
    background: #aaa !important;
    cursor: not-allowed !important;
}
.upsell-item-link {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff;
}
.upsell-item-link img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
