/*
 * Encart « Guide des tailles » : boîte à bordure pointillée, libellé à gauche,
 * bouton vert TÉLÉCHARGER à droite. Reprend le vert InkSide. Responsive.
 */
.toptex-techfile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    border: 2px dashed #cfd4d9;
    border-radius: 10px;
    padding: 16px 20px;
    margin: 20px 0;
}

.toptex-techfile__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
    color: #2b2f36;
    line-height: 1.3;
}

.toptex-techfile__tee {
    flex-shrink: 0;
    stroke: #56b963;
    color: #56b963;
}

/* Bouton identique au CTA du configurateur (.inkside-add-to-cart-btn). */
.toptex-techfile__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 34px;
    background: linear-gradient(135deg, #61ce70, #56b963);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(97, 206, 112, .3);
    transition: background .15s ease, box-shadow .15s ease, transform .15s ease;
}

.toptex-techfile__btn:hover,
.toptex-techfile__btn:focus,
.toptex-techfile__btn:hover span,
.toptex-techfile__btn span {
    color: #fff;
}

.toptex-techfile__btn:hover {
    background: linear-gradient(135deg, #55c165, #4a9e55);
    box-shadow: 0 8px 24px rgba(97, 206, 112, .38);
}

.toptex-techfile__btn svg {
    flex-shrink: 0;
    stroke: #fff;
    color: #fff;
}

@media (max-width: 480px) {
    .toptex-techfile {
        gap: 12px;
    }
    .toptex-techfile__btn {
        flex: 1 1 100%;
        justify-content: center;
    }
}
