/**
 * Styles pour l'élément Spécifications Produit
 * @package sway-child
 */

.adv-product-specs {
    max-width: 100%;
    margin: 0 auto;
}

.adv-product-specs-white-block {
    background: #ffffff;
    padding: 30px;
    text-align: center;
}

/* Image du produit */
.adv-product-specs-image {
    margin-bottom: 25px;
}

.adv-product-specs-image img {
    max-width: 100%;
    height: auto;
}

/* Titre du produit */
.adv-product-specs-title {
    color: #B5955D; /* Couleur bronze/dorée comme dans l'image */
    font-weight: 600;
    margin: 0 0 25px 0;
    text-align: center;
    font-family: 'Arial', sans-serif;
    line-height: 0.5;
}

/* Tableau des spécifications */
.adv-product-specs-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.adv-product-specs-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;

}
/* Colonne descriptif (gauche) */
.adv-product-specs-label {
    font-weight: 600;
    color: #B5955d;
    text-align: left;
    flex: 1;
    font-size: 14px;
}

/* Colonne détails (droite) */
.adv-product-specs-value {
    color: #666;
    text-align: right;
    flex: 1;
    font-size: 14px;
}

/* Responsive - Tablettes */
@media (max-width: 1024px) {
    .adv-product-specs-title {
        font-size: 24px;
    }
    
    .adv-product-specs-white-block {
        padding: 25px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .adv-product-specs-white-block {
        padding: 20px;
    }
    
    .adv-product-specs-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .adv-product-specs-table {
        max-width: 100%;
    }
    
    .adv-product-specs-row {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        text-align: center;
        padding: 12px 0;
    }
    
    .adv-product-specs-label,
    .adv-product-specs-value {
        text-align: center;
        width: 100%;
    }
    
    .adv-product-specs-label {
        font-weight: 700;
        margin-bottom: 2px;
    }
}

/* Responsive - Très petit mobile */
@media (max-width: 480px) {
    .adv-product-specs-title {
        font-size: 18px;
    }
    
    .adv-product-specs-white-block {
        padding: 15px;
    }
    
    .adv-product-specs-label,
    .adv-product-specs-value {
        font-size: 13px;
    }
}

/* Style pour les valeurs "oui" et "non" */
.adv-product-specs-value:contains("oui") {
    color: #28a745;
    font-weight: 500;
}

.adv-product-specs-value:contains("non") {
    color: #dc3545;
    font-weight: 500;
}

/* Style pour les prix */
.adv-product-specs-value:contains("€") {
    color: #d4af37;
    font-weight: 600;
}