/* Heureka Ověřeno zákazníky — svetgrilu.cz */

.svetg-heureka-badge {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 16px;
}

.svetg-heureka-badge a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}

.svetg-heureka-badge a:hover {
    opacity: 0.85;
}

.svetg-heureka-badge__logo {
    height: 40px;
    width: auto;
    max-width: 140px;
    display: block;
}

.svetg-heureka-badge__stats {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.svetg-heureka-badge__stars {
    font-family: Arial, sans-serif;
    font-size: 15px;
    color: #f5a623;
    line-height: 1;
    letter-spacing: 1px;
}

.svetg-heureka-badge__meta {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.svetg-heureka-badge__pct {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.svetg-heureka-badge__count {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
}

/* Skrýt na mobilních zařízeních */
@media (max-width: 991px) {
    .svetg-heureka-badge {
        display: none;
    }
}