/**
 * Styles pour le bloc Fiche Produit Affiliation (frontend) - Version 3.0
 */

/* Structure de base */
.fpa-product-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

/* Style pour rendre le bloc entier cliquable */
.fpa-clickable {
    cursor: pointer;
}

.fpa-clickable:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

/* Badge personnalisable */
.fpa-best-choice {
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: bold;
    z-index: 10;
    border-bottom-right-radius: 8px;
}

/* Structure en lignes */
.fpa-product-row {
    padding: 20px;
    width: 100%;
}

/* Ligne 1: Image et informations principales */
.fpa-row-1 {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
}

/* Options de largeur d'image */
.fpa-image-width-1\/4 .fpa-product-image {
    width: 25%;
    padding-right: 20px;
}

.fpa-image-width-1\/4 .fpa-product-info {
    width: 75%;
}

.fpa-image-width-1\/3 .fpa-product-image {
    width: 33.333%;
    padding-right: 20px;
}

.fpa-image-width-1\/3 .fpa-product-info {
    width: 66.667%;
}

.fpa-image-width-1\/2 .fpa-product-image {
    width: 50%;
    padding-right: 20px;
}

.fpa-image-width-1\/2 .fpa-product-info {
    width: 50%;
}

.fpa-image-width-full .fpa-product-image {
    width: 100%;
    margin-bottom: 20px;
}

.fpa-image-width-full .fpa-product-info {
    width: 100%;
}

/* Image du produit - alignée en haut */
.fpa-product-image {
    display: flex;
    align-items: flex-start; /* Alignement en haut */
    justify-content: center;
}

.fpa-product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Informations du produit */
.fpa-product-info {
    display: flex;
    flex-direction: column;
}

.fpa-product-name {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
    color: #333;
}

/* Méta-informations (note et prix) */
.fpa-product-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    gap: 15px;
}

.fpa-product-rating {
    font-weight: bold;
    display: flex;
    align-items: center;
}

.fpa-star {
    font-size: 18px;
    line-height: 1;
}

.fpa-rating-text {
    margin-left: 5px;
    font-size: 14px;
}

.fpa-product-price {
    font-weight: bold;
    color: #333;
}

/* Description */
.fpa-product-description {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Code promo */
.fpa-promo-code {
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 4px;
    border: 1px dashed #ccc;
}

.fpa-promo-code span {
    font-weight: bold;
    color: #D98068;
}

/* Ligne 2: Avantages et inconvénients sur 2 colonnes */
.fpa-row-2 {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
}

.fpa-product-pros,
.fpa-product-cons {
    width: 50%;
    padding: 0 10px;
    box-sizing: border-box;
}

.fpa-product-pros h4,
.fpa-product-cons h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
}

.fpa-product-pros ul,
.fpa-product-cons ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.fpa-product-pros li,
.fpa-product-cons li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.fpa-icon {
    margin-right: 8px;
    flex-shrink: 0;
}

/* Ligne 3: Bouton d'action en pleine largeur */
.fpa-row-3 {
    display: flex;
    justify-content: center;
}

.fpa-product-button {
    width: 100%;
    text-align: center;
}

.fpa-button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 16px;
}

.fpa-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    /* Ligne 1 */
    .fpa-image-width-1\/4 .fpa-product-image,
    .fpa-image-width-1\/3 .fpa-product-image,
    .fpa-image-width-1\/2 .fpa-product-image,
    .fpa-image-width-1\/4 .fpa-product-info,
    .fpa-image-width-1\/3 .fpa-product-info,
    .fpa-image-width-1\/2 .fpa-product-info {
        width: 100%;
        padding-right: 0;
    }
    
    .fpa-product-image {
        margin-bottom: 20px;
    }
    
    /* Ligne 2 */
    .fpa-product-pros,
    .fpa-product-cons {
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }
}

/* Styles pour les étoiles partielles */
.fpa-star-partial {
    position: relative;
    display: inline-block;
}

.fpa-star-partial > span:first-child {
    color: #ccc;
}

.fpa-star-partial > span:last-child {
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
}
