.boodyy-reviews-wrapper {
    background-color: #eaf1f8; /* Jemna pastelova modra ala Heureka certifikat */
    padding: 25px;
    border-radius: 8px;
}

.boodyy-reviews-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

/* Lavy sumar */
.boodyy-reviews-summary {
    flex: 1 1 250px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.boodyy-reviews-summary .reviews-title {
    color: #003366;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.stars-summary {
    color: #f5a623;
    font-size: 24px;
    letter-spacing: 2px;
}

.boodyy-reviews-summary .reviews-count {
    font-size: 28px;
    font-weight: bold;
    margin: 10px 0 5px;
    color: #333;
}

.boodyy-reviews-summary .reviews-subtitle {
    margin-bottom: 15px;
    line-height: 1.4;
    color: #555;
    font-style: italic;
}

/* Heureka Odkaz */
.heureka-badge {
    margin-top: 15px;
    text-align: left;
}

.heureka-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none !important;
    color: #333;
    transition: opacity 0.2s;
}

.heureka-link:hover {
    opacity: 0.8;
}

.heureka-text {
    display: flex;
    flex-direction: column;
}

.heureka-rating {
    font-size: 12px;
    font-weight: bold;
}

.heureka-link-text {
    font-size: 12px;
    color: #0077cc;
    text-decoration: underline;
}

/* Tlacidlo (pre mutacie mimo SK/CZ) */
.btn-all-reviews {
    background-color: #eb1d89; /* Firemna ruzova */
    color: #fff;
    border: none;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 10px 0;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-all-reviews:hover {
    background-color: #c5da23; /* Firemna doplnkova zelena pre hover */
    color: #333;
    text-decoration: none;
}

/* Pravy Carousel / Grid */
.boodyy-reviews-carousel {
    flex: 3 1 600px;
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 15px;
}

.review-card {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    width: 260px; 
    min-width: 260px;
    max-width: 260px;
    flex: 0 0 auto;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    white-space: normal;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.review-rating-num {
    color: #f5a623;
    font-size: 20px;
    font-weight: bold;
}

.review-stars {
    color: #f5a623;
    font-size: 16px;
}

.review-body {
    font-size: 13px;
    line-height: 1.4;
    flex-grow: 1;
    margin-bottom: 10px;
    color: #333;
}

.review-footer {
    font-weight: bold;
    font-size: 12px;
    color: #555;
    margin-top: auto;
}

ul.product_list.grid > li.boodyy-fullwidth-widget {
    width: 100% !important;
    clear: both !important;
    float: left !important;
    padding: 0 15px !important;
    margin: 0 0 30px 0px!important;
    display: block !important;
}

.boodyy-fullwidth-widget {
}

/* Mobilna responzivita */
@media (max-width: 768px) {
    .boodyy-reviews-wrapper {
        padding: 15px;
        margin: 10px 0;
    }
    .boodyy-reviews-container {
        flex-direction: column;
        gap: 10px;
    }
    .boodyy-reviews-carousel {
        width: 100%;
        padding-bottom: 10px;
        align-items: flex-start;
        flex: none; /* TOTO JE TÁ OPRAVA - zrusi 600px vysku z desktopu */
    }
    
    /* Prisne limity pre vysku karty na mobile */
    .review-card {
        height: 160px;
        min-height: 160px;
        max-height: 160px;
        padding: 12px;
        overflow: hidden;
    }
    
    .review-header {
        margin-bottom: 10px;
    }
    
    .review-body {
        overflow: hidden;
        max-height: 60px;
        margin-bottom: 8px;
    }
    
    .review-body p {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 0;
        line-height: 1.3;
    }
    
    .review-footer {
        margin-top: 0;
    }
}