.swm-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.swm-average-rating {
    text-align: center;
    padding: 20px 0;
    margin-bottom: 30px;
}

.swm-stars {
    font-size: 32px;
    color: #d4af37;
    letter-spacing: 5px;
}

.swm-rating-value {
    font-size: 18px;
    margin-top: 10px;
    color: rgba(255,255,255,0.8);
}

/* Avis avec ligne verticale à gauche */
.swm-review-item {
    margin-bottom: 30px;
    padding: 0 0 0 20px;
    border-left: 3px solid #d4af37;
}

.swm-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

/* Étoiles seules (pas de nom) */
.swm-review-stars {
    color: #d4af37;
    font-size: 16px;
    letter-spacing: 2px;
}

.swm-review-date {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
}

.swm-review-content {
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin-bottom: 15px;
}

.swm-review-photos {
    display: flex;
    gap: 10px;
    margin-top: 5px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.swm-review-photos img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;  /* coins arrondis pour les miniatures */
}

/* Auteur en bas */
.swm-review-author {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    font-style: italic;
    margin-top: 10px;
}

/* Lightbox overlay */
#swm-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 99999999;
    align-items: center;
    justify-content: center;
    display: none;
}

.swm-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.swm-lightbox-main-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
}

.swm-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.swm-lightbox-prev,
.swm-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
}

.swm-lightbox-prev {
    left: -60px;
}

.swm-lightbox-next {
    right: -60px;
}

.swm-lightbox-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.swm-lightbox-thumbnails img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    border-radius: 6px;
}

.swm-lightbox-thumbnails img.active {
    opacity: 1;
    border: 2px solid white;
}

@media (max-width: 768px) {
    .swm-lightbox-prev { left: 10px; }
    .swm-lightbox-next { right: 10px; }
    .swm-lightbox-prev, .swm-lightbox-next {
        padding: 10px 15px;
        font-size: 20px;
    }
}