/**
 * Fiche produit – Lien de téléchargement PDF (discret, informatif)
 *
 * Styles pour le shortcode [product_sheet_download] :
 * lien "Télécharger la fiche produit" sur les pages single produit.
 *
 * @author AK Digital
 * @package xstore-child
 */

.product-sheet-download-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    color: #0B3854!important;
    cursor: pointer;
}

.product-sheet-download-btn__icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-sheet-download-btn__icon {
    width: 22px;
    height: 22px;
    color: currentColor;
}

.product-sheet-download-btn__label {
    position: relative;
    white-space: nowrap;
}

.product-sheet-download-btn__label::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background-color: currentColor;
    transition: width 0.25s ease;
}

.product-sheet-download-btn:hover .product-sheet-download-btn__label::after,
.product-sheet-download-btn:focus .product-sheet-download-btn__label::after {
    width: 100%;
}

.product-sheet-download-btn:focus {
    outline: 1px dotted currentColor;
    outline-offset: 2px;
}
