/* ================================
   SECCIÓN TIENDA
================================ */

.seccion_tienda {
    text-align: center;
}

/* Imagen de producto */
.imagen_producto {
    width: 100%;
    height: 220px;
    margin-bottom: 15px;
}

/* Nombre y precio */
.nombre_producto {
    font-weight: bold;
    margin-bottom: 5px;
}

.precio_producto {
    margin-bottom: 10px;
}

/* Botón carrito */
.boton_carrito {
    background-color: #2c2c2c;
    color: white;
    border: none;
    padding: 8px 15px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.boton_carrito:hover {
    background-color: #f7941d;
}

/* Paginación */
.paginacion {
    margin-top: 40px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.pagina_numero {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #2c2c2c;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
}

/* Grid de productos */
.grid_productos {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.tarjeta_producto {
    flex: 1 1 220px;
    max-width: 250px;
}