.av-tyre-widget {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin: 30px 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .av-tyre-widget {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 768px) {
    .av-tyre-widget {
        grid-template-columns: 1fr;
    }
}

/* Colonnes */
.av-tyre-column {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

/* En-têtes */
.av-tyre-column-header {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
}

/* Couleurs colonnes */
.av-segment-premium .av-tyre-column-header {
    background: #222;
}
.av-segment-quality .av-tyre-column-header {
    background: #0070c9;
}
.av-segment-budget .av-tyre-column-header {
    background: #2ca24c;
}

.av-tyre-header-icon {
    margin-right: 8px;
    font-size: 15px;
}
.av-tyre-header-title {
    letter-spacing: 0.05em;
}

/* Produit */
.av-tyre-item {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 14px;
    padding: 14px 16px;
    border-top: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.av-tyre-item:first-of-type {
    border-top: none;
}
.av-tyre-item:hover {
    background: #fafafa;
    transform: translateY(-2px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

/* Image */
.av-tyre-thumb {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.av-tyre-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Partie droite */
.av-tyre-item-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Titre + prix */
.av-tyre-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}
.av-tyre-name {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px;
}
.av-tyre-price {
    font-size: 15px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
}

/* Taille */
.av-tyre-size-line {
    font-size: 13px;
    color: #555;
    margin-bottom: 4px;
}

/* Chips info */
.av-tyre-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 4px;
}
.av-tyre-chip {
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 999px;
    background: #f3f3f3;
    color: #333;
}

/* Saison + avis */
.av-tyre-footer-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    margin-top: 4px;
}
.av-tyre-season {
    font-weight: 500;
}
.av-tyre-rating .star-rating {
    font-size: 11px;
}
.av-tyre-reviews {
    margin-left: 4px;
    color: #777;
}

/* Message si pas de produit */
.av-tyre-no-results {
    padding: 16px;
    font-size: 13px;
    color: #777;
}
