.cart-bump-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-bump-product {
    border: 1px solid #ddd;

    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bump-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #3199ca;
    padding: 10px;
}
.bump-top label{
    margin-bottom: 0;
    color: #fff;
}
.bump-price-wrapper {
    display: flex;
    gap: 5px;
    font-weight: bold;
    color: #fff;
}
.bump-checkbox-label {
    display: flex;
    align-items: flex-start; /* alignement en haut */
    gap: 5px;                /* espace entre checkbox et texte */
    font-size: 0.9em;
    cursor: pointer;
}



.bump-old-price {
    text-decoration: line-through;
    color: #fff;
    font-weight: normal;
}

.bump-bottom {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0 10px 5px 10px;
}

.bump-title {
    margin: 0;
    font-size: 1.2em;
    font-weight: bold;
}

.bump-img-desc {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}


.bump-desc {
    font-size: 0.9em;
    color: #555;

    display: -webkit-box;
    -webkit-line-clamp: 3; /* nombre de lignes à afficher */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bump-img-desc img {
    width: 80px;
    height: 80px;
    object-fit: cover; /* pour garder le ratio et recadrer si nécessaire */
    border-radius: 3px; /* optionnel, coins légèrement arrondis */
}