/**
 * Styles pour les icônes de la page produit
 */

/* Icônes pour les informations produit */
.info-column .info-item .icon {
    font-size: 18px;
    color: #f0141e;
    /* Rouge Vigot */
    width: 30px;
    text-align: center;
    vertical-align: middle;
}

.info-column .info-item {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.info-column .info-item .text {
    font-size: 13px;
    line-height: 1.4;
}

/* Définition des icônes si Font Awesome n'est pas disponible */
@font-face {
    font-family: 'product-icons';
    src: url('../fonts/product-icons.woff2') format('woff2'),
        url('../fonts/product-icons.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.fa {
    font-family: 'FontAwesome', 'product-icons';
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.fa-truck:before {
    content: "\f0d1";
}

.fa-globe:before {
    content: "\f0ac";
}

.fa-lock:before {
    content: "\f023";
}

.fa-file-pdf:before {
    content: "\f1c1";
}

.fa-heart:before {
    content: "\f004";
}

/* Styles pour les liens de téléchargement et liste */
.product-download-links {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
}

.product-download-links a {
    margin-right: 20px;
    color: #f0141e;
    /* Rouge Vigot */
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.product-download-links a i {
    margin-right: 5px;
}

/* Styles pour la ligne de séparation */
.product-info-separator {
    height: 1px;
    background-color: #d1d1d1;
    margin: 15px 0;
    width: 100%;
}