.vibe-upsells {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.vibe-upsells h4 {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.vibe-upsell-items {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;
    scrollbar-width: thin;
}

.vibe-upsell-items::-webkit-scrollbar {
    height: 6px;
}

.vibe-upsell-items::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}

.vibe-upsell-item {
    min-width: 140px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    background: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.vibe-upsell-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.vibe-upsell-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin: 0 auto 10px;
    border-radius: 4px;
}

.vibe-upsell-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #444;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vibe-upsell-price {
    color: #008000;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 10px;
}

.vibe-add-upsell {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    padding: 0;
    font-size: 16px;
    border-radius: 50%;
    background: var(--vibe-primary, #4F46E5);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vibe-add-upsell:hover {
    background: var(--vibe-primary-dark, #4338CA);
    transform: scale(1.1);
}

.vibe-add-upsell.loading {
    opacity: 0.7;
    cursor: wait;
}