/* --------------------------------
/* Kontejner pro všechny recenze
/* -------------------------------- */

.shop-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Jednotlivá recenze jako dlaždice */
.shop-review {
    display: flex;
    flex-direction: row;
    gap: 15px;
    background: #f9f9f9;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Obrázek vlevo */
.shop-review .review-image img {
    max-width: 150px;
    height: auto;
    border-radius: 6px;
    display: block;
}

/* Obsah vpravo */
.shop-review .review-content {
    flex: 1;
}

/* Název recenze */
.shop-review .review-content h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 24px;
    color: #743a8f;
}

/* Text recenze */
.shop-review .review-text {
    margin-bottom: 10px;
    font-style: italic;
    color: #333;
}

/* Autor */
.shop-review .review-author {
    margin-top: 5px;
    color: #555;
    font-size: 14px;
}

/* Responsivita – na menších displejích se recenze složí pod sebe */
@media (max-width: 768px) {
    .shop-review {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .shop-review .review-image img {
        max-width: 200px;
    }
}


/* Zkrácený blok recenze */
.review-text {
    max-height: 120px;      /* vizuální limit výšky */
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
}

/* Skrytý plný text (zobrazí se po kliknutí) */
.review-full {
    display: none;
    margin-top: 10px;
}

/* Odkaz/tlačítko pro rozbalení */
.read-more {
    display: inline-block;
    margin-top: 8px;
    background: none;
    border: none;
    color: #743a8f;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
}
.read-more:hover {
    color: #5e2f73;
}

.review-status {
    color: #b00020;
    font-weight: bold;
    margin-top: 8px;
}
