/**
 * Module Échantillon - Styles front-office
 * Version nettoyée pour PrestaShop 8.2.3
 * Ajout direct au panier (sans accordéon)
 */

/* ========================================
   BOUTON ÉCHANTILLON
   ======================================== */

#echantillon-btn-container {
    margin: 1.5rem 0;
}

#echantillon-btn-container .btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fff;
}

#echantillon-btn-container .btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

#echantillon-btn-container .btn:disabled {
    opacity: 0.7;
    cursor: wait;
}

/* Icône SVG */
.sample-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

#echantillon-btn-container .btn:hover .sample-icon {
    transform: translateX(-3px);
}

/* Texte avec animation du trait */
.samplebox {
    position: relative;
    display: inline-block;
}

span.samplebox {
    border-bottom: 1px solid #dedede;
    padding-bottom: 10px;
}

/* Trait animé au survol */
.samplebox::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#echantillon-btn-container .btn:hover .samplebox::after {
    width: 100%;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 767.98px) {
    #echantillon-btn-container .btn {
        font-size: 0.9rem;
    }
    
    .sample-icon {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   ACCESSIBILITÉ
   ======================================== */

/* Réduction des mouvements pour les utilisateurs sensibles */
@media (prefers-reduced-motion: reduce) {
    #echantillon-btn-container .btn,
    .sample-icon,
    .samplebox::after {
        transition: none;
    }
}
