.reviews-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.reviews-carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s ease;
}

.reviews-carousel-slide {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background: #fff;
    box-sizing: border-box;
}

/* Estrelles */
.reviews-estrelles {
    display: flex;
    gap: 2px;
}

.estrella {
    font-size: 18px;
    color: #e0e0e0;
}

.estrella.plena {
    color: #f5a623;
}

/* Text */
.reviews-text {
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

/* Autor */
.reviews-autor {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.reviews-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.reviews-autor-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reviews-nom {
    font-weight: 600;
    font-size: 14px;
}

.reviews-data {
    font-size: 12px;
    color: #888;
}

/* Navegació */
.reviews-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.reviews-nav-prev,
.reviews-nav-next {
    background: none;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.reviews-nav-prev:hover,
.reviews-nav-next:hover {
    background: #f5f5f5;
}

.reviews-nav-prev:disabled,
.reviews-nav-next:disabled {
    opacity: 0.3;
    cursor: default;
}

/* Dots */
.reviews-carousel-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.reviews-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}

.reviews-dot.actiu {
    background: #333;
}

/* Buit */
.reviews-carousel-buit {
    color: #888;
    font-size: 14px;
}