/* --- Styles du Container Global --- */
.selection-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #f8f9fa; /* Gris très léger pour se distinguer du fond blanc du site */
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.selection-header {
    text-align: center;
    margin-bottom: 30px;
}

.selection-header h2 {
    color: #2c3e50;
    font-size: 24px; /* Taille maintenue */
    margin-bottom: 10px;
    font-weight: 700;
}

.selection-header p {
    color: #6c757d;
    font-size: 16px; /* Taille maintenue */
}

/* --- La Grille Responsive --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* --- La Carte Produit (Card) --- */
.product-card {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: #ced4da;
}

/* --- Badge (Optionnel pour le #1) --- */
.badge-top {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ffc107;
    color: #212529;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    z-index: 2;
    text-transform: uppercase;
}

/* --- Image Produit --- */
.card-img-wrapper {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background-color: #fff;
}

.card-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* --- Infos Produit --- */
.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* AJUSTEMENT : TITRE PLUS GRAND */
.product-title {
    font-size: 18px; /* Augmenté de 16px à 18px */
    font-weight: 700; /* Rendu plus gras */
    color: #343a40;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 48px; /* Ajusté pour 2 lignes avec la nouvelle taille */
}

/* AJUSTEMENT : DESCRIPTION PLUS LISIBLE */
.product-desc {
    font-size: 14px; /* Augmenté de 13px à 14px */
    color: #495057; /* Rendu légèrement plus foncé pour le contraste */
    margin-bottom: 15px;
    line-height: 1.5; /* Augmenté pour l'aération */
}

/* --- Prix et CTA --- */
.card-footer {
    margin-top: auto;
    border-top: 1px solid #f1f3f5;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-tag {
    font-size: 18px;
    font-weight: 700;
    color: #B12704;
}

.amazon-btn {
    background-color: #FF9900;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
    text-align: center;
}

.amazon-btn:hover {
    background-color: #e68a00;
}
