/**
 * Styles pour les shortcodes de notes de parfum
 */

/* ========================================
   VERSION 1 : Affichage simple (inline)
   ======================================== */
.notes-parfum-simple {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* ========================================
   VERSION 2 : Affichage en cartes
   ======================================== */
.notes-parfum-cards {
    width: 100%;
    margin: 30px 0;
}

.notes-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Responsive : mobile */
@media (max-width: 768px) {
    .notes-cards-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Chaque carte */
.note-card {
    background: #fff;
    overflow: hidden;
    text-align: center;
}

/* Image de la note */
.note-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

.note-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contenu de la carte */
.note-card-content {
    padding: 20px 15px;
}

.note-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
}

.note-card-description {
    font-size: 13px;
    line-height: 1.6;
    color: #777;
    margin: 0;
}
