/**
 * Fitment Application List — Estilos CSS
 * Grupo Awamotos
 *
 * Compatibilidade peça x modelo de moto (PDP)
 */

.fitment-applications {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.fitment-header {
    margin-bottom: 15px;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.fitment-title {
    font-size: 1.4rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fitment-icon {
    font-size: 1.5rem;
}

.fitment-intro {
    color: #666;
    margin-bottom: 15px;
}

.fitment-brand-group {
    margin-bottom: 15px;
}

.fitment-brand-name {
    font-size: 1.1rem;
    color: #c00;
    margin: 0 0 8px 0;
    padding: 5px 10px;
    background: linear-gradient(90deg, #fff0f0, transparent);
    border-left: 3px solid #c00;
}

.fitment-model-list {
    list-style: none;
    margin: 0;
    padding: 0 0 0 15px;
}

.fitment-model-item {
    padding: 5px 0;
    border-bottom: 1px dashed #ddd;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.fitment-model-item:last-child {
    border-bottom: none;
}

.fitment-model-name {
    font-weight: 500;
}

.fitment-position {
    background: #e3f2fd;
    color: #1565c0;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
}

.fitment-oem {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
}

.fitment-notes {
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
}

.fitment-disclaimer {
    margin: 15px 0 0 0;
    padding: 10px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #856404;
}

@media (max-width: 768px) {
    .fitment-applications {
        padding: 15px;
    }

    .fitment-title {
        font-size: 1.2rem;
    }

    .fitment-model-item {
        flex-direction: column;
        align-items: flex-start;
    }
}
