.upsell-section {
    background: #fdf2f2; /* Светло-красный или желтоватый фон */
    border: 2px dashed #e67e22;
    padding: 1rem;
    border-radius: 8px;
    margin: 0 0.8rem;
}

.upsell-promo {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1rem;
}

.upsell-promo strong {
    color: #e67e22;
}

.upsell-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.upsell-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #fff;
    padding: 0.8rem;
    border-radius: 0.3rem;
}

.upsell-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 0.3rem;
}

.upsell-item-info {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: center;
    flex-grow: 1;
    font-size: 1rem;
}

.upsell-add-btn {
    font-weight: 500;
    background: #01d95a;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 0.3rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}

.upsell-add-btn:hover {
    background: #00cb53;
}