.tire-features-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding: 10px 14px;
    margin-bottom: 16px;
    background: #fff;
    border-left: 3px solid #e8552a;
    border-radius: 0 6px 6px 0;
    border-top: 1px solid #dce4ed;
    border-right: 1px solid #dce4ed;
    border-bottom: 1px solid #dce4ed;
}
.tire-features-bar__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.tire-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 11px;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    white-space: nowrap;
    background: #f4f6f9;
    border: 1px solid #dce4ed;
    color: #1a2740;
    transition: background 0.2s, color 0.2s;
    cursor: default;
    position: relative;
}
.tire-badge:hover {
    background: #1a2740;
    color: #fff;
    border-color: #1a2740;
}
.tire-badge--top100 {
    background: #e8552a;
    border-color: #e8552a;
    color: #fff;
}
.tire-badge--top100:hover {
    background: #c94420;
    border-color: #c94420;
}
.tire-badge--tooltip {
    cursor: pointer;
}
.tire-badge__tooltip {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    min-width: 260px;
    max-width: 320px;
    background: #1a2740;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    padding: 12px 14px;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(26,39,64,.18);
    z-index: 9999;
    white-space: normal;
    letter-spacing: 0;
    transition: opacity 0.2s, visibility 0.2s;
}
.tire-badge__tooltip strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: #e8552a;
}
.tire-badge__tooltip em {
    display: block;
    margin-top: 8px;
    font-style: normal;
    font-size: 1.1rem;
    opacity: 0.8;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 8px;
}
.tire-badge__tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 14px;
    border: 5px solid transparent;
    border-top-color: #1a2740;
}
.tire-badge--tooltip:hover .tire-badge__tooltip {
    visibility: visible;
    opacity: 1;
}
.tire-badge__icon {
    font-size: 1.0rem;
}
a.tire-badge--link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
a.tire-badge--link:hover {
    background: #1a2740;
    color: #fff;
    border-color: #1a2740;
    text-decoration: none;
}
@media (max-width: 767px) {
    .tire-features-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .tire-badge__tooltip {
        min-width: 200px;
        max-width: 240px;
    }
}