.testimonials-section {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    font-family: system-ui, sans-serif;
    display: flex;
    align-items: center;
    gap: 20px;
    width: calc(100% - 60px);
    justify-content: center;
}

.testimonials-scrollable {
    width: 100%;
    overflow-x: auto;
}
.testimonials-scrollable {
    scrollbar-color: #515151 transparent;
}

.testimonials-scrollable::-webkit-scrollbar {
    width: 6px;
}

.testimonials-scrollable::-webkit-scrollbar-track {
    background: transparent;
}

.testimonials-scrollable::-webkit-scrollbar-thumb {
    background-color: #2b2f3a;
    border-radius: 6px;
}


.reviews-header {
	margin-bottom: 30px;
	text-decoration: none;
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.rating p {
    text-align: center;
    margin: 0;
    font-size: 13px;
    white-space: nowrap;
    font-weight: bold;
    color: #d2d2d2;
}

.rating img {
    width: 110px;
}

.rating h2 {
    color: white;
    margin: 0;
    font-weight: bold;
    font-size: 1.6rem;
}

.stars {
    color: #fbbc04;
    font-size: 24px;
}

.rating .stars {
    line-height: 1;
    font-size: 30px;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.carousel-viewport {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
    gap: 20px;
    width: 100%;
}

.review-card {
	display: flex;
	box-sizing: border-box;
	padding: 20px;
	background: #2a2a2a75;
	border-radius: 12px;
	min-height: 160px;
	width: 400px;
	flex-direction: column;
	flex-shrink: 0;
	border: 1px solid rgba(255, 255, 255, 0.08);
}


.review-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-head img:first-child {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.google-logo {
    margin-left: auto;
    width: 20px;
}

.review-card p {
	margin-top: 10px;
	font-size: 14px;
	color: #c2c2c2;
	margin-bottom: 0;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-transform: uppercase;
}

.review-text {
    max-height: 90px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.review-text.expanded {
    max-height: 1000px;
}
.review-text.unclamped {
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

.read-more {
    margin-top: 8px;
    align-self: flex-start;
    background: none;
    border: none;
    color: var(--main-accent-color);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}


@media (max-width: 768px) {
    .testimonials-section {
        flex-direction: column;
        padding: 0;
        width: 100%;
        margin: 60px 0;
    }

    .testimonials-scrollable {
        scrollbar-width: none;
    }

    .carousel-track {
        margin: 0 20px;
        width: fit-content;
    }

    .review-card {
        width: 300px;
    }
}