.gr-reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 30px 0;
}

.gr-review-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    padding: 24px;
    box-shadow: 0 2px 8px 2px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gr-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.gr-stars {
    display: inline-flex;
    gap: 4px;
    font-size: 20px;
}

.gr-star-filled {
    color: #FACC15;
}

.gr-star-empty {
    color: #ddd;
}

.gr-review-comment {
    flex: 1;
    color: #333;
    line-height: 1.4;
    font-size: 14px;
    margin-bottom: 20px;
}

.gr-review-comment p {
    margin: 0 0 12px 0;
}

.gr-review-comment p:last-child {
    margin-bottom: 0;
}

.gr-review-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.gr-author-photo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.gr-author-photo.gr-no-photo {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.gr-author-info {
    flex: 1;
    min-width: 0;
}

.gr-author-name {
    margin: 0 0 4px 0;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.gr-review-date {
    font-size: 13px;
    color: #999;
}

/* Carousel */
:root {
    --swiper-theme-color: #fcb900;
}
.gr-reviews-carousel {
    padding: 10px 0 40px;
}
.gr-reviews-carousel .swiper-wrapper {
    align-items: stretch;
}
.gr-reviews-carousel .swiper-slide {
    display: flex;
    flex-direction: column;
}
.gr-reviews-carousel .swiper-button-next,
.gr-reviews-carousel .swiper-button-prev {
    top: calc(50% - 20px);
}


/* Error & No Reviews */
.gr-error,
.gr-no-reviews {
    padding: 20px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    color: #856404;
    text-align: center;
    margin: 20px 0;
}

.gr-error {
    background: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .gr-reviews-grid {
        gap: 20px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .gr-reviews-grid {
        gap: 16px;
    }
    
    .gr-review-card {
        padding: 20px;
    }
    
    .gr-reviews-carousel .swiper-button-next,
    .gr-reviews-carousel .swiper-button-prev {
        display: none;
    }
}
