/* ===== BASE ===== */
body{
    background:#0f0f0f;
    color:#fff;
    font-family:Arial, sans-serif;
    margin:0;
}

.container{
    max-width:1100px;
    margin:60px auto;
    padding:0 15px;
}

/* ===== CAROUSEL AVIS ===== */
.carousel{
    position:relative;
}

.track{
    display:flex;
    gap:20px;
    overflow-x:auto;
    scroll-behavior:smooth;
}

.track::-webkit-scrollbar{
    display:none;
}

/* ===== CARD AVIS ===== */
.card{
    min-width:300px;
    background:#1a1a1a;
    padding:20px;
    border-radius:16px;
    flex-shrink:0;
}

.name{
    color:#4da3ff;
    font-weight:bold;
}

.stars{
    color:gold;
    margin:6px 0;
}

/* ===== PHOTO AVIS ===== */
.review-photo{
    width:100%;
    border-radius:12px;
    margin-top:10px;
}

/* ===== ACTIONS ===== */
.actions{
    display:flex;
    gap:16px;
    margin-top:10px;
    font-size:14px;
}

.heart{
    cursor:pointer;
    user-select:none;
    color:#555;
}

.heart.liked{
    color:#ff4d6d;
}

/* ===== RÉPONSES ===== */
.replies{
    margin-top:12px;
    padding-left:12px;
    border-left:2px solid #333;
    max-height:120px;
    overflow-y:auto;
    font-size:14px;
    display:none;
}

.replies div{
    margin-bottom:6px;
}

/* ===== FORMULAIRE RÉPONSE ===== */
.reply-form{
    margin-top:12px;
}

.reply-form input{
    width:100%;
    padding:10px;
    border-radius:10px;
    border:none;
}

.reply-form button{
    margin-top:8px;
    padding:8px 18px;
    border:none;
    border-radius:20px;
    background:#4da3ff;
    cursor:pointer;
}

/* ===== FLÈCHES ===== */
.arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:#000;
    border:none;
    color:#fff;
    font-size:20px;
    padding:8px 12px;
    cursor:pointer;
}

.arrow.left{left:-10px}
.arrow.right{right:-10px}
