/* ================================================
   GOOGLE REVIEWS – PERFECT CENTERED SLIDER
   ================================================ */

/* Wrapper sekce – budeš mít ještě <section id="kutils_reviews_section"> venku */
.google-reviews-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 15px;
    box-sizing: border-box;
}

/* Slider uvnitř */
.google-reviews-slider {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Nadpis */
.google-reviews-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #202124;
}

/* KARTA */
.google-review-card {
    width: 100%;
    background: #ffffff;
    padding: 22px 22px 20px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transition: all 0.35s ease;
    min-height: 230px;
    max-height: 230px;       /* statická výška */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

/* HLAVIČKA (avatar + jméno + datum + G) */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #4285f4;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.review-user-meta {
    display: flex;
    flex-direction: column;
}

.review-author {
    font-size: 1.1rem;
    font-weight: 700;
    color: #202124;
}

.review-date {
    font-size: 0.9rem;
    color: #5f6368;
}

/* Google značka (pravý horní roh) */
.review-google-mark {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #4285f4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #4285f4;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ŘÁDEK S HVĚZDIČKAMI */
.review-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.review-rating {
    color: #fbbc04;
    font-size: 1.2rem;
}

.review-verified {
    font-size: 0.9rem;
    color: #1a73e8;
    font-weight: 600;
}

/* TEXT RECENZE – fixní výška + ořez */
.review-text-wrapper {
    flex-grow: 1;
    max-height: 110px;
    overflow: hidden;
}

.review-text {
    font-size: 1rem;
    color: #3c4043;
    line-height: 1.5;
    font-style: italic;
    margin: 0;
}

/* TEČKY – indikátor počtu recenzí */
.google-review-dots {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.review-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #d0d4dc;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: 0.2s;
}

.review-dot.active {
    width: 22px;
    background: #4285f4;
}

/* Responzivita */
@media (max-width: 480px) {
    .google-review-card {
        padding: 20px 18px;
        max-height: 240px;
    }
    .review-text {
        font-size: 0.95rem;
    }
}

/* Fade animace */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}
