/**
 * JH Feature Icons — Front (v1.1)
 * Affichage dans l'onglet « Détails du produit » : tuiles icône + intitulé/valeur.
 * Charte Univers Restau : navy #002136 · orange #FAA633 · gris.
 */
.jh-feat{ margin:0 0 20px; }
.jh-feat-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:10px 18px;
}
.jh-feat-cell{
    display:flex; align-items:center; gap:12px;
    background:#F8F9FB; border:1px solid #eef0f3; border-radius:8px;
    padding:10px 14px; transition:border-color .15s, box-shadow .15s;
}
.jh-feat-cell:hover{ border-color:#DDE1E7; box-shadow:0 4px 14px rgba(0,33,54,.06); }
.jh-feat-ic{
    width:38px; height:38px; flex:0 0 auto; border-radius:8px;
    display:flex; align-items:center; justify-content:center; font-size:17px; line-height:1;
}
.jh-feat-ic .material-icons{ font-size:20px; }
.jh-feat-ic .jh-feat-svg{ display:inline-flex; }
.jh-feat-ic .jh-feat-svg svg{ width:20px; height:20px; }
.jh-feat-tx{ min-width:0; display:flex; flex-direction:column; }
.jh-feat-k{
    font-size:10.5px; font-weight:600; letter-spacing:.04em; text-transform:uppercase;
    color:#8A95A3; line-height:1.3;
}
.jh-feat-v{ font-size:13.5px; font-weight:700; color:#002136; line-height:1.25; word-break:break-word; }

@media (max-width:767.98px){
    .jh-feat-grid{ grid-template-columns:1fr; }
}
