<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.reviews-header {
    text-align: center;
    margin-bottom: 30px;
}

.reviews-header h2 {
    font-size: 36px;
    color: #462404;
    margin-bottom: 10px;
	margin-top: 30px;
	font-weight: 800;
}

.reviews-header .overall-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.reviews-header .stars {
    color: #FFBF00;
    font-size: 24px;
}

.reviews-header .rating-text {
    font-size: 18px;
    font-weight: 600;
}

.reviews-header .google-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.reviews-header .google-logo img {
    height: 24px;
}

/* 1) Header-badge logo */
.reviews-header .google-badge img {
  height: 24px;
  width: auto;
}

/* 2) Card-footer logos */
.review-source img.google-logo {
  height: 16px;
  width: auto;
}

/* and your span text under the badge */
.reviews-header .google-badge span {
  font-size: 14px;
  color: #462404;
}


.reviews-header .google-badge span {
    font-size: 14px;
    color: #666;
}

/* Slider styles */
.reviews-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

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

.review-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 280px;
    margin: 0 10px;
    padding: 20px;
    background-color: #e9e6e3;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

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

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #666;
    font-weight: bold;
    overflow: hidden;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: #462404;
}

.review-date {
    font-size: 12px;
    color: #888;
}

.review-stars {
    color: #FFBF00;
    margin-bottom: 10px;
}

.review-text {
    font-size: 14px;
    line-height: 1.5;
    color: #462404;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-footer {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-source {
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-source img {
    height: 16px;
}

.review-source span {
    font-size: 12px;
    color: #888;
}

.read-more {
    font-size: 12px;
    color: #d32f2f;
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}

/* Navigation buttons */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #d32f2f;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    font-size: 22px;
}

.slider-btn:hover {
    background-color: #b71c1c;
}

.slider-btn:disabled {
    background-color: #e0e0e0;
    cursor: not-allowed;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #e0e0e0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-dot.active {
    background-color: #d32f2f;
}

/* Responsive styles */
@media (max-width: 992px) {
    .review-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 calc(100% - 20px);
    }
    
    .reviews-header h2 {
        font-size: 28px;
    }
    
    .reviews-header .stars {
        font-size: 20px;
    }
    
    .reviews-header .rating-text {
        font-size: 16px;
    }
}</pre></body></html>