.tire-features-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 12px 16px;
    margin-bottom: 20px;
    background: #fff;
    border-left: 4px solid #EF5B33;
    border-top: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0 4px 4px 0;
}

.tire-features-bar__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tire-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    white-space: nowrap;
    background: #f6f6f6;
    border: 1px solid #21314b;
    color: #21314b;
    transition: background 0.3s ease, color 0.3s ease;
    cursor: default;
    position: relative;
}

.tire-badge:hover {
    background: #21314b;
    color: #fff;
}

.tire-badge--top100 {
    background: #EF5B33;
    border-color: #EF5B33;
    color: #fff;
}
.tire-badge--top100:hover {
    background: #d44e2a;
    border-color: #d44e2a;
}

.tire-badge--tooltip {
    cursor: pointer;
}

/* Tooltip standaard onzichtbaar */
.tire-badge__tooltip {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    bottom: calc(100% + 10px);
    left: 0;
    min-width: 280px;
    max-width: 340px;
    background: #21314b;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    padding: 12px 14px;
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    z-index: 9999;
    white-space: normal;
    letter-spacing: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.tire-badge__tooltip strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.3rem;
    color: #EF5B33;
}

.tire-badge__tooltip em {
    display: block;
    margin-top: 8px;
    font-style: normal;
    font-size: 1.1rem;
    opacity: 0.85;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 8px;
}

.tire-badge__tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 16px;
    border: 6px solid transparent;
    border-top-color: #21314b;
}

/* Tooltip zichtbaar bij hover */
.tire-badge--tooltip:hover .tire-badge__tooltip {
    visibility: visible;
    opacity: 1;
}

.tire-badge__icon {
    font-size: 1.1rem;
}

@media (max-width: 767px) {
    .tire-features-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .tire-badge__tooltip {
        min-width: 220px;
        max-width: 260px;
    }
}