.pricebyweight{
    color: rgb(var(--txtDark));
    font-size: 13px;
    opacity: .8;
    font-style: italic;
    font-weight: 300;
}
.pricebyweight.pbw-simple{
    bottom: 6px;
    position: relative;
}
.pricebyweight.pbw-attr{
    margin-left: .75rem;;
}

#sugg_combinations .sugg_price {
    display: flex;
}

.best-price-label {
    display: block;
    padding: 0px 7px;
    background: #e82e54;
    color: #fff;
    font-size: 11px;
    height: 17px;
    position: absolute;
    line-height: 17px;
    border-radius: 12px;
    text-wrap: unset;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: .065rem;

    /* Animation */
    animation: vibrate 0.15s linear 1s 3; /* durée 0.15s, delay 1s, répétée 3 fois */
}

@keyframes vibrate {
    0%   { transform: translateX(-50%) rotate(0deg); }
    25%  { transform: translateX(-50%) translate(-2px, 0) rotate(-3deg); }
    50%  { transform: translateX(-50%) translate(2px, 0) rotate(3deg); }
    75%  { transform: translateX(-50%) translate(-2px, 0) rotate(-3deg); }
    100% { transform: translateX(-50%) rotate(0deg); }
}

/* Mobile */    
.mobile #sugg_combinations .sugg_price {
    flex-direction: column;
}
.mobile .pricebyweight.pbw-attr {
    margin-left: 0rem;
}

.mobile #add_to_cart_mobile .price .sugg_price {
    display: flex;
    flex-direction: column;
}
