.google-reviews-section {
    padding: 20px;
    background-color: #000000;
    border: 3px solid rgb(240, 156, 51); /* Contour autour de la section */
    border-radius: 8px;
}

.reviews-container {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.reviews-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
    scroll-behavior: smooth; /* Ajoute une transition fluide pour les défilements */
}


.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
}

.review-card {
    width: 300px;
    padding: 15px;
    background-color: #ffffff;
    border: 2px solid rgb(240, 156, 51);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    margin: 0 10px; /* Ajout d'espace entre les cartes */
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.user-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.review-details {
    flex: 1;
}

.review-details h3 {
    font-size: 1.1em;
    margin: 0;
    color: #333;
}

.stars {
    color: #fbc02d;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.review-date {
    font-size: 0.8em;
    color: #777;
}

.review-text {
    font-size: 0.9em;
    color: #000000;
    line-height: 1.4;
    font-weight: bold;
}

/* Styles pour les flèches de défilement */
.prev-arrow, .next-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.678);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
}

.prev-arrow {
    left: 10px;
    color: rgb(240, 156, 51);
    font-size: 20px;
}

.next-arrow {
    right: 10px;
    color: rgb(240, 156, 51);
    font-size: 20px;
}

.prev-arrow:hover, .next-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.stars1{
    font-size: 40px;
    position: relative;
    left: 40rem;
    top: -4rem;
    color: rgb(240, 156, 51) ;
}

.laisse-avis{
    position: relative;
    font-size: 25px;
    left: 33rem;
    top: 30px;
}