/* ==========================================
   SYSTÈME D'ÉVALUATION INNOVX - CSS MODERNE
   Thème: Noir / Jaune
   ========================================== */

/* Reset et base */
* {
    box-sizing: border-box;
}

/* Conteneur principal */
.reviews-container {
    background: #000000;
    color: #ffffff;
    padding: 60px 20px;
    min-height: 100vh;
}

.reviews-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Badge de module */
.module-badge {
    background: linear-gradient(135deg, rgba(255, 215, 58, 0.15) 0%, rgba(255, 140, 0, 0.1) 100%);
    border: 2px solid rgba(255, 215, 58, 0.45);
    color: #FFD73A;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 215, 58, 0.15);
}

/* Boîte "Vous avez déjà laissé un avis" */
.already-reviewed-box {
    background: linear-gradient(135deg, rgba(255, 215, 58, 0.08) 0%, rgba(255, 215, 58, 0.03) 100%);
    border: 2px solid rgba(255, 215, 58, 0.3);
    border-radius: 16px;
    padding: 20px 28px;
}

.already-reviewed-box p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.already-reviewed-box i {
    color: #28a745;
    font-size: 1.2rem;
}

/* ========================================== */
/* STATISTIQUES GLOBALES - VERSION AMÉLIORÉE */
/* ========================================== */

.reviews-stats-section {
    background: linear-gradient(145deg, #0a0a0a 0%, #121212 40%, #0d0d0d 100%);
    border: 2px solid rgba(255, 215, 58, 0.4);
    border-radius: 24px;
    padding: 40px 50px;
    margin-bottom: 35px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 215, 58, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.reviews-stats-section::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -50%;
    width: 200%;
    height: 300%;
    background: radial-gradient(ellipse at center, rgba(255, 215, 58, 0.06) 0%, transparent 60%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; transform: scale(0.95); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.reviews-stats-section > * {
    position: relative;
    z-index: 1;
}

.average-rating {
    font-size: 4.5rem;
    font-weight: 900;
    color: #FFD73A;
    margin: 0;
    text-shadow: 0 0 30px rgba(255, 215, 58, 0.4), 0 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1;
    letter-spacing: -2px;
}

.average-rating small {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.total-reviews {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 12px 0 0 0;
    font-weight: 400;
}

.total-reviews strong {
    color: #FFD73A;
    font-weight: 700;
}

.recommendation-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD73A 0%, #f5c800 50%, #FF9500 100%);
    color: #000;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 18px;
    box-shadow: 0 6px 20px rgba(255, 215, 58, 0.35);
    letter-spacing: 0.3px;
}

/* ========================================== */
/* DISTRIBUTION DES NOTES */
/* ========================================== */

.rating-distribution {
    background: #111111;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    border: 2px solid rgba(255, 215, 58, 0.2);
}

.rating-distribution h3 {
    color: #FFD73A;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.rating-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.rating-bar-wrapper:hover {
    background: rgba(255, 215, 58, 0.05);
    transform: translateX(5px);
}

.rating-bar-wrapper .stars {
    font-size: 1.2rem;
    color: #FFD73A;
    min-width: 80px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.rating-bar-container {
    flex: 1;
    height: 25px;
    background: #0a0a0a;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD73A 0%, #FF8C00 100%);
    border-radius: 12px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(255, 215, 58, 0.5);
}

.rating-bar-wrapper .percentage {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    min-width: 60px;
    text-align: right;
    font-weight: bold;
}

.rating-bar-wrapper .count {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    min-width: 80px;
    text-align: right;
}

/* ========================================== */
/* FILTRES ET TRI - VERSION AMÉLIORÉE */
/* ========================================== */

.reviews-filters {
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 50%, #0f0f0f 100%);
    border: 2px solid rgba(255, 215, 58, 0.25);
    border-radius: 20px;
    padding: 28px 32px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.reviews-filters form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.filter-group label {
    display: block;
    color: #FFD73A;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group select {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: linear-gradient(135deg, #0a0a0a, #111111);
    border: 2px solid rgba(255, 215, 58, 0.35);
    color: #ffffff;
    padding: 16px 50px 16px 20px;
    border-radius: 14px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 12 12'%3E%3Cpath fill='%23FFD73A' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
}

.filter-group select:hover {
    border-color: rgba(255, 215, 58, 0.6);
    background-color: #0f0f0f;
}

.filter-group select:focus {
    outline: none;
    border-color: #FFD73A;
    box-shadow: 0 0 0 3px rgba(255, 215, 58, 0.15), 0 4px 12px rgba(255, 215, 58, 0.2);
}

.filter-group select option {
    background: #111111;
    color: #ffffff;
    padding: 12px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 58, 0.08), rgba(255, 215, 58, 0.03));
    border: 2px solid rgba(255, 215, 58, 0.25);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.filter-checkbox:hover {
    background: linear-gradient(135deg, rgba(255, 215, 58, 0.15), rgba(255, 215, 58, 0.08));
    border-color: rgba(255, 215, 58, 0.4);
}

.filter-checkbox input[type="checkbox"] {
    width: 24px;
    height: 24px;
    min-width: 24px;
    cursor: pointer;
    accent-color: #FFD73A;
    border-radius: 6px;
}

.filter-checkbox label {
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    margin: 0;
    font-weight: 500;
    font-size: 1rem;
}

.btn-filter-apply {
    background: linear-gradient(135deg, #FFD73A 0%, #f0c800 50%, #FF8C00 100%);
    color: #000;
    border: none;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 15px rgba(255, 215, 58, 0.3);
}

.btn-filter-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 58, 0.5);
    background: linear-gradient(135deg, #ffe066 0%, #FFD73A 50%, #ffaa00 100%);
}

.btn-filter-apply:active {
    transform: translateY(0);
}

/* ========================================== */
/* LISTE DES AVIS - VERSION AMÉLIORÉE */
/* ========================================== */

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.review-card {
    background: linear-gradient(145deg, #0c0c0c 0%, #141414 50%, #0a0a0a 100%);
    border: 1px solid rgba(255, 215, 58, 0.15);
    border-radius: 14px;
    padding: 16px 20px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #FFD73A 0%, #FF8C00 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.review-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 58, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 215, 58, 0.08);
    border-color: rgba(255, 215, 58, 0.35);
}

.review-card:hover::before,
.review-card:hover::after {
    opacity: 1;
}

/* En-tête de l'avis */
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #FFD73A;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(255, 215, 58, 0.2);
}

.review-user-info {
    flex: 1;
    min-width: 150px;
}

.review-username {
    color: #ffffff;
    margin: 0 0 2px 0;
    font-size: 1rem;
    font-weight: bold;
}

.review-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.badge-verified {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 3px 10px rgba(40, 167, 69, 0.4);
}

.badge-verified::before {
    content: '✓';
    font-size: 1.1rem;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 1.5rem;
    color: #FFD73A;
    margin-left: auto;
}

/* Contenu de l'avis */
.review-title {
    color: #FFD73A;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.review-comment {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0 0 10px 0;
    text-align: justify;
}

/* Images de l'avis */
.review-images {
    display: flex;
    gap: 10px;
    margin: 10px 0;
    flex-wrap: wrap;
}

.review-image-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(255, 215, 58, 0.3);
    transition: all 0.3s ease;
}

.review-image-wrapper:hover {
    transform: scale(1.05);
    border-color: #FFD73A;
    box-shadow: 0 5px 20px rgba(255, 215, 58, 0.5);
}

.review-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Actions sur l'avis - Version avec bordures (legacy) */
.review-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn-review-action {
    background: rgba(255, 215, 58, 0.1);
    border: 2px solid rgba(255, 215, 58, 0.3);
    color: #FFD73A;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-review-action:hover {
    background: #FFD73A;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 58, 0.4);
}

.btn-review-action.voted {
    background: #FFD73A;
    color: #000;
    border-color: #FFD73A;
}

/* EXCLUSIVITÉ: Styles pour actions bloquées */
.btn-review-action.action-taken {
    background: #FFD73A;
    color: #000;
    border-color: #FFD73A;
    cursor: not-allowed;
    opacity: 0.9;
}

.btn-review-action.action-blocked {
    background: rgba(128, 128, 128, 0.2);
    border-color: rgba(128, 128, 128, 0.3);
    color: rgba(128, 128, 128, 0.6);
    cursor: not-allowed;
    opacity: 0.5;
    pointer-events: none;
}

.btn-review-action.action-blocked:hover {
    background: rgba(128, 128, 128, 0.2);
    color: rgba(128, 128, 128, 0.6);
    transform: none;
    box-shadow: none;
}

.btn-review-action:disabled {
    cursor: not-allowed;
    pointer-events: none;
}

.btn-report.action-blocked {
    background: rgba(128, 128, 128, 0.2);
    border-color: rgba(128, 128, 128, 0.3);
    color: rgba(128, 128, 128, 0.6);
}

.btn-report.action-taken {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
    cursor: not-allowed;
    opacity: 0.9;
}

.btn-report {
    background: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.3);
    color: #dc3545;
}

.btn-report:hover {
    background: #dc3545;
    color: white;
}

/* ========================================== */
/* ACTIONS ICÔNES SEULEMENT (nouvelle version) */
/* ========================================== */

.review-actions-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.btn-action-icon {
    background: transparent;
    border: none;
    color: #FFD73A;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px;
    font-size: 1.2rem;
    text-decoration: none;
}

.btn-action-icon i {
    font-size: 1.3rem;
    transition: transform 0.2s ease;
}

.btn-action-icon .action-count {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.btn-action-icon:hover {
    transform: scale(1.15);
}

.btn-action-icon:hover i {
    color: #fff;
}

.btn-action-icon:hover .action-count {
    color: #fff;
}

.btn-action-icon.voted {
    color: #fff;
}

.btn-action-icon.voted i {
    color: #FFD73A;
    text-shadow: 0 0 10px rgba(255, 215, 58, 0.5);
}

/* EXCLUSIVITÉ: États d'action pour les boutons icônes */
.btn-action-icon.action-taken {
    color: #FFD73A;
    cursor: not-allowed;
    opacity: 1;
    pointer-events: none;
}

.btn-action-icon.action-taken i {
    color: #FFD73A;
    text-shadow: 0 0 10px rgba(255, 215, 58, 0.5);
}

.btn-action-icon.action-blocked {
    color: rgba(128, 128, 128, 0.4);
    cursor: not-allowed;
    opacity: 0.4;
    pointer-events: none;
}

.btn-action-icon.action-blocked:hover {
    transform: none;
    color: rgba(128, 128, 128, 0.4);
}

.btn-action-icon.action-blocked i {
    color: rgba(128, 128, 128, 0.4);
}

.btn-action-icon:disabled,
.btn-action-icon[disabled] {
    cursor: not-allowed;
    pointer-events: none;
}

.btn-action-icon.btn-action-report.action-taken {
    color: #dc3545;
}

.btn-action-icon.btn-action-report.action-taken i {
    color: #dc3545;
    text-shadow: 0 0 10px rgba(220, 53, 69, 0.5);
}

/* Bouton signaler - rouge */
.btn-action-icon.btn-action-report {
    color: #dc3545;
}

.btn-action-icon.btn-action-report:hover {
    color: #ff6b6b;
}

/* Responsive pour les icônes */
@media (max-width: 768px) {
    .review-actions-icons {
        gap: 16px;
    }

    .btn-action-icon {
        font-size: 1.1rem;
        padding: 6px;
    }

    .btn-action-icon i {
        font-size: 1.2rem;
    }

    .btn-action-icon .action-count {
        font-size: 0.85rem;
    }
}

/* Réponse InnovX */
.admin-response {
    background: linear-gradient(135deg, rgba(255, 215, 58, 0.15), rgba(255, 140, 0, 0.1));
    border-left: 5px solid #FFD73A;
    padding: 25px;
    margin-top: 25px;
    border-radius: 12px;
    position: relative;
}

.admin-response::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #FFD73A, #FF8C00);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.1;
}

.response-badge {
    background: linear-gradient(135deg, #FFD73A, #FF8C00);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(255, 215, 58, 0.4);
}

.response-badge::before {
    content: '🏢';
    font-size: 1.1rem;
}

.response-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1rem;
    margin: 15px 0 10px 0;
}

.response-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-style: italic;
}

/* ========================================== */
/* PAGINATION */
/* ========================================== */

.reviews-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    padding: 30px;
}

.pagination-btn {
    background: rgba(255, 215, 58, 0.1);
    border: 2px solid rgba(255, 215, 58, 0.3);
    color: #FFD73A;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    min-width: 50px;
    text-align: center;
}

.pagination-btn:hover:not(.disabled) {
    background: #FFD73A;
    color: #000;
    transform: translateY(-2px);
}

.pagination-btn.active {
    background: linear-gradient(135deg, #FFD73A, #FF8C00);
    color: #000;
    border-color: #FFD73A;
}

.pagination-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ========================================== */
/* FORMULAIRE DE SOUMISSION */
/* ========================================== */

.submit-review-container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    border: 3px solid #FFD73A;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(255, 215, 58, 0.3);
}

.submit-review-header {
    text-align: center;
    margin-bottom: 40px;
}

.submit-review-header h2 {
    color: #FFD73A;
    font-size: 2.5rem;
    margin: 0 0 15px 0;
    font-weight: 900;
}

.submit-review-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.form-review {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group label {
    color: #FFD73A;
    font-weight: bold;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label .required {
    color: #FF8C00;
    font-size: 1.3rem;
}

.form-control {
    width: 100%;
    background: #111111;
    border: 2px solid rgba(255, 215, 58, 0.3);
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: #FFD73A;
    box-shadow: 0 0 15px rgba(255, 215, 58, 0.3);
    background: #0a0a0a;
}

textarea.form-control {
    min-height: 180px;
    resize: vertical;
    line-height: 1.6;
}

.form-help-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-style: italic;
}

.char-counter {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-align: right;
    margin-top: -8px;
}

.char-counter.warning {
    color: #FF8C00;
}

.char-counter.valid {
    color: #28a745;
}

/* Sélecteur d'étoiles */
.rating-selector {
    display: flex;
    gap: 10px;
    font-size: 2.5rem;
}

.rating-star {
    cursor: pointer;
    color: rgba(255, 215, 58, 0.3);
    transition: all 0.2s ease;
    filter: drop-shadow(0 0 5px rgba(255, 215, 58, 0));
}

.rating-star:hover,
.rating-star.active {
    color: #FFD73A;
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(255, 215, 58, 0.8));
}

/* Upload d'images */
.image-upload-wrapper {
    border: 3px dashed rgba(255, 215, 58, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    background: rgba(255, 215, 58, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.image-upload-wrapper:hover {
    border-color: #FFD73A;
    background: rgba(255, 215, 58, 0.1);
}

.image-upload-wrapper input[type="file"] {
    display: none;
}

.upload-icon {
    font-size: 3rem;
    color: #FFD73A;
    margin-bottom: 15px;
}

.upload-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.upload-limit {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.image-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.preview-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 58, 0.3);
}

.preview-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-remove-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.preview-remove-btn:hover {
    background: #dc3545;
    transform: scale(1.1);
}

/* Checkbox conditions */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 215, 58, 0.05);
    border: 2px solid rgba(255, 215, 58, 0.2);
    border-radius: 12px;
}

.form-checkbox input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    margin-top: 2px;
}

.form-checkbox label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    cursor: pointer;
    font-weight: normal;
}

/* Bouton de soumission */
.btn-submit-review {
    background: linear-gradient(135deg, #FFD73A, #FF8C00);
    color: #000;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 5px 20px rgba(255, 215, 58, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit-review:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 58, 0.6);
}

.btn-submit-review:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========================================== */
/* MESSAGES ET NOTIFICATIONS */
/* ========================================== */

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 18px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInRight 0.3s ease;
}

.notification.error {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.notification.warning {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #000;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Messages d'erreur de formulaire */
.form-error {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-error::before {
    content: '⚠';
    font-size: 1.1rem;
}

/* ========================================== */
/* BOUTON "LAISSER UN AVIS" */
/* ========================================== */

.btn-leave-review {
    background: linear-gradient(135deg, #FFD73A, #FF8C00);
    color: #000;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 20px rgba(255, 215, 58, 0.4);
    margin-bottom: 40px;
}

.btn-leave-review:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 58, 0.6);
}

.btn-leave-review::before {
    content: '⭐';
    font-size: 1.4rem;
}

/* ========================================== */
/* ÉTATS VIDES */
/* ========================================== */

.no-reviews {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border: 2px solid rgba(255, 215, 58, 0.3);
    border-radius: 20px;
}

.no-reviews-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-reviews h3 {
    color: #FFD73A;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.no-reviews p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 30px;
}

/* ========================================== */
/* RESPONSIVE - VERSION AMÉLIORÉE */
/* ========================================== */

@media (max-width: 768px) {
    .reviews-container {
        padding: 30px 15px;
    }

    .reviews-stats-section {
        padding: 28px 20px;
        border-radius: 18px;
        margin-bottom: 25px;
    }

    .average-rating {
        font-size: 3.2rem;
    }

    .average-rating small {
        font-size: 1.5rem;
    }

    .total-reviews {
        font-size: 1rem;
    }

    .recommendation-badge {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .rating-distribution {
        padding: 22px 18px;
        border-radius: 16px;
        margin-bottom: 25px;
    }

    .rating-distribution h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    /* Filtres - disposition en colonne sur mobile */
    .reviews-filters {
        padding: 20px 18px;
        border-radius: 16px;
        margin-bottom: 25px;
    }

    .reviews-filters form {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .filter-group select {
        padding: 16px 18px;
        font-size: 1rem;
        border-radius: 14px;
    }

    .filter-checkbox {
        grid-column: span 1;
        padding: 16px 18px;
        border-radius: 14px;
    }

    .btn-filter-apply {
        grid-column: span 1;
        padding: 16px 24px;
        font-size: 1rem;
        border-radius: 14px;
    }

    /* Cartes d'avis - pleine largeur bord à bord */
    .review-card {
        padding: 0.65rem 0.75rem;
        border-radius: 0;
        margin-left: -20px;
        margin-right: -20px;
        border-left: none;
        border-right: none;
        border-top: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .review-card:hover {
        transform: none;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 8px;
    }

    .review-avatar {
        width: 36px;
        height: 36px;
    }

    .review-username {
        font-size: 0.95rem;
    }

    .review-rating {
        margin-left: 0;
        font-size: 1.1rem;
    }

    .review-title {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .review-comment {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 8px;
    }

    .review-actions,
    .review-actions-icons {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
        justify-content: space-between;
        width: 100%;
    }

    .btn-review-action,
    .btn-action-icon {
        flex: 1;
        min-width: auto;
        justify-content: center;
        padding: 6px 14px;
        font-size: 0.8rem;
        border-radius: 18px;
    }

    /* Masquer le texte sur mobile, garder icônes + compteurs */
    .btn-review-action .btn-text {
        display: none;
    }

    .submit-review-container {
        padding: 25px 18px;
        border-radius: 18px;
    }

    .submit-review-header h2 {
        font-size: 1.8rem;
    }

    .btn-submit-review {
        font-size: 1rem;
        padding: 16px 30px;
    }

    .image-preview-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    }

    /* Espace pour le menu mobile en bas */
    .reviews-container {
        padding-bottom: 100px;
    }
}

@media (max-width: 480px) {
    .reviews-container {
        padding: 20px 12px 100px 12px;
    }

    .reviews-stats-section {
        padding: 24px 16px;
    }

    .average-rating {
        font-size: 2.8rem;
    }

    .rating-bar-wrapper {
        flex-wrap: wrap;
        gap: 8px;
        padding: 8px;
    }

    .rating-bar-wrapper .stars {
        min-width: 70px;
        font-size: 1rem;
    }

    .rating-bar-wrapper .percentage {
        font-size: 0.95rem;
        min-width: 50px;
    }

    .rating-bar-wrapper .count {
        font-size: 0.8rem;
        min-width: 60px;
    }

    .review-card {
        padding: 12px 12px;
    }

    .btn-review-action {
        min-width: auto;
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    /* Masquer le texte sur très petit écran */
    .btn-review-action .btn-text {
        display: none;
    }

    .review-actions {
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .review-images {
        gap: 8px;
    }

    .review-image-wrapper {
        width: 85px;
        height: 85px;
    }

    .notification {
        left: 10px;
        right: 10px;
        top: 10px;
        font-size: 0.9rem;
        padding: 14px 20px;
    }

    /* Badge de module en haut */
    .text-center.mb-5 span {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

/* ========================================== */
/* LOADING STATES */
/* ========================================== */

.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 4px solid rgba(255, 215, 58, 0.2);
    border-top-color: #FFD73A;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================== */
/* ANIMATIONS */
/* ========================================== */

.fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.4s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================== */
/* CARTE DE PRÉVISUALISATION DU CONTENU */
/* ========================================== */

.content-preview-card {
    background: linear-gradient(145deg, #0d0d0d 0%, #1a1a1a 50%, #0a0a0a 100%);
    border: 2px solid rgba(255, 215, 58, 0.35);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 35px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 215, 58, 0.08);
    overflow: hidden;
    position: relative;
}

.content-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD73A, transparent);
}

.content-preview-inner {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

/* Image du contenu */
.content-preview-image {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 2px solid rgba(255, 215, 58, 0.25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.content-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.content-preview-card:hover .content-preview-image img {
    transform: scale(1.05);
}

.content-preview-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, rgba(255, 215, 58, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
}

/* Infos du contenu */
.content-preview-info {
    flex: 1;
    min-width: 0;
}

.content-preview-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(255, 215, 58, 0.2) 0%, rgba(255, 140, 0, 0.1) 100%);
    border: 1px solid rgba(255, 215, 58, 0.4);
    color: #FFD73A;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.content-preview-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 12px 0;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.content-preview-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 18px 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Méta-infos */
.content-preview-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.content-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.content-meta-item i {
    color: #FFD73A;
    font-size: 0.85rem;
}

.content-meta-price span {
    color: #FFD73A;
    font-weight: 700;
}

.content-meta-rating {
    background: rgba(255, 215, 58, 0.1);
    padding: 4px 12px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 58, 0.25);
}

.content-meta-rating span {
    color: #FFD73A;
}

.stars-inline {
    font-size: 0.9rem;
}

/* Bouton voir détails */
.content-preview-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFD73A 0%, #FF8C00 100%);
    color: #000;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 58, 0.3);
}

.content-preview-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 58, 0.4);
    color: #000;
}

.content-preview-btn i {
    font-size: 1rem;
}

/* Responsive - Tablette */
@media (max-width: 768px) {
    .content-preview-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .content-preview-image {
        width: 150px;
        height: 150px;
    }

    .content-preview-title {
        font-size: 1.3rem;
    }

    .content-preview-meta {
        justify-content: center;
    }

    .content-preview-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .content-preview-card {
        padding: 20px 15px;
    }

    .content-preview-image {
        width: 120px;
        height: 120px;
    }

    .content-preview-placeholder {
        font-size: 3rem;
    }

    .content-preview-title {
        font-size: 1.15rem;
    }

    .content-preview-description {
        font-size: 0.9rem;
    }

    .content-preview-meta {
        gap: 12px;
    }

    .content-meta-item {
        font-size: 0.85rem;
    }
}

/* ========================================== */
/* FIX DÉBORDEMENT TEXTE DANS LES AVIS */
/* ========================================== */

.review-comment {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: pre-wrap;
    max-width: 100%;
}

.review-title {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* ========================================== */
/* RÉPONSES DU CRÉATEUR DE CONTENU */
/* ========================================== */

.owner-response {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.12), rgba(46, 125, 50, 0.08));
    border-left: 4px solid #4CAF50;
    padding: 20px 25px;
    margin-top: 20px;
    border-radius: 0 12px 12px 0;
    position: relative;
}

.owner-response.admin-response {
    background: linear-gradient(135deg, rgba(255, 215, 58, 0.15), rgba(255, 140, 0, 0.1));
    border-left-color: #FFD73A;
}

.response-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.response-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 58, 0.2);
    color: #FFD73A;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.response-badge-owner {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.response-edit-btn {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: color 0.2s ease;
    text-decoration: none;
}

.response-edit-btn:hover {
    color: #FFD73A;
}

.response-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.response-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.response-author {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
}

.response-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* Bouton répondre dans les actions */
.btn-action-respond {
    color: #4CAF50;
}

.btn-action-respond:hover {
    color: #66BB6A;
}

/* ========================================== */
/* ALREADY REVIEWED BOX AMÉLIORÉ */
/* ========================================== */

.already-reviewed-box {
    background: rgba(255, 215, 58, 0.08);
    border: 2px solid rgba(255, 215, 58, 0.2);
    border-radius: 15px;
    padding: 25px;
}

.already-reviewed-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.already-reviewed-box i {
    color: #FFD73A;
    font-size: 1.2rem;
}

/* ========================================== */
/* RESPONSIVE POUR RÉPONSES */
/* ========================================== */

@media (max-width: 768px) {
    .owner-response {
        padding: 15px 18px;
    }

    .response-header {
        flex-wrap: wrap;
        gap: 10px;
    }

    .response-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .response-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* ==========================================
   ACTIONS SUR LES RÉPONSES DES CRÉATEURS
   ========================================== */

.response-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-response-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-response-action:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-response-action i {
    font-size: 0.9rem;
}

.btn-response-action .action-count {
    font-weight: 600;
    font-size: 0.8rem;
}

.btn-response-helpful.action-taken,
.btn-response-helpful:hover {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.btn-response-not-helpful.action-taken,
.btn-response-not-helpful:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.btn-response-comment:hover,
.btn-response-comment.active {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.btn-response-report:hover {
    background: rgba(251, 146, 60, 0.15);
    border-color: rgba(251, 146, 60, 0.3);
    color: #fb923c;
}

.btn-response-action.action-blocked {
    opacity: 0.4;
    pointer-events: none;
    cursor: not-allowed;
}

/* Zone de commentaires sur les réponses */
.response-comments-zone {
    margin-top: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.comments-list {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 12px;
}

.comments-list::-webkit-scrollbar {
    width: 4px;
}

.comments-list::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 58, 0.3);
    border-radius: 4px;
}

.comment-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f7db61, #eab308);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.comment-content {
    flex: 1;
    min-width: 0;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.comment-author {
    font-weight: 600;
    font-size: 0.85rem;
    color: #fff;
}

.comment-date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.comment-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    word-break: break-word;
}

.comment-delete-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 4px;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.comment-delete-btn:hover {
    color: #ef4444;
}

.comment-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.comment-input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.2s;
}

.comment-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.comment-input:focus {
    border-color: rgba(255, 215, 58, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.btn-submit-comment {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f7db61, #eab308);
    border: none;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.btn-submit-comment:hover {
    transform: scale(1.05);
}

.btn-submit-comment i {
    font-size: 0.9rem;
}

.no-comments {
    text-align: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive pour actions réponses */
@media (max-width: 576px) {
    .response-actions {
        flex-wrap: wrap;
    }

    .btn-response-action {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}





