.offer-row{
    display: flex;
    flex-direction: column;
    gap:30px;
}
.offer-grid label {
    width: 250px;
    padding: 0;
}
.select2.select2-container.select2-container--default {
    width: 30% !important;
}

.offer-inputs{
    width:30%;
}
.old-price{
    color:grey;
}
.youcover-offer.best-deal .main-product-image{
   position: relative;
   top: -10px; 
}
.youcover-offer.best-deal .pack-product-image{
   position: relative;
   top: 12px;
   left: -35px;
}

.main-product-image, .pack-product-image{
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #e8e8e8;
}
.youcover-offer{
    display: flex;
    gap:10px;
    align-items: center;
    border: 3px solid #e2e2e2;
    border-radius: 10px;
    padding: 8px;
    background-color: #f5f5f5;
    cursor: pointer;
    transition: all .3s ease;
    justify-content: space-between;
    margin-bottom:5px;
}
.youcover-offer input[type="radio"] {
    cursor: pointer;
}
.youcover-offer.active-offer {
    border: 3px solid var(--theme-form-selection-field-active-color);
    background: rgb(230 225 252 / 50%);
}
.youcover-offer.best-deal.active-offer {
    border: 3px solid transparent;
    background: linear-gradient(#f5f5f5, #f5f5f5) padding-box, linear-gradient(316deg, var(--e-global-color-blocksy_palette_2), #c7bbf5, #b9a7ff) border-box;
}

.offer-images  {
    display: flex;
    gap: 5px;
    align-items: center;
}
/* on cache le radio natif */
.custom-radio input {
    display: none;
}

/* cercle stylisé */
.custom-radio .radio-mark {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #e2e2e2; /* épaisseur de la bordure */
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
    background: white;
}

/* le petit point intérieur */
.custom-radio .radio-mark::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--theme-form-selection-field-active-color);
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: none;
}

/* afficher le point intérieur avec transition */
.custom-radio input:checked + .radio-mark::after {
    display:block;
    transform: translate(-50%, -50%) scale(1); /* scale 1 = visible */
}

.custom-radio input:checked + .radio-mark {
    border-color: var(--theme-form-selection-field-active-color); /* changement couleur bordure */
}
.youcover-offer.best-deal{
    margin-top:-13px;
    padding: 16px 8px;
    border: 3px solid transparent;
    background: linear-gradient(#f5f5f5, #f5f5f5) padding-box, linear-gradient(316deg, var(--e-a-color-danger), #dc5826, #ebac3a) border-box;
}
.best-deal-badge{
    font-family: 'Poppins';
    font-weight: 500;
    color: #fff;
    text-align: center;
    font-size: 11px;
    padding: 2px 0px;
    position: relative;
    display: block;
    background: linear-gradient(135deg, #e5a22d 0%, var(--e-a-color-danger) 55%);
    height: 23px;
    width: 95px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;

}