.gmaps-reviews-block {
    margin: 30px 0 40px;
    padding: 24px;
    background: #f7f7f7;
    border-radius: 16px;
    overflow: hidden;
}

.gmaps-header {
    text-align: center;
    margin-bottom: 24px;
}

.gmaps-badge {
    display: inline-block;
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    font-weight: 600;
}

.gmaps-rating-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.gmaps-google-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gmaps-rating-score strong {
    font-size: 42px;
    line-height: 1;
    font-weight: 700;
    color: #222;
}

.gmaps-stars {
    color: #fbbc04;
    font-size: 24px;
    letter-spacing: 2px;
    line-height: 1;
}

.gmaps-subtitle {
    margin: 0;
    color: #666;
    font-size: 15px;
}

.gmaps-slider-wrap {
    position: relative;
    padding: 0 42px;
}

.gmaps-slider {
    display: flex;
    gap: 20px;
    overflow: hidden;
    scroll-behavior: smooth;
}

.gmaps-slide {
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
}

.gmaps-review-item {
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    min-height: 250px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
}

.gmaps-review-top {
    margin-bottom: 12px;
    width: 100%;
}

.gmaps-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 48px;
}

.author-avatar-fallback {
    background: #e67e22;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-meta {
    min-width: 0;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.2;
}

.review-time {
    color: #888;
    font-size: 13px;
    margin-top: 2px;
}

.gmaps-mini-google {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.review-stars {
    color: #fbbc04;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.review-text-wrap {
    margin-bottom: 12px;
    flex: 1 1 auto;
    width: 100%;
}

.review-text-short,
.review-text-full {
    color: #444;
    font-size: 16px;
    line-height: 1.5;
    word-break: break-word;
}

.review-text-short {
    display: block;
}

.review-text-full {
    display: none;
}

.gmaps-review-item.expanded .review-text-short {
    display: none;
}

.gmaps-review-item.expanded .review-text-full {
    display: block;
}

.review-more {
    color: #f57c00;
    font-weight: 700;
    background: transparent;
    border: 0;
    padding: 0;
    margin-top: auto;
    cursor: pointer;
    align-self: flex-start;
}

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

.review-more.is-hidden {
    display: none;
}

.gmaps-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-size: 28px;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    z-index: 3;
}

.gmaps-nav-prev {
    left: 0;
}

.gmaps-nav-next {
    right: 0;
}

.gmaps-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.gmaps-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cfcfcf;
    cursor: pointer;
    border: 0;
    padding: 0;
}

.gmaps-dot.active {
    background: #f57c00;
}

@media (max-width: 991px) {
    .gmaps-slide {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 767px) {
    .gmaps-reviews-block {
        padding: 18px 14px;
        border-radius: 12px;
    }

    .gmaps-slider-wrap {
        padding: 0;
    }

    .gmaps-slider {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-bottom: 4px;
    }

    .gmaps-slide {
        flex: 0 0 100%;
        min-width: 100%;
        scroll-snap-align: start;
    }

    .gmaps-review-item {
        min-height: auto;
        padding: 16px;
    }

    .gmaps-rating-score strong {
        font-size: 34px;
    }

    .gmaps-stars {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .author-name {
        font-size: 16px;
    }

    .review-text-short,
    .review-text-full {
        font-size: 15px;
    }

    .gmaps-nav {
        display: none;
    }

    .gmaps-dots {
        display: flex;
    }
}