/**
 * Energy Concept — fiche produit (chargé uniquement si is_product()).
 * Onglet Caractéristiques techniques + onglet Documents (Lot 4).
 */

/* Onglet Documents */
.ec-docs-title {
    font-size: 18px;
    margin-bottom: 16px;
}

.ec-docs-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.ec-doc a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid #e3e3e3;
    border-radius: 6px;
    color: inherit;
    text-decoration: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.ec-doc a:hover {
    border-color: var(--ec-primary);
    box-shadow: 0 2px 8px rgba(231, 78, 24, 0.12);
}

/* Pastille colorée par type de document */
.ec-doc-icon {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 5px;
    background: var(--ec-gradient);
    position: relative;
}

.ec-doc-icon::after {
    content: "PDF";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 8px;
    font-weight: 700;
}

.ec-doc--certificat .ec-doc-icon { background: var(--ec-doc-certificat); }
.ec-doc--notice .ec-doc-icon { background: var(--ec-doc-notice); }

.ec-doc-label {
    flex: 1 1 auto;
    font-weight: 600;
}

.ec-doc-meta {
    flex: 0 0 auto;
    font-size: 12px;
    color: #767676;
}

/* Tableau de caractéristiques techniques : un peu d'air */
.woocommerce-product-attributes th {
    width: 35%;
}
