/* CONTENEUR GLOBAL */
.choose_pictos_boxes_config {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* CHAQUE BLOC */
.div_puce_pictos_boxes {
    width: 130px;
    height: 140px;
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    cursor: pointer;
}

/* IMAGE (SVG / ICON) */
.div_puce_pictos_boxes svg,
.div_puce_pictos_boxes img {
    width: 70px !important;
    height: 70px !important;
    margin-bottom: 8px;
}

/* TEXTE */
.picto_box_text {
    font-size: 13px;
    text-align: center;
    color: #333;
}

/* HOVER */
.div_puce_pictos_boxes:hover {
    transform: scale(1.05);
    border: 2px solid #ff6600;
}

/* SÉLECTION */
.div_puce_pictos_boxes.selected {
    border: 2px solid #ff6600 !important;
}

/* BADGE BESTSELLER */
.div_puce_pictos_boxes.selected::before {
    content: "BESTSELLER";
    position: absolute;
    top: -10px;
    left: 10px;
    background: #16a34a;
    color: #fff;
    font-size: 10px;
    padding: 3px 6px;
    border-radius: 4px;
}.div_puce_pictos_boxes {
    position: relative;
}.div_puce_pictos_boxes {
    position: relative;
}.div_puce_pictos_boxes {
    position: relative;
}