/* Contenedor del grid de resultados */
#resultados-refacciones {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 30px;
    padding: 10px;
    max-width: 1400px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Responsividad */
@media (max-width: 1200px) {
    #resultados-refacciones {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    #resultados-refacciones {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    #resultados-refacciones {
        grid-template-columns: 1fr;
    }
}

/* Tarjeta de producto */
.refaccion-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.refaccion-item:hover {
    transform: translateY(-4px);
}

.refaccion-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 12px;
}

.refaccion-item h3 {
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
    flex-grow: 1;
}

.refaccion-item .price {
    font-weight: bold;
    color: #28a745;
    margin-bottom: 12px;
}

/* Botón de agregar al carrito */
.refaccion-item .add-to-cart {
    background-color: #28a745;
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    width: 100%;
}

.refaccion-item .add-to-cart:hover {
    background-color: #218838;
}
