/* =======================
   Tarjetas de PRODUCTOS
======================= */
/* Contenedor en cuadricula */
.productos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* Tarjeta del producto */
.producto {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 10px rgba(255,255,255,0.08);
    transition: 0.2s;
}

.producto:hover {
    transform: scale(1.2);
}

/* Imagen */
.producto-img {
    aspect-ratio: 1 / 1; /* cuadrado perfecto */
    width: 100%;
    height: 180px;
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.producto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Nombre */
.producto-nombre {
    margin-top: 10px;
    font-weight: bold;
    font-size: 16px;
    color: white;
}

/* Unidades */
.producto-unidades {
    font-size: 14px;
    color: #bbbbbb;
}

/* Precios */
.producto-precio {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: baseline;
}

/* Precio sin oferta */
.precio-normal {
    font-size: 18px;
    color: #a2c2e6; /* blanco */
    font-weight: bold;
}

.precio-oferta {
    font-size: 18px;
    color: #b56cff; /* MORADO */
    font-weight: bold;
}

.precio-original {
    font-size: 14px;
    color: #777;
    text-decoration: line-through;
}/* Contenedor en cuadricula 5x4 centrado */