.reviews-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 2rem;
}

.reviews-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding: 1rem 0;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

.review-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    background: #fff;
    border-radius: var(--radius-lg, 16px);
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .review-slide {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (min-width: 1024px) {
    .review-slide {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

.review-stars {
    color: #FFB400;
    /* Google review standard gold color */
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text, #333);
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary, #7c2a66);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
}

.review-author-info {
    display: flex;
    flex-direction: column;
}

.review-name {
    font-weight: 700;
    color: var(--color-text, #111);
    font-size: 0.95rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--color-text-muted, #666);
}

.reviews-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.review-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--color-primary, #7c2a66);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.review-nav-btn:hover {
    background: var(--color-primary, #7c2a66);
    color: #fff;
    transform: translateY(-2px);
}

.review-dots {
    display: flex;
    gap: 8px;
}

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.review-dot.active {
    background: var(--color-primary, #7c2a66);
    transform: scale(1.3);
}