/**
 * Google Optimalizált Vélemények CSS
 * Elérési út: /wp-content/plugins/velemenyek/css/velemenyek.css
 */

/* Vélemények konténer */
.velemenyek-container {
    margin: 30px 0;
    font-family: inherit;
    font-family: "Poppins", Sans-serif;
}

/* Grid elrendezés */
.velemenyek-grid {
    display: grid;
    grid-gap: 25px;
    margin-bottom: 30px;
    width: 100%;
}

/* Oszlopok beállítása */
.velemenyek-grid.columns-1 {
    grid-template-columns: 1fr;
}

.velemenyek-grid.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.velemenyek-grid.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.velemenyek-grid.columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Vélemény kártya */
.velemeny-item {
    padding: 20px;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.velemeny-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Vélemény fejléc */
.velemeny-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.velemeny-avatar {
    margin-right: 15px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.velemeny-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.velemeny-meta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.velemeny-author {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}

.velemeny-rating {
    margin-bottom: 5px;
}

.velemeny-date {
    font-size: 14px;
    color: #666;
}

/* Csillagok */
.star {
    color: #FFD700;
    font-size: 18px;
    margin-right: 2px;
}

.star-empty {
    color: #ccc;
}

.rating-text {
    margin-left: 5px;
    font-size: 14px;
    color: #666;
    display: none;
}

/* Vélemény tartalom */
.velemeny-content {
    line-height: 25px;
    flex-grow: 1;
    font-size: 14px;
}

/* Nincs vélemény üzenet */
.no-reviews {
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 8px;
}

/* További betöltés gomb */
.velemenyek-load-more-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.velemenyek-load-more-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #8c6751;
    color: white;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.velemenyek-load-more-btn:hover {
    background-color: #e93a5a;
}

.velemenyek-load-more-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.velemenyek-load-more-btn.error {
    background-color: #e74c3c;
}

/* Betöltés animáció */
.velemenyek-loader {
    display: inline-block;
    padding: 10px 20px;
    color: #666;
    font-style: italic;
}

/* Reszponzív beállítások */
@media (max-width: 992px) {
    .velemenyek-grid.columns-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .velemenyek-grid.columns-3,
    .velemenyek-grid.columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .velemeny-header {
        flex-direction: column;
    }
    
    .velemeny-avatar {
        margin-bottom: 10px;
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .velemenyek-grid.columns-2,
    .velemenyek-grid.columns-3,
    .velemenyek-grid.columns-4 {
        grid-template-columns: 1fr;
    }
}