/* Google Reviews Horizontal Layout */

.grp-horizontal-reviews {
    padding: 40px 20px;
}

.grp-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 20px;
    align-items: start;
}

/* Summary Card */
.grp-summary-card {
    background: white;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.grp-summary-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #000;
}

.grp-summary-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 15px;
}

.grp-summary-stars svg {
    width: 28px;
    height: 28px;
}

.grp-summary-text {
    font-size: 14px;
    color: #000;
    margin: 0 0 20px 0;
}

.grp-powered-by {
    font-size: 12px;
    color: #000;
    margin: 0 0 8px 0;
}

.grp-google-logo {
    width: 24px;
    height: auto;
}

/* Review Cards */
.grp-review-cards {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.grp-reviews-swiper {
    width: 100%;
    height: 100%;
}

.grp-reviews-swiper .swiper-slide {
    height: auto;
}

.grp-review-card {
    background: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 200px;
    height: 100%;
}

.grp-card-header {
    margin-bottom: 16px;
}

.grp-card-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 12px;
}

.grp-card-stars svg {
    width: 18px;
    height: 18px;
}

.grp-google-icon {
    margin-left: 8px;
}

.grp-review-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #000;
}

.grp-review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #000;
    margin: 0 0 16px 0;
    flex-grow: 1;
}

.grp-review-meta {
    font-size: 12px;
    color: #000;
    margin: 0;

}

.grp-review-meta strong {
    color: #000;
    font-weight: 600;
}

/* Navigation Arrows */
.grp-nav-arrows {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 20px;
}

.grp-nav-arrow {
	margin: 0px;
    width: 44px;
    height: 44px;
    padding: 0px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: white;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.grp-nav-arrow:hover {
    background: #f5f5f5;
    border-color: #000;
}

.grp-nav-arrow:active {
    transform: scale(0.95);
}

.grp-nav-arrow svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .grp-reviews-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .grp-summary-card {
        width: 100%;
        margin: 0 auto;
    }
    
    .grp-nav-arrows {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .grp-review-cards {
        grid-template-columns: 1fr;
    }
    
    .grp-horizontal-reviews {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .grp-summary-card {
        padding: 20px 15px;
    }
    
    .grp-summary-title {
        font-size: 20px;
    }
    
    .grp-review-card {
        padding: 20px;
    }
    
    .grp-review-title {
        font-size: 16px;
    }
}
