/**
 * Attribute Description Module - Styles
 * Compatible avec PrestaShop 8.2.3 et le thème Classic
 */

.attribute-descriptions {
    margin-top: 15px;
    margin-bottom: 20px;
}

.attribute-description-box {
    border-left: 4px solid #3c4d52;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    margin-top: 10px;
    animation: fadeInUp 0.3s ease-out;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.attribute-description-box strong {
    color: #3c4d52;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 500;
}

.attribute-description-box p {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.attribute-description-box .material-icons {
    font-size: 18px;
    color: #3c4d52;
    vertical-align: middle;
}

/* Animation d'apparition */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .attribute-description-box {
        padding: 12px;
    }
    
    .attribute-description-box strong {
        font-size: 14px;
    }
    
    .attribute-description-box p {
        font-size: 13px;
    }
}

/* Compatibilité avec le thème Classic */
#product .attribute-descriptions {
    margin-top: 20px;
    margin-bottom: 20px;
}

#product .attribute-description-box {
    border-left-color: #3c4d52;
}

/* Fix pour les sélecteurs d'attributs */
#product .attribute-select {
    margin-bottom: 10px;
}

/* Positionnement spécifique pour votre thème personnalisé */
.product-variants + .attribute-descriptions {
    margin-top: 20px;
    margin-bottom: 25px;
    padding-left: 0;
}

/* Style pour les descriptions dans les variantes */
.product-variants-item + .attribute-descriptions {
    margin-top: 15px;
    margin-left: 0;
    padding-left: 0;
}

/* Intégration avec la structure de votre thème */
#product .attribute-descriptions {
    margin-top: 25px;
    margin-bottom: 30px;
}

/* Compatibilité avec le template standard PrestaShop */
.js-product-variants + .attribute-descriptions {
    margin-top: 20px;
    margin-bottom: 25px;
}

/* Style pour les descriptions après les attributs radio */
.attribute-radio + .attribute-descriptions {
    margin-top: 15px;
}

/* Style pour les descriptions après les attributs couleur */
.custom-control + .attribute-descriptions {
    margin-top: 15px;
}

/* Style pour les descriptions d'attributs */
.attribute-description-box {
    border-left: 4px solid #3c4d52;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    margin-top: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.attribute-description-box[style*="display: block"] {
    opacity: 1;
    transform: translateY(0);
}

/* Animation d'apparition */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.attribute-description-box {
    animation: fadeInUp 0.3s ease-out;
}

/* Responsive pour votre thème */
@media (max-width: 768px) {
    .attribute-description-box {
        padding: 12px;
    }
    
    #product .attribute-descriptions {
        margin-top: 15px;
        margin-bottom: 20px;
    }
}