.reviews-section {
    font-family: 'DM Sans', sans-serif;
    background: #fafaf800; /* transparent */
    padding: 60px 20px;
    text-align: center;
}

.reviews-section h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.reviews-subtitle {
    color: #888;
    font-size: 0.9rem;
    margin: 0 0 40px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
    max-width: 85%;
    margin: 0 auto;
}

/* fade edges */
.carousel-wrapper::before,
.carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.carousel-wrapper::before { left: 0;  background: linear-gradient(to right, #ffffff, transparent); z-index: 1; }
.carousel-wrapper::after  { right: 0; background: linear-gradient(to left,  #ffffff, transparent); z-index: 1; }

.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll-reviews 30s linear infinite;
}

.carousel-track:hover { animation-play-state: paused; }

@keyframes scroll-reviews {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.review-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 14px;
    padding: 24px 28px;
    width: 300px;
    flex-shrink: 0;
    text-align: left;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s;
}

.review-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); }

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

.review-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #e8e3f0;
    display: flex; align-items: center; justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: #6b4fa0;
    flex-shrink: 0;
}

.review-meta { flex: 1; min-width: 0; }

.review-name {
    font-weight: 500;
    font-size: 0.95rem;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-date {
    font-size: 0.78rem;
    color: #aaa;
    margin-top: 1px;
}

.google-icon {
    width: 20px; height: 20px; flex-shrink: 0;
}

.review-stars {
    color: #f5a623;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 0.88rem;
    color: #444;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.78rem;
    color: #6b4fa0;
    text-decoration: none;
    font-weight: 500;
}
.review-link:hover { text-decoration: underline; }