.kgr-reviews {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.kgr-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.kgr-header__logo svg {
    display: block;
}

.kgr-header__name {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.kgr-header__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.kgr-header__score {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.kgr-header__count {
    font-size: 14px;
    color: #5f6368;
}

/* Stars */
.kgr-stars {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    vertical-align: middle;
}

.kgr-stars svg {
    display: block;
}

/* Grid Layout */
.kgr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}

/* List Layout */
.kgr-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Slider Layout */
.kgr-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding-bottom: 8px;
}

.kgr-slider .kgr-review {
    min-width: 320px;
    max-width: 400px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.kgr-slider::-webkit-scrollbar {
    height: 6px;
}

.kgr-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.kgr-slider::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

/* Review Card */
.kgr-review {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    transition: box-shadow 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.kgr-review:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.kgr-review__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.kgr-review__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.kgr-review__avatar--placeholder {
    background: #4285F4;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
}

.kgr-review__author {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.kgr-review__date {
    font-size: 13px;
    color: #5f6368;
}

.kgr-review__rating {
    margin-bottom: 10px;
}

.kgr-review__text {
    font-size: 14px;
    line-height: 1.6;
    color: #3c4043;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Owner Reply */
.kgr-review__reply {
    margin-top: 14px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #4285F4;
}

.kgr-review__reply-label {
    font-size: 13px;
    font-weight: 600;
    color: #1a73e8;
    margin-bottom: 6px;
}

.kgr-review__reply-text {
    font-size: 13px;
    line-height: 1.5;
    color: #3c4043;
}

.kgr-review__reply-date {
    font-size: 12px;
    color: #5f6368;
    margin-top: 6px;
}

/* Admin Notice */
.kgr-admin-notice {
    padding: 12px 16px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 6px;
    color: #856404;
    font-size: 14px;
}

.kgr-admin-notice a {
    color: #856404;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .kgr-grid {
        grid-template-columns: 1fr;
    }

    .kgr-header {
        padding: 16px;
    }

    .kgr-header__score {
        font-size: 24px;
    }

    .kgr-slider .kgr-review {
        min-width: 280px;
    }
}

/* Slider-Navigation (Pfeile) */
.kgr-slider-nav { display: flex; justify-content: flex-end; gap: 8px; margin-top: 8px; }
.kgr-slider-nav__btn { width: 30px; height: 30px; padding: 0; border: 1px solid #e0e0e0; background: #fff; border-radius: 50%; cursor: pointer; font-size: 18px; line-height: 1; color: #444; display: flex; align-items: center; justify-content: center; transition: background .15s, border-color .15s, color .15s; }
.kgr-slider-nav__btn:hover { background: #f7f7f7; border-color: #d10049; color: #d10049; }
