.repuestos { padding: 40px 15px; }

.repuestos__main-title {
    text-align: center;
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-secondary);
    margin-bottom: 30px;
    padding-bottom: 5px;
}

.repuestos__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 992px) {
    .repuestos__grid {
        grid-template-columns: 200px 1fr 200px;
    }
}

.repuestos__header-text {
    text-align: center;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.6;
}

.repuestos__subtitle {
    color: var(--color-secondary);
    font-weight: bold;
    margin-top: 15px;
}

/* CONTENEDOR DE ITEMS */
.repuestos__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.repuesto-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.repuesto-item:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.repuesto-item__img-container {
    height: 180px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #eee;
}

.repuesto-item__img-container img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.repuesto-item__info {
    padding: 15px;
}

.repuesto-item__title {
    color: var(--color-primary);
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: bold;
}

.repuesto-item__text {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}