/* Reviews — Google + TripAdvisor sliders */
.reviews-section {
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
    background: #fff;
    overflow: hidden;
}

.reviews-row {
    display: grid;
    grid-template-columns: minmax(200px, 260px) 1fr;
    gap: clamp(1rem, 3vw, 2rem);
    align-items: center;
    padding: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 3vw, 1.75rem);
    max-width: 1280px;
    margin: 0 auto;
}

.reviews-row + .reviews-row {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.reviews-summary {
    text-align: center;
    padding: 0.5rem;
}

.reviews-summary-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
}

.reviews-summary-brand img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.reviews-summary-brand span {
    font-family: "Cinzel", serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    text-align: left;
}

.reviews-stars-gold {
    display: flex;
    justify-content: center;
    gap: 0.15rem;
    margin-bottom: 0.35rem;
}

.reviews-stars-gold svg {
    width: 22px;
    height: 22px;
    fill: #fbbc04;
}

.reviews-count {
    font-size: 0.82rem;
    color: #555;
    margin-bottom: 0.75rem;
}

.reviews-write-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border: 1px solid #333;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    background: #fff;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.reviews-write-btn:hover {
    background: #111;
    color: #fff;
}

.reviews-ta-label {
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #111;
    margin-bottom: 0.35rem;
}

.reviews-summary--ta {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviews-ta-brand {
    width: min(100%, 180px);
    height: auto;
    margin-bottom: 0.65rem;
    display: block;
}

.reviews-stars-ta {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.35rem;
}

.reviews-stars-ta span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #00aa6c;
    display: grid;
    place-items: center;
}

.reviews-stars-ta span::after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
}

.reviews-ta-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.55rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #00aa6c;
}

.reviews-ta-logo img {
    width: 28px;
    height: 28px;
    display: block;
    border-radius: 50%;
}

.reviews-ta-logo svg {
    width: 22px;
    height: 22px;
}

.review-platform-ta {
    background: transparent !important;
    padding: 0;
}

.review-platform-ta img {
    width: 22px;
    height: 22px;
    display: block;
    border-radius: 50%;
}

.reviews-slider-wrap {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.reviews-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    will-change: transform;
}

.reviews-track.is-ltr {
    animation: reviewsScrollLtr 45s linear infinite;
}

.reviews-track.is-rtl {
    animation: reviewsScrollRtl 45s linear infinite;
}

.reviews-slider-wrap:hover .reviews-track {
    animation-play-state: paused;
}

@keyframes reviewsScrollLtr {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes reviewsScrollRtl {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.review-card {
    flex: 0 0 min(320px, 78vw);
    background: #f5f5f5;
    border-radius: 10px;
    padding: 1rem 1.1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.review-card-head {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

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

.review-meta strong {
    display: block;
    font-size: 0.88rem;
    color: #111;
    font-weight: 700;
}

.review-meta time {
    font-size: 0.72rem;
    color: #777;
}

.review-platform {
    flex-shrink: 0;
}

.review-platform-google {
    width: 22px;
    height: 22px;
    font-size: 0.85rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4285f4, #ea4335, #fbbc04, #34a853);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 22px;
    text-align: center;
}

.review-platform-ta svg {
    width: 22px;
    height: 22px;
}

.review-stars-row {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
}

.review-stars-row .mini-stars {
    display: flex;
    gap: 0.1rem;
}

.review-stars-row .mini-stars svg {
    width: 14px;
    height: 14px;
    fill: #fbbc04;
}

.review-stars-row .mini-stars svg.is-empty {
    fill: #e5e2db;
}

.review-stars-row .mini-stars-ta i.is-empty {
    background: #d5ebe0;
}

.review-stars-row .mini-stars-ta {
    display: flex;
    gap: 0.12rem;
}

.review-stars-row .mini-stars-ta i {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00aa6c;
    display: block;
    position: relative;
}

.review-stars-row .mini-stars-ta i::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: #fff;
    border-radius: 50%;
}

.review-verified {
    width: 14px;
    height: 14px;
    fill: #4285f4;
}

.review-text {
    font-size: 0.82rem;
    line-height: 1.55;
    color: #444;
}

.review-read-more {
    color: #666;
    font-size: 0.78rem;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .reviews-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .reviews-summary {
        padding-bottom: 0.5rem;
    }

    .review-card {
        flex: 0 0 min(280px, 85vw);
    }
}

@media (prefers-reduced-motion: reduce) {
    .reviews-track.is-ltr,
    .reviews-track.is-rtl {
        animation: none;
    }
}
